From 59becf3bf26cd373b98c699ac404a30381ba7105 Mon Sep 17 00:00:00 2001 From: Niklas Date: Mon, 10 Jul 2023 10:49:35 +0200 Subject: [PATCH 001/148] Improve BOM processing performance and make it transactional (#218) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add bloated BOM for ingestion performance testing Signed-off-by: nscuro * Prevent query compilation cache being bypassed for `matchSingleIdentity` queries See https://github.com/DependencyTrack/dependency-track/issues/2540 This also cleans the query from containing weird statements like `(cpe != null && cpe == null)` in case a component does not have a CPE. Signed-off-by: nscuro * WIP: Improve BOM processing performance Signed-off-by: nscuro * Handle dependency graph Signed-off-by: nscuro * Improve dependency graph assembly Instead of using individual bulk UPDATE queries, use setters on persistent components instead. This way we can again make use of batched flushing. Signed-off-by: nscuro * Completely replace old processing logic Also decompose large processing method into multiple smaller ones, and re-implement notifications. Signed-off-by: nscuro * Fix not all BOM refs being updated with new component identities Signed-off-by: nscuro * Be smarter about indexing component identities and BOM refs Also add more documentation Signed-off-by: nscuro * Reduce logging noise Signed-off-by: nscuro * Mark new components as such ... via new transient field. Required for compatibility with https://github.com/DependencyTrack/hyades-apiserver/pull/217 Signed-off-by: nscuro * Compatibility with #217 Signed-off-by: nscuro * Cleanup tests Signed-off-by: nscuro * Reduce code duplication Signed-off-by: nscuro * Cleanup; Process services Signed-off-by: nscuro * Finishing touches 🪄 Signed-off-by: nscuro * Make flush threshold configurable The optimal value could depend on how beefy the database server is, and how much memory is available to the API server. Signed-off-by: nscuro * Clarify `warn` log when rolling back active transactions Signed-off-by: nscuro * Log number of consumed components and services before and after de-dupe Signed-off-by: nscuro * Extend BOM processing test with bloated BOM Signed-off-by: nscuro * Make component identity matching strict To address https://github.com/DependencyTrack/dependency-track/issues/2519#issuecomment-1621889555. Also add regression test for this specific issue. Signed-off-by: nscuro * Add regression test for https://github.com/DependencyTrack/dependency-track/issues/1905 Signed-off-by: nscuro * Clarify why "reachability on commit" is disabled; Add assertion for persistent object state Signed-off-by: nscuro * Add tests for `equals` and `hashCode` of `ComponentIdentity` Signed-off-by: nscuro * Address review comments Signed-off-by: nscuro --------- Signed-off-by: nscuro Signed-off-by: mehab --- .../org/dependencytrack/common/ConfigKey.java | 5 +- .../dependencytrack/event/BomUploadEvent.java | 12 +- .../org/dependencytrack/model/Component.java | 20 +- .../model/ComponentIdentity.java | 14 + .../parser/cyclonedx/util/ModelConverter.java | 579 +- .../persistence/ComponentQueryManager.java | 61 +- .../persistence/FlushHelper.java | 64 + .../resources/v1/BomResource.java | 10 +- .../tasks/BomUploadProcessingTask.java | 869 +- .../dependencytrack/util/PersistenceUtil.java | 33 + src/main/resources/application.properties | 8 +- .../event/BomUploadEventTest.java | 8 +- .../model/ComponentIdentityTest.java | 155 + .../persistence/FlushHelperTest.java | 61 + .../resources/v1/BomResourceTest.java | 12 +- .../tasks/BomUploadProcessingTaskTest.java | 202 +- .../dependencytrack/util/KafkaTestUtil.java | 4 + .../util/PersistenceUtilTest.java | 68 + src/test/resources/{ => unit}/bom-1.xml | 0 src/test/resources/unit/bom-bloated.json | 378957 +++++++++++++++ src/test/resources/unit/bom-issue1905.json | 68 + src/test/resources/unit/bom-issue2519.xml | 63369 +++ 22 files changed, 444007 insertions(+), 572 deletions(-) create mode 100644 src/main/java/org/dependencytrack/persistence/FlushHelper.java create mode 100644 src/test/java/org/dependencytrack/model/ComponentIdentityTest.java create mode 100644 src/test/java/org/dependencytrack/persistence/FlushHelperTest.java create mode 100644 src/test/java/org/dependencytrack/util/PersistenceUtilTest.java rename src/test/resources/{ => unit}/bom-1.xml (100%) create mode 100644 src/test/resources/unit/bom-bloated.json create mode 100644 src/test/resources/unit/bom-issue1905.json create mode 100644 src/test/resources/unit/bom-issue2519.xml diff --git a/src/main/java/org/dependencytrack/common/ConfigKey.java b/src/main/java/org/dependencytrack/common/ConfigKey.java index 9c4315a4b..5c37ceefb 100644 --- a/src/main/java/org/dependencytrack/common/ConfigKey.java +++ b/src/main/java/org/dependencytrack/common/ConfigKey.java @@ -2,8 +2,6 @@ import alpine.Config; -import java.time.Duration; - public enum ConfigKey implements Config.Key { SYSTEM_REQUIREMENT_CHECK_ENABLED("system.requirement.check.enabled", true), @@ -33,7 +31,8 @@ public enum ConfigKey implements Config.Key { TASK_COMPONENT_IDENTIFICATION_LOCK_AT_MOST_FOR("task.componentIdentification.lockAtMostForInMillis", "900000"), TASK_COMPONENT_IDENTIFICATION_LOCK_AT_LEAST_FOR("task.componentIdentification.lockAtLeastForInMillis", "3000"), TASK_LDAP_SYNC_LOCK_AT_MOST_FOR("task.ldapSync.lockAtMostForInMillis", "900000"), - TASK_LDAP_SYNC_LOCK_AT_LEAST_FOR("task.ldapSync.lockAtLeastForInMillis", "3000"); + TASK_LDAP_SYNC_LOCK_AT_LEAST_FOR("task.ldapSync.lockAtLeastForInMillis", "3000"), + BOM_UPLOAD_PROCESSING_TRX_FLUSH_THRESHOLD("bom.upload.processing.trx.flush.threshold", "10000"); private final String propertyName; private final Object defaultValue; diff --git a/src/main/java/org/dependencytrack/event/BomUploadEvent.java b/src/main/java/org/dependencytrack/event/BomUploadEvent.java index 09d549f3f..033964732 100644 --- a/src/main/java/org/dependencytrack/event/BomUploadEvent.java +++ b/src/main/java/org/dependencytrack/event/BomUploadEvent.java @@ -19,9 +19,9 @@ package org.dependencytrack.event; import alpine.event.framework.AbstractChainableEvent; +import org.dependencytrack.model.Project; import java.io.File; -import java.util.UUID; /** * Defines an event triggered when a bill-of-material (bom) document is submitted. @@ -31,16 +31,16 @@ */ public class BomUploadEvent extends AbstractChainableEvent { - private final UUID projectUuid; + private final Project project; private final File file; - public BomUploadEvent(final UUID projectUuid, final File file) { - this.projectUuid = projectUuid; + public BomUploadEvent(final Project project, final File file) { + this.project = project; this.file = file; } - public UUID getProjectUuid() { - return projectUuid; + public Project getProject() { + return project; } public File getFile() { diff --git a/src/main/java/org/dependencytrack/model/Component.java b/src/main/java/org/dependencytrack/model/Component.java index a728ff45e..42d2f2d65 100644 --- a/src/main/java/org/dependencytrack/model/Component.java +++ b/src/main/java/org/dependencytrack/model/Component.java @@ -352,12 +352,12 @@ public enum FetchGroup { private UUID uuid; private transient String bomRef; + private transient String licenseId; private transient DependencyMetrics metrics; private transient RepositoryMetaComponent repositoryMeta; + private transient boolean isNew; private transient int usedBy; - private transient Set dependencyGraph; - private transient boolean expandDependencyGraph; public long getId() { @@ -741,6 +741,14 @@ public void setRepositoryMeta(RepositoryMetaComponent repositoryMeta) { this.repositoryMeta = repositoryMeta; } + public boolean isNew() { + return isNew; + } + + public void setNew(final boolean aNew) { + isNew = aNew; + } + public Double getLastInheritedRiskScore() { return lastInheritedRiskScore; } @@ -757,6 +765,14 @@ public void setBomRef(String bomRef) { this.bomRef = bomRef; } + public String getLicenseId() { + return licenseId; + } + + public void setLicenseId(final String licenseId) { + this.licenseId = licenseId; + } + public int getUsedBy() { return usedBy; } diff --git a/src/main/java/org/dependencytrack/model/ComponentIdentity.java b/src/main/java/org/dependencytrack/model/ComponentIdentity.java index 914655095..f13a03652 100644 --- a/src/main/java/org/dependencytrack/model/ComponentIdentity.java +++ b/src/main/java/org/dependencytrack/model/ComponentIdentity.java @@ -23,6 +23,7 @@ import org.dependencytrack.util.PurlUtil; import org.json.JSONObject; +import java.util.Objects; import java.util.UUID; /** @@ -137,6 +138,19 @@ public UUID getUuid() { return uuid; } + @Override + public boolean equals(final Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + final ComponentIdentity that = (ComponentIdentity) o; + return objectType == that.objectType && Objects.equals(purl, that.purl) && Objects.equals(purlCoordinates, that.purlCoordinates) && Objects.equals(cpe, that.cpe) && Objects.equals(swidTagId, that.swidTagId) && Objects.equals(group, that.group) && Objects.equals(name, that.name) && Objects.equals(version, that.version) && Objects.equals(uuid, that.uuid); + } + + @Override + public int hashCode() { + return Objects.hash(objectType, purl, purlCoordinates, cpe, swidTagId, group, name, version, uuid); + } + public JSONObject toJSON() { final JSONObject jsonObject = new JSONObject(); jsonObject.put("uuid", this.getUuid()); diff --git a/src/main/java/org/dependencytrack/parser/cyclonedx/util/ModelConverter.java b/src/main/java/org/dependencytrack/parser/cyclonedx/util/ModelConverter.java index 58f3a5c0c..edbc7da40 100644 --- a/src/main/java/org/dependencytrack/parser/cyclonedx/util/ModelConverter.java +++ b/src/main/java/org/dependencytrack/parser/cyclonedx/util/ModelConverter.java @@ -21,9 +21,7 @@ import alpine.common.logging.Logger; import com.github.packageurl.MalformedPackageURLException; import com.github.packageurl.PackageURL; -import org.apache.commons.collections4.CollectionUtils; import org.apache.commons.lang3.StringUtils; -import org.cyclonedx.model.Bom; import org.cyclonedx.model.Dependency; import org.cyclonedx.model.Hash; import org.cyclonedx.model.LicenseChoice; @@ -34,12 +32,10 @@ import org.dependencytrack.model.AnalysisState; import org.dependencytrack.model.Classifier; import org.dependencytrack.model.Component; -import org.dependencytrack.model.ComponentIdentity; import org.dependencytrack.model.Cwe; import org.dependencytrack.model.DataClassification; import org.dependencytrack.model.ExternalReference; import org.dependencytrack.model.Finding; -import org.dependencytrack.model.License; import org.dependencytrack.model.OrganizationalContact; import org.dependencytrack.model.OrganizationalEntity; import org.dependencytrack.model.Project; @@ -49,10 +45,7 @@ import org.dependencytrack.parser.common.resolver.CweResolver; import org.dependencytrack.parser.cyclonedx.CycloneDXExporter; import org.dependencytrack.persistence.QueryManager; -import org.dependencytrack.util.InternalComponentIdentificationUtil; -import org.dependencytrack.util.PurlUtil; import org.dependencytrack.util.VulnerabilityUtil; -import org.json.JSONArray; import javax.json.Json; import javax.json.JsonArray; @@ -63,9 +56,14 @@ import java.util.Arrays; import java.util.Collection; import java.util.Collections; -import java.util.HashMap; import java.util.List; -import java.util.Map; +import java.util.Optional; +import java.util.function.BiConsumer; +import java.util.function.Consumer; +import java.util.function.Function; + +import static org.apache.commons.lang3.StringUtils.trimToNull; +import static org.dependencytrack.util.PurlUtil.silentPurlCoordinatesOnly; public class ModelConverter { @@ -74,128 +72,242 @@ public class ModelConverter { /** * Private Constructor. */ - private ModelConverter() { } + private ModelConverter() { + } - /** - * Converts a parsed Bom to a native list of Dependency-Track component object - * @param bom the Bom to convert - * @return a List of Component object - */ - public static List convertComponents(final QueryManager qm, final Bom bom, final Project project) { - final List components = new ArrayList<>(); - if (bom.getComponents() != null) { - for (int i = 0; i < bom.getComponents().size(); i++) { - final org.cyclonedx.model.Component cycloneDxComponent = bom.getComponents().get(i); - if (cycloneDxComponent != null) { - components.add(convert(qm, cycloneDxComponent, project)); - } + public static Project convertToProject(final org.cyclonedx.model.Component cdxComponent) { + final var project = new Project(); + project.setAuthor(trimToNull(cdxComponent.getAuthor())); + project.setPublisher(trimToNull(cdxComponent.getPublisher())); + project.setClassifier(convertClassifier(cdxComponent.getType()).orElse(Classifier.APPLICATION)); + project.setGroup(trimToNull(cdxComponent.getGroup())); + project.setName(trimToNull(cdxComponent.getName())); + project.setVersion(trimToNull(cdxComponent.getVersion())); + project.setDescription(trimToNull(cdxComponent.getDescription())); + project.setExternalReferences(convertExternalReferences(cdxComponent.getExternalReferences())); + + if (cdxComponent.getPurl() != null) { + try { + final var purl = new PackageURL(cdxComponent.getPurl()); + project.setPurl(purl); + } catch (MalformedPackageURLException e) { + LOGGER.debug("Encountered invalid PURL", e); } } - return components; + + if (cdxComponent.getSwid() != null) { + project.setSwidTagId(trimToNull(cdxComponent.getSwid().getTagId())); + } + + return project; } - @SuppressWarnings("deprecation") - public static Component convert(final QueryManager qm, final org.cyclonedx.model.Component cycloneDxComponent, final Project project) { - Component component = qm.matchSingleIdentity(project, new ComponentIdentity(cycloneDxComponent)); - if (component == null) { - component = new Component(); - component.setProject(project); - } - component.setAuthor(StringUtils.trimToNull(cycloneDxComponent.getAuthor())); - component.setBomRef(StringUtils.trimToNull(cycloneDxComponent.getBomRef())); - component.setPublisher(StringUtils.trimToNull(cycloneDxComponent.getPublisher())); - component.setGroup(StringUtils.trimToNull(cycloneDxComponent.getGroup())); - component.setName(StringUtils.trimToNull(cycloneDxComponent.getName())); - component.setVersion(StringUtils.trimToNull(cycloneDxComponent.getVersion())); - component.setDescription(StringUtils.trimToNull(cycloneDxComponent.getDescription())); - component.setCopyright(StringUtils.trimToNull(cycloneDxComponent.getCopyright())); - component.setCpe(StringUtils.trimToNull(cycloneDxComponent.getCpe())); - - if (cycloneDxComponent.getSwid() != null) { - component.setSwidTagId(StringUtils.trimToNull(cycloneDxComponent.getSwid().getTagId())); - } - - if (StringUtils.isNotBlank(cycloneDxComponent.getPurl())) { + public static List convertComponents(final List cdxComponents) { + if (cdxComponents == null || cdxComponents.isEmpty()) { + return Collections.emptyList(); + } + + return cdxComponents.stream().map(ModelConverter::convertComponent).toList(); + } + + public static Component convertComponent(final org.cyclonedx.model.Component cdxComponent) { + final var component = new Component(); + component.setAuthor(trimToNull(cdxComponent.getAuthor())); + component.setPublisher(trimToNull(cdxComponent.getPublisher())); + component.setBomRef(trimToNull(cdxComponent.getBomRef())); + component.setClassifier(convertClassifier(cdxComponent.getType()).orElse(Classifier.LIBRARY)); + component.setGroup(trimToNull(cdxComponent.getGroup())); + component.setName(trimToNull(cdxComponent.getName())); + component.setVersion(trimToNull(cdxComponent.getVersion())); + component.setDescription(trimToNull(cdxComponent.getDescription())); + component.setCopyright(trimToNull(cdxComponent.getCopyright())); + component.setCpe(trimToNull(cdxComponent.getCpe())); + component.setExternalReferences(convertExternalReferences(cdxComponent.getExternalReferences())); + + if (cdxComponent.getPurl() != null) { try { - final PackageURL purl = new PackageURL(StringUtils.trimToNull(cycloneDxComponent.getPurl())); + final var purl = new PackageURL(cdxComponent.getPurl()); component.setPurl(purl); - component.setPurlCoordinates(PurlUtil.purlCoordinatesOnly(purl)); + component.setPurlCoordinates(silentPurlCoordinatesOnly(purl)); } catch (MalformedPackageURLException e) { - LOGGER.warn("Unable to parse PackageURL: " + cycloneDxComponent.getPurl()); + LOGGER.debug("Encountered invalid PURL", e); + } + } + + if (cdxComponent.getSwid() != null) { + component.setSwidTagId(trimToNull(cdxComponent.getSwid().getTagId())); + } + + if (cdxComponent.getHashes() != null && !cdxComponent.getHashes().isEmpty()) { + for (final org.cyclonedx.model.Hash cdxHash : cdxComponent.getHashes()) { + final Consumer hashSetter = switch (cdxHash.getAlgorithm().toLowerCase()) { + case "md5" -> component::setMd5; + case "sha-1" -> component::setSha1; + case "sha-256" -> component::setSha256; + case "sha-384" -> component::setSha384; + case "sha-512" -> component::setSha512; + case "sha3-256" -> component::setSha3_256; + case "sha3-384" -> component::setSha3_384; + case "sha3-512" -> component::setSha3_512; + case "blake2b-256" -> component::setBlake2b_256; + case "blake2b-384" -> component::setBlake2b_384; + case "blake2b-512" -> component::setBlake2b_512; + case "blake3" -> component::setBlake3; + default -> null; + }; + if (hashSetter != null) { + hashSetter.accept(cdxHash.getValue()); + } } } - component.setInternal(InternalComponentIdentificationUtil.isInternalComponent(component, qm)); - - if (cycloneDxComponent.getType() != null) { - component.setClassifier(Classifier.valueOf(cycloneDxComponent.getType().name())); - } else { - component.setClassifier(Classifier.LIBRARY); - } - - if (cycloneDxComponent.getHashes() != null && !cycloneDxComponent.getHashes().isEmpty()) { - for (final Hash hash : cycloneDxComponent.getHashes()) { - if (hash != null) { - if (Hash.Algorithm.MD5.getSpec().equalsIgnoreCase(hash.getAlgorithm())) { - component.setMd5(StringUtils.trimToNull(hash.getValue())); - } else if (Hash.Algorithm.SHA1.getSpec().equalsIgnoreCase(hash.getAlgorithm())) { - component.setSha1(StringUtils.trimToNull(hash.getValue())); - } else if (Hash.Algorithm.SHA_256.getSpec().equalsIgnoreCase(hash.getAlgorithm())) { - component.setSha256(StringUtils.trimToNull(hash.getValue())); - } else if (Hash.Algorithm.SHA_512.getSpec().equalsIgnoreCase(hash.getAlgorithm())) { - component.setSha512(StringUtils.trimToNull(hash.getValue())); - } else if (Hash.Algorithm.SHA3_256.getSpec().equalsIgnoreCase(hash.getAlgorithm())) { - component.setSha3_256(StringUtils.trimToNull(hash.getValue())); - } else if (Hash.Algorithm.SHA3_512.getSpec().equalsIgnoreCase(hash.getAlgorithm())) { - component.setSha3_512(StringUtils.trimToNull(hash.getValue())); - } + if (cdxComponent.getLicenseChoice() != null + && cdxComponent.getLicenseChoice().getLicenses() != null + && !cdxComponent.getLicenseChoice().getLicenses().isEmpty()) { + for (final org.cyclonedx.model.License cdxLicense : cdxComponent.getLicenseChoice().getLicenses()) { + if (cdxLicense != null) { + component.setLicenseId(trimToNull(cdxLicense.getId())); + component.setLicense(trimToNull(cdxLicense.getName())); + component.setLicenseUrl(trimToNull(cdxLicense.getUrl())); + break; // Components in CDX can have multiple licenses, but DT supports only one } } } - final LicenseChoice licenseChoice = cycloneDxComponent.getLicenseChoice(); - if (licenseChoice != null && licenseChoice.getLicenses() != null && !licenseChoice.getLicenses().isEmpty()) { - for (final org.cyclonedx.model.License cycloneLicense : licenseChoice.getLicenses()) { - if (cycloneLicense != null) { - if (StringUtils.isNotBlank(cycloneLicense.getId())) { - final License license = qm.getLicense(StringUtils.trimToNull(cycloneLicense.getId())); - if (license != null) { - component.setResolvedLicense(license); - } - } - component.setLicense(StringUtils.trimToNull(cycloneLicense.getName())); - component.setLicenseUrl(StringUtils.trimToNull(cycloneLicense.getUrl())); - } + if (cdxComponent.getComponents() != null && !cdxComponent.getComponents().isEmpty()) { + final var children = new ArrayList(); + + for (final org.cyclonedx.model.Component cdxChildComponent : cdxComponent.getComponents()) { + children.add(convertComponent(cdxChildComponent)); } + + component.setChildren(children); } - if (cycloneDxComponent.getExternalReferences() != null && cycloneDxComponent.getExternalReferences().size() > 0) { - List references = new ArrayList<>(); - for (org.cyclonedx.model.ExternalReference cycloneDxRef: cycloneDxComponent.getExternalReferences()) { - ExternalReference ref = new ExternalReference(); - ref.setType(cycloneDxRef.getType()); - ref.setUrl(cycloneDxRef.getUrl()); - ref.setComment(cycloneDxRef.getComment()); - references.add(ref); + return component; + } + + public static List convertServices(final List cdxServices) { + if (cdxServices == null || cdxServices.isEmpty()) { + return Collections.emptyList(); + } + + return cdxServices.stream().map(ModelConverter::convertService).toList(); + } + + public static ServiceComponent convertService(final org.cyclonedx.model.Service cdxService) { + final var service = new ServiceComponent(); + service.setBomRef(trimToNull(cdxService.getBomRef())); + service.setGroup(trimToNull(cdxService.getGroup())); + service.setName(trimToNull(cdxService.getName())); + service.setVersion(trimToNull(cdxService.getVersion())); + service.setDescription(trimToNull(cdxService.getDescription())); + service.setAuthenticated(cdxService.getAuthenticated()); + service.setCrossesTrustBoundary(cdxService.getxTrustBoundary()); + service.setExternalReferences(convertExternalReferences(cdxService.getExternalReferences())); + service.setProvider(convertOrganizationalEntity(cdxService.getProvider())); + service.setData(convertDataClassification(cdxService.getData())); + + if (cdxService.getEndpoints() != null && !cdxService.getEndpoints().isEmpty()) { + service.setEndpoints(cdxService.getEndpoints().toArray(new String[0])); + } + + if (cdxService.getServices() != null && !cdxService.getServices().isEmpty()) { + final var children = new ArrayList(); + + for (final org.cyclonedx.model.Service cdxChildService : cdxService.getServices()) { + children.add(convertService(cdxChildService)); } - component.setExternalReferences(references); - } else { - component.setExternalReferences(null); + + service.setChildren(children); } - if (cycloneDxComponent.getComponents() != null && !cycloneDxComponent.getComponents().isEmpty()) { - final Collection components = new ArrayList<>(); - for (int i = 0; i < cycloneDxComponent.getComponents().size(); i++) { - final org.cyclonedx.model.Component cycloneDxChildComponent = cycloneDxComponent.getComponents().get(i); - if (cycloneDxChildComponent != null) { - components.add(convert(qm, cycloneDxChildComponent, project)); - } + return service; + } + + private static Optional convertClassifier(final org.cyclonedx.model.Component.Type cdxComponentType) { + return Optional.ofNullable(cdxComponentType) + .map(Enum::name) + .map(Classifier::valueOf); + } + + private static List convertExternalReferences(final List cdxExternalReferences) { + if (cdxExternalReferences == null || cdxExternalReferences.isEmpty()) { + return null; + } + + return cdxExternalReferences.stream() + .map(cdxExternalReference -> { + final var externalReference = new ExternalReference(); + externalReference.setType(cdxExternalReference.getType()); + externalReference.setUrl(cdxExternalReference.getUrl()); + externalReference.setComment(cdxExternalReference.getComment()); + return externalReference; + }) + .toList(); + } + + private static OrganizationalEntity convertOrganizationalEntity(final org.cyclonedx.model.OrganizationalEntity cdxEntity) { + if (cdxEntity == null) { + return null; + } + + final var entity = new OrganizationalEntity(); + entity.setName(cdxEntity.getName()); + + if (cdxEntity.getUrls() != null && !cdxEntity.getUrls().isEmpty()) { + entity.setUrls(cdxEntity.getUrls().toArray(new String[0])); + } + + if (cdxEntity.getContacts() != null && !cdxEntity.getContacts().isEmpty()) { + final var contacts = new ArrayList(); + for (final org.cyclonedx.model.OrganizationalContact cdxContact : cdxEntity.getContacts()) { + final var contact = new OrganizationalContact(); + contact.setName(cdxContact.getName()); + contact.setEmail(cdxContact.getEmail()); + contact.setPhone(cdxContact.getPhone()); + contacts.add(contact); } - if (CollectionUtils.isNotEmpty(components)) { - component.setChildren(components); + entity.setContacts(contacts); + } + + return entity; + } + + private static List convertDataClassification(final List cdxData) { + if (cdxData == null || cdxData.isEmpty()) { + return Collections.emptyList(); + } + + return cdxData.stream() + .map(cdxDatum -> { + final var classification = new DataClassification(); + classification.setName(cdxDatum.getClassification()); + classification.setDirection(DataClassification.Direction.valueOf(cdxDatum.getFlow().name())); + return classification; + }) + .toList(); + } + + public static List flatten(final Collection items, + final Function> childrenGetter, + final BiConsumer> childrenSetter) { + final var result = new ArrayList(); + if (items == null || items.isEmpty()) { + return Collections.emptyList(); + } + + for (final T item : items) { + final Collection children = childrenGetter.apply(item); + if (children != null) { + result.addAll(flatten(children, childrenGetter, childrenSetter)); + childrenSetter.accept(item, null); } + + result.add(item); } - return component; + + return result; } @SuppressWarnings("deprecation") @@ -353,121 +465,6 @@ public static org.cyclonedx.model.Metadata createMetadata(final Project project) return metadata; } - /** - * Converts a parsed Bom to a native list of Dependency-Track component object - * @param bom the Bom to convert - * @return a List of Component object - */ - public static List convertServices(final QueryManager qm, final Bom bom, final Project project) { - final List services = new ArrayList<>(); - if (bom.getServices() != null) { - for (int i = 0; i < bom.getServices().size(); i++) { - final org.cyclonedx.model.Service cycloneDxService = bom.getServices().get(i); - if (cycloneDxService != null) { - services.add(convert(qm, cycloneDxService, project)); - } - } - } - return services; - } - - public static ServiceComponent convert(final QueryManager qm, final org.cyclonedx.model.Service cycloneDxService, final Project project) { - ServiceComponent service = qm.matchServiceIdentity(project, new ComponentIdentity(cycloneDxService)); - if (service == null) { - service = new ServiceComponent(); - service.setProject(project); - } - service.setBomRef(StringUtils.trimToNull(cycloneDxService.getBomRef())); - if (cycloneDxService.getProvider() != null) { - OrganizationalEntity provider = new OrganizationalEntity();; - provider.setName(cycloneDxService.getProvider().getName()); - if (cycloneDxService.getProvider().getUrls() != null && cycloneDxService.getProvider().getUrls().size() > 0) { - provider.setUrls(cycloneDxService.getProvider().getUrls().toArray(new String[0])); - } else { - provider.setUrls(null); - } - if (cycloneDxService.getProvider().getContacts() != null) { - List contacts = new ArrayList<>(); - for (org.cyclonedx.model.OrganizationalContact cycloneDxContact: cycloneDxService.getProvider().getContacts()) { - OrganizationalContact contact = new OrganizationalContact(); - contact.setName(cycloneDxContact.getName()); - contact.setEmail(cycloneDxContact.getEmail()); - contact.setPhone(cycloneDxContact.getPhone()); - contacts.add(contact); - } - provider.setContacts(contacts); - } - service.setProvider(provider); - } else { - service.setProvider(null); - } - service.setGroup(StringUtils.trimToNull(cycloneDxService.getGroup())); - service.setName(StringUtils.trimToNull(cycloneDxService.getName())); - service.setVersion(StringUtils.trimToNull(cycloneDxService.getVersion())); - service.setDescription(StringUtils.trimToNull(cycloneDxService.getDescription())); - if (cycloneDxService.getEndpoints() != null && cycloneDxService.getEndpoints().size() > 0) { - service.setEndpoints(cycloneDxService.getEndpoints().toArray(new String[0])); - } else { - service.setEndpoints(null); - } - service.setAuthenticated(cycloneDxService.getAuthenticated()); - service.setCrossesTrustBoundary(cycloneDxService.getxTrustBoundary()); - if (cycloneDxService.getData() != null && cycloneDxService.getData().size() > 0) { - List dataClassifications = new ArrayList<>(); - for (org.cyclonedx.model.ServiceData data: cycloneDxService.getData()) { - DataClassification dc = new DataClassification(); - dc.setDirection(DataClassification.Direction.valueOf(data.getFlow().name())); - dc.setName(data.getClassification()); - dataClassifications.add(dc); - } - service.setData(dataClassifications); - } else { - service.setData(null); - } - if (cycloneDxService.getExternalReferences() != null && cycloneDxService.getExternalReferences().size() > 0) { - List references = new ArrayList<>(); - for (org.cyclonedx.model.ExternalReference cycloneDxRef: cycloneDxService.getExternalReferences()) { - ExternalReference ref = new ExternalReference(); - ref.setType(cycloneDxRef.getType()); - ref.setUrl(cycloneDxRef.getUrl()); - ref.setComment(cycloneDxRef.getComment()); - references.add(ref); - } - service.setExternalReferences(references); - } else { - service.setData(null); - } - /* TODO: Add when services support licenses (after component license refactor) - final LicenseChoice licenseChoice = cycloneDxService.getLicenseChoice(); - if (licenseChoice != null && licenseChoice.getLicenses() != null && !licenseChoice.getLicenses().isEmpty()) { - for (final org.cyclonedx.model.License cycloneLicense : licenseChoice.getLicenses()) { - if (cycloneLicense != null) { - if (StringUtils.isNotBlank(cycloneLicense.getId())) { - final License license = qm.getLicense(StringUtils.trimToNull(cycloneLicense.getId())); - if (license != null) { - service.setResolvedLicense(license); - } - } - service.setLicense(StringUtils.trimToNull(cycloneLicense.getName())); - } - } - } - */ - if (cycloneDxService.getServices() != null && !cycloneDxService.getServices().isEmpty()) { - final Collection services = new ArrayList<>(); - for (int i = 0; i < cycloneDxService.getServices().size(); i++) { - final org.cyclonedx.model.Service cycloneDxChildComponent = cycloneDxService.getServices().get(i); - if (cycloneDxChildComponent != null) { - services.add(convert(qm, cycloneDxChildComponent, project)); - } - } - if (CollectionUtils.isNotEmpty(services)) { - service.setChildren(services); - } - } - return service; - } - public static org.cyclonedx.model.Service convert(final QueryManager qm, final ServiceComponent service) { final org.cyclonedx.model.Service cycloneService = new org.cyclonedx.model.Service(); cycloneService.setBomRef(service.getUuid().toString()); @@ -479,7 +476,7 @@ public static org.cyclonedx.model.Service convert(final QueryManager qm, final S } if (service.getProvider().getContacts() != null && service.getProvider().getContacts().size() > 0) { List contacts = new ArrayList<>(); - for (OrganizationalContact contact: service.getProvider().getContacts()) { + for (OrganizationalContact contact : service.getProvider().getContacts()) { org.cyclonedx.model.OrganizationalContact cycloneContact = new org.cyclonedx.model.OrganizationalContact(); cycloneContact.setName(contact.getName()); cycloneContact.setEmail(contact.getEmail()); @@ -500,7 +497,7 @@ public static org.cyclonedx.model.Service convert(final QueryManager qm, final S cycloneService.setAuthenticated(service.getAuthenticated()); cycloneService.setxTrustBoundary(service.getCrossesTrustBoundary()); if (service.getData() != null && service.getData().size() > 0) { - for (DataClassification dc: service.getData()) { + for (DataClassification dc : service.getData()) { org.cyclonedx.model.ServiceData sd = new org.cyclonedx.model.ServiceData(dc.getDirection().name(), dc.getName()); cycloneService.addServiceData(sd); } @@ -550,9 +547,9 @@ public static org.cyclonedx.model.Service convert(final QueryManager qm, final S public static org.cyclonedx.model.vulnerability.Vulnerability convert(final QueryManager qm, final CycloneDXExporter.Variant variant, final Finding finding) { - final Component component = qm.getObjectByUuid(Component.class, (String)finding.getComponent().get("uuid")); + final Component component = qm.getObjectByUuid(Component.class, (String) finding.getComponent().get("uuid")); final Project project = component.getProject(); - final Vulnerability vulnerability = qm.getObjectByUuid(Vulnerability.class, (String)finding.getVulnerability().get("uuid")); + final Vulnerability vulnerability = qm.getObjectByUuid(Vulnerability.class, (String) finding.getVulnerability().get("uuid")); final org.cyclonedx.model.vulnerability.Vulnerability cdxVulnerability = new org.cyclonedx.model.vulnerability.Vulnerability(); cdxVulnerability.setBomRef(vulnerability.getUuid().toString()); @@ -613,7 +610,7 @@ public static org.cyclonedx.model.vulnerability.Vulnerability convert(final Quer cdxVulnerability.addRating(rating); } if (vulnerability.getCwes() != null) { - for (final Integer cweId: vulnerability.getCwes()) { + for (final Integer cweId : vulnerability.getCwes()) { final Cwe cwe = CweResolver.getInstance().lookup(cweId); if (cwe != null) { cdxVulnerability.addCwe(cwe.getCweId()); @@ -669,62 +666,6 @@ public static org.cyclonedx.model.vulnerability.Vulnerability convert(final Quer return cdxVulnerability; } - /** - * Converts a parsed Bom to a native list of Dependency-Track component objects - * - * @param bom the Bom to convert - * @param project The project based on the BOM - * @param components All known {@link Component}s from the BOM - */ - public static void generateDependencies(final Bom bom, final Project project, final List components) { - // Get direct dependencies first - if (bom.getMetadata() != null && bom.getMetadata().getComponent() != null && bom.getMetadata().getComponent().getBomRef() != null) { - final String targetBomRef = bom.getMetadata().getComponent().getBomRef(); - final org.cyclonedx.model.Dependency targetDep = getDependencyFromBomRef(targetBomRef, bom.getDependencies()); - final JSONArray jsonArray = new JSONArray(); - if (targetDep != null && targetDep.getDependencies() != null) { - for (final org.cyclonedx.model.Dependency directDep : targetDep.getDependencies()) { - final Component c = getComponentFromBomRef(directDep.getRef(), components, false); - if (c != null) { - final ComponentIdentity ci = new ComponentIdentity(c); - jsonArray.put(ci.toJSON()); - } - } - } - if (jsonArray.isEmpty()) { - project.setDirectDependencies(null); - } else { - project.setDirectDependencies(jsonArray.toString()); - } - } - // Get transitive last. It is possible that some CycloneDX implementations may not properly specify direct - // dependencies. As a result, it is not possible to distinguish between direct and transitive. - - // Flatten the components to remove and need for repeated recursion - Map flatComponents = flattenComponents(components); - - for (final Map.Entry c1: flatComponents.entrySet()) { - if (c1.getKey() != null) { - final JSONArray jsonArray = new JSONArray(); - final org.cyclonedx.model.Dependency d1 = getDependencyFromBomRef(c1.getKey(), bom.getDependencies()); - if (d1 != null && d1.getDependencies() != null) { - for (final org.cyclonedx.model.Dependency d2: d1.getDependencies()) { - final Component c2 = flatComponents.get(d2.getRef()); - if (c2 != null) { - final ComponentIdentity ci = new ComponentIdentity(c2); - jsonArray.put(ci.toJSON()); - } - } - } - if (jsonArray.isEmpty()) { - c1.getValue().setDirectDependencies(null); - } else { - c1.getValue().setDirectDependencies(jsonArray.toString()); - } - } - } - } - /** * Converts {@link Project#getDirectDependencies()} and {@link Component#getDirectDependencies()} * references to a CycloneDX dependency graph. @@ -772,61 +713,6 @@ private static List convertDirectDependencies(final String directDep return dependencies; } - public static List convertBomMetadataExternalReferences(Bom bom) { - if (bom.getMetadata() != null && bom.getMetadata().getComponent() != null) { - org.cyclonedx.model.Component cycloneDxComponent = bom.getMetadata().getComponent(); - if (cycloneDxComponent.getExternalReferences() != null && cycloneDxComponent.getExternalReferences().size() > 0) { - List references = new ArrayList<>(); - for (org.cyclonedx.model.ExternalReference cycloneDxRef : cycloneDxComponent.getExternalReferences()) { - ExternalReference ref = new ExternalReference(); - ref.setType(cycloneDxRef.getType()); - ref.setUrl(cycloneDxRef.getUrl()); - ref.setComment(cycloneDxRef.getComment()); - references.add(ref); - } - return references; - } else { - return null; - } - } else { - return null; - } - } - - /** - * Attempts to find a component from the bom-ref, optionally scanning through and children to do so - * @param bomRef The bom-ref to search for - * @param components The list of components to search within - * @param recursive Whether to recurse through any child components - * @return The component with the target bom-ref, or null is it is not found - */ - private static Component getComponentFromBomRef(final String bomRef, final Collection components, boolean recursive) { - if (components != null && bomRef != null) { - for (Component c : components) { - if (bomRef.equals(c.getBomRef())) { - return c; - } else if (recursive) { - Component result = getComponentFromBomRef(bomRef, c.getChildren(), false); - if (result != null) { - return result; - } - } - } - } - return null; - } - - private static org.cyclonedx.model.Dependency getDependencyFromBomRef(final String bomRef, final List dependencies) { - if (dependencies != null) { - for (Dependency o : dependencies) { - if (bomRef != null && bomRef.equals(o.getRef())) { - return o; - } - } - } - return null; - } - private static org.cyclonedx.model.vulnerability.Vulnerability.Rating.Severity convertDtSeverityToCdxSeverity(final Severity severity) { switch (severity) { case CRITICAL: @@ -998,21 +884,4 @@ public static AnalysisJustification convertCdxVulnAnalysisJustificationToDtAnaly } } - /** - * Recurse through the list of components to generate a map keyed on their bom-ref - * @param components The components to process - * @return A Map of every component found keyed on their bom-ref - */ - private static Map flattenComponents(final Collection components) { - Map result = new HashMap<>(components.size()); - - for (Component comp : components) { - result.put(comp.getBomRef(), comp); - if (comp.getChildren() != null) { - result.putAll(flattenComponents(comp.getChildren())); - } - } - - return result; - } } diff --git a/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java b/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java index 74555a895..83e86a840 100644 --- a/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java +++ b/src/main/java/org/dependencytrack/persistence/ComponentQueryManager.java @@ -420,19 +420,58 @@ public void recursivelyDelete(Component component, boolean commitIndex) { * @return a Component object, or null if not found */ public Component matchSingleIdentity(final Project project, final ComponentIdentity cid) { - String purlString = null; - String purlCoordinates = null; + var filterParts = new ArrayList(); + final var params = new HashMap(); + if (cid.getPurl() != null) { - try { - final PackageURL purl = cid.getPurl(); - purlString = cid.getPurl().canonicalize(); - purlCoordinates = new PackageURL(purl.getType(), purl.getNamespace(), purl.getName(), purl.getVersion(), null, null).canonicalize(); - } catch (MalformedPackageURLException e) { // throw it away - } + filterParts.add("(purl != null && purl == :purl)"); + params.put("purl", cid.getPurl().canonicalize()); + } else { + filterParts.add("purl == null"); + } + + if (cid.getCpe() != null) { + filterParts.add("(cpe != null && cpe == :cpe)"); + params.put("cpe", cid.getCpe()); + } else { + filterParts.add("cpe == null"); + } + + if (cid.getSwidTagId() != null) { + filterParts.add("(swidTagId != null && swidTagId == :swidTagId)"); + params.put("swidTagId", cid.getSwidTagId()); + } else { + filterParts.add("swidTagId == null"); + } + + var coordinatesFilter = "("; + if (cid.getGroup() != null) { + coordinatesFilter += "group == :group"; + params.put("group", cid.getGroup()); + } else { + coordinatesFilter += "group == null"; + } + coordinatesFilter += " && name == :name"; + params.put("name", cid.getName()); + if (cid.getVersion() != null) { + coordinatesFilter += " && version == :version"; + params.put("version", cid.getVersion()); + } else { + coordinatesFilter += " && version == null"; + } + coordinatesFilter += ")"; + filterParts.add(coordinatesFilter); + + final var filter = "project == :project && (" + String.join(" && ", filterParts) + ")"; + params.put("project", project); + + final Query query = pm.newQuery(Component.class, filter); + query.setNamedParameters(params); + try { + return query.executeUnique(); + } finally { + query.closeAll(); } - final Query query = pm.newQuery(Component.class, "project == :project && ((purl != null && purl == :purl) || (purlCoordinates != null && purlCoordinates == :purlCoordinates) || (swidTagId != null && swidTagId == :swidTagId) || (cpe != null && cpe == :cpe) || (group == :group && name == :name && version == :version))"); - query.setRange(0, 1); - return singleResult(query.executeWithArray(project, purlString, purlCoordinates, cid.getSwidTagId(), cid.getCpe(), cid.getGroup(), cid.getName(), cid.getVersion())); } /** diff --git a/src/main/java/org/dependencytrack/persistence/FlushHelper.java b/src/main/java/org/dependencytrack/persistence/FlushHelper.java new file mode 100644 index 000000000..eecd18a5f --- /dev/null +++ b/src/main/java/org/dependencytrack/persistence/FlushHelper.java @@ -0,0 +1,64 @@ +package org.dependencytrack.persistence; + +import javax.jdo.PersistenceManager; + +/** + * Helper class for performing manual flushes in a long(er) {@link javax.jdo.Transaction}. + *

+ * Note: Manual flushing only works when the provided {@link PersistenceManager} is using + * {@link org.datanucleus.flush.FlushMode#MANUAL}. + */ +public final class FlushHelper implements AutoCloseable { + + private final PersistenceManager pm; + private final int flushThreshold; + private int numPendingChanges; + + public FlushHelper(final QueryManager qm, final int flushThreshold) { + this(qm.getPersistenceManager(), flushThreshold); + } + + public FlushHelper(final PersistenceManager pm, final int flushThreshold) { + this.pm = pm; + this.flushThreshold = flushThreshold; + } + + /** + * Perform a flush when this call causes the flush threshold to be reached, otherwise do nothing. + * + * @return {@code true} when a flush was performed, otherwise {@code false} + */ + public boolean maybeFlush() { + if (++numPendingChanges >= flushThreshold) { + numPendingChanges = 0; + pm.flush(); + return true; + } + + return false; + } + + /** + * Perform a flush when there are still pending changes that haven't been flushed yet. + * + * @return {@code true} when a flush was performed, otherwise {@code false} + */ + public boolean flushIfPending() { + if (numPendingChanges > 0) { + numPendingChanges = 0; + pm.flush(); + return true; + } + + return false; + } + + /** + * {@inheritDoc} + */ + @Override + public void close() { + flushIfPending(); + } + +} diff --git a/src/main/java/org/dependencytrack/resources/v1/BomResource.java b/src/main/java/org/dependencytrack/resources/v1/BomResource.java index 770678675..6f6ffd2e5 100644 --- a/src/main/java/org/dependencytrack/resources/v1/BomResource.java +++ b/src/main/java/org/dependencytrack/resources/v1/BomResource.java @@ -252,7 +252,7 @@ public Response uploadBom(BomSubmitRequest request) { if (parent == null) { // if parent project is specified but not found return Response.status(Response.Status.NOT_FOUND).entity("The parent component could not be found.").build(); - } else if (! qm.hasAccess(super.getPrincipal(), parent)) { + } else if (!qm.hasAccess(super.getPrincipal(), parent)) { return Response.status(Response.Status.FORBIDDEN).entity("Access to the specified parent project is forbidden").build(); } } @@ -315,7 +315,7 @@ public Response uploadBom(@FormDataParam("project") String projectUuid, if (parent == null) { // if parent project is specified but not found return Response.status(Response.Status.NOT_FOUND).entity("The parent component could not be found.").build(); - } else if (! qm.hasAccess(super.getPrincipal(), parent)) { + } else if (!qm.hasAccess(super.getPrincipal(), parent)) { return Response.status(Response.Status.FORBIDDEN).entity("Access to the specified parent project is forbidden").build(); } } @@ -355,7 +355,7 @@ public Response isTokenBeingProcessed( } IsTokenBeingProcessedResponse response = new IsTokenBeingProcessedResponse(); - response.setProcessing(processingInternally || vulnScanStatus == VulnerabilityScan.Status.IN_PROGRESS); + response.setProcessing(processingInternally || vulnScanStatus == VulnerabilityScan.Status.IN_PROGRESS); return Response.ok(response).build(); } @@ -381,7 +381,7 @@ private Response process(QueryManager qm, Project project, String encodedBomData return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); } - final BomUploadEvent bomUploadEvent = new BomUploadEvent(project.getUuid(), bomFile); + final BomUploadEvent bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), bomFile); Event.dispatch(bomUploadEvent); BomUploadResponse bomUploadResponse = new BomUploadResponse(); @@ -417,7 +417,7 @@ private Response process(QueryManager qm, Project project, List components; - final List newComponents = new ArrayList<>(); - final List flattenedComponents = new ArrayList<>(); - final List services; - final List flattenedServices = new ArrayList<>(); - - final byte[] bomBytes; - try (final var bomFileInputStream = Files.newInputStream(event.getFile().toPath(), StandardOpenOption.DELETE_ON_CLOSE)) { - bomBytes = bomFileInputStream.readAllBytes(); - } + processBom(ctx, event.getFile()); - // Holds a list of all Components that are existing dependencies of the specified project - final List existingProjectComponents = qm.getAllComponents(project); - final List existingProjectServices = qm.getAllServiceComponents(project); - final Bom.Format bomFormat; - final String bomSpecVersion; - final Integer bomVersion; - final String serialNumnber; - org.cyclonedx.model.Bom cycloneDxBom = null; - if (BomParserFactory.looksLikeCycloneDX(bomBytes)) { - if (qm.isEnabled(ConfigPropertyConstants.ACCEPT_ARTIFACT_CYCLONEDX)) { - LOGGER.info("Processing CycloneDX BOM uploaded to project: " + event.getProjectUuid()); - bomFormat = Bom.Format.CYCLONEDX; - bomProcessingFailedBomFormat = bomFormat; - final Parser parser = BomParserFactory.createParser(bomBytes); - cycloneDxBom = parser.parse(bomBytes); - bomSpecVersion = cycloneDxBom.getSpecVersion(); - bomProcessingFailedBomVersion = bomSpecVersion; - bomVersion = cycloneDxBom.getVersion(); - if (project.getClassifier() == null) { - final var classifier = Optional.ofNullable(cycloneDxBom.getMetadata()) - .map(org.cyclonedx.model.Metadata::getComponent) - .map(org.cyclonedx.model.Component::getType) - .map(org.cyclonedx.model.Component.Type::name) - .map(Classifier::valueOf) - .orElse(Classifier.APPLICATION); - project.setClassifier(classifier); - } - project.setExternalReferences(ModelConverter.convertBomMetadataExternalReferences(cycloneDxBom)); - serialNumnber = (cycloneDxBom.getSerialNumber() != null) ? cycloneDxBom.getSerialNumber().replaceFirst("urn:uuid:", "") : null; - components = ModelConverter.convertComponents(qm, cycloneDxBom, project); - services = ModelConverter.convertServices(qm, cycloneDxBom, project); - } else { - LOGGER.warn("A CycloneDX BOM was uploaded but accepting CycloneDX BOMs is disabled. Aborting"); - return; - } - } else { - LOGGER.warn("The BOM uploaded is not in a supported format. Supported formats include CycloneDX XML and JSON"); - return; - } - final Project copyOfProject = qm.detach(Project.class, qm.getObjectById(Project.class, project.getId()).getId()); - kafkaEventDispatcher.dispatchAsync(project.getUuid(), - new Notification() - .scope(NotificationScope.PORTFOLIO) - .group(NotificationGroup.BOM_CONSUMED) - .level(NotificationLevel.INFORMATIONAL) - .title(NotificationConstants.Title.BOM_CONSUMED) - .content("A " + bomFormat.getFormatShortName() + " BOM was consumed and will be processed") - .subject(new BomConsumedOrProcessed(copyOfProject, /* bom */ "(Omitted)", bomFormat, bomSpecVersion))); - final Date date = new Date(); - final Bom bom = qm.createBom(project, date, bomFormat, bomSpecVersion, bomVersion, serialNumnber, event.getChainIdentifier()); - for (final Component component : components) { - processComponent(qm, component, flattenedComponents, newComponents); - } - LOGGER.info("Identified " + newComponents.size() + " new components"); - for (final ServiceComponent service : services) { - processService(qm, bom, service, flattenedServices); - } - if (Bom.Format.CYCLONEDX == bomFormat) { - LOGGER.info("Processing CycloneDX dependency graph for project: " + event.getProjectUuid()); - ModelConverter.generateDependencies(cycloneDxBom, project, components); - } - LOGGER.debug("Reconciling components for project " + event.getProjectUuid()); - qm.reconcileComponents(project, existingProjectComponents, flattenedComponents); - LOGGER.debug("Reconciling services for project " + event.getProjectUuid()); - qm.reconcileServiceComponents(project, existingProjectServices, flattenedServices); - LOGGER.debug("Updating last import date for project " + event.getProjectUuid()); - qm.updateLastBomImport(project, date, bomFormat.getFormatShortName() + " " + bomSpecVersion); - // Instead of firing off a new VulnerabilityAnalysisEvent, chain the VulnerabilityAnalysisEvent to - // the BomUploadEvent so that synchronous publishing mode (Jenkins) waits until vulnerability - // analysis has completed. If not chained, synchronous publishing mode will return immediately upon - // return from this method, resulting in inaccurate findings being returned in the response (since - // the vulnerability analysis hasn't taken place yet). - final List detachedFlattenedComponents = qm.detach(flattenedComponents); - final Project detachedProject = qm.detach(Project.class, project.getId()); - if (!detachedFlattenedComponents.isEmpty()) { - qm.createVulnerabilityScan(TargetType.PROJECT, project.getUuid(), event.getChainIdentifier().toString(), flattenedComponents.size()); - for (final Component component : detachedFlattenedComponents) { - //check component belongs to list of new component - boolean isNewComponent = newComponents.stream().filter(component1 -> component1.getUuid().equals(component.getUuid())).findAny().isPresent(); - kafkaEventDispatcher.dispatchAsync(new ComponentVulnerabilityAnalysisEvent( - event.getChainIdentifier(), component, VulnerabilityAnalysisLevel.BOM_UPLOAD_ANALYSIS, isNewComponent)); - kafkaEventDispatcher.dispatchAsync(new ComponentRepositoryMetaAnalysisEvent(component)); - } - } - LOGGER.info("Processed " + flattenedComponents.size() + " components and " + flattenedServices.size() + " services uploaded to project " + event.getProjectUuid()); - kafkaEventDispatcher.dispatchAsync(project.getUuid(), new Notification() + LOGGER.info("BOM processed successfully (%s)".formatted(ctx)); + kafkaEventDispatcher.dispatchAsync(ctx.project.getUuid(), new Notification() .scope(NotificationScope.PORTFOLIO) .group(NotificationGroup.BOM_PROCESSED) .level(NotificationLevel.INFORMATIONAL) .title(NotificationConstants.Title.BOM_PROCESSED) - .content("A " + bomFormat.getFormatShortName() + " BOM was processed") + .content("A %s BOM was processed".formatted(ctx.bomFormat.getFormatShortName())) // FIXME: Add reference to BOM after we have dedicated BOM server - .subject(new BomConsumedOrProcessed(detachedProject, /* bom */ "(Omitted)", bomFormat, bomSpecVersion))); - } catch (Exception ex) { - LOGGER.error("Error while processing bom", ex); - if (bomProcessingFailedProject != null) { - bomProcessingFailedProject = qm.detach(Project.class, bomProcessingFailedProject.getId()); - } - kafkaEventDispatcher.dispatchAsync(bomProcessingFailedProject.getUuid(), new Notification() + .subject(new BomConsumedOrProcessed(ctx.project, /* bom */ "(Omitted)", ctx.bomFormat, ctx.bomSpecVersion))); + } catch (BomProcessingException ex) { + LOGGER.error("BOM processing failed (%s)".formatted(ex.ctx), ex); + kafkaEventDispatcher.dispatchAsync(ex.ctx.project.getUuid(), new Notification() .scope(NotificationScope.PORTFOLIO) .group(NotificationGroup.BOM_PROCESSING_FAILED) + .level(NotificationLevel.ERROR) .title(NotificationConstants.Title.BOM_PROCESSING_FAILED) + .content("An error occurred while processing a BOM") + // TODO: Look into adding more fields to BomProcessingFailed, to also cover upload token, serial number, version, etc. + // Thanks to ctx we now have more information about the BOM that may be useful to consumers downstream. + // FIXME: Add reference to BOM after we have dedicated BOM server + .subject(new BomProcessingFailed(ctx.project, /* bom */ "(Omitted)", ex.getMessage(), ex.ctx.bomFormat, ex.ctx.bomSpecVersion))); + } catch (Exception ex) { + LOGGER.error("BOM processing failed unexpectedly (%s)".formatted(ctx), ex); + kafkaEventDispatcher.dispatchAsync(ctx.project.getUuid(), new Notification() + .scope(NotificationScope.PORTFOLIO) + .group(NotificationGroup.BOM_PROCESSING_FAILED) .level(NotificationLevel.ERROR) + .title(NotificationConstants.Title.BOM_PROCESSING_FAILED) .content("An error occurred while processing a BOM") // FIXME: Add reference to BOM after we have dedicated BOM server - .subject(new BomProcessingFailed(bomProcessingFailedProject, /* bom */ "(Omitted)", ex.getMessage(), bomProcessingFailedBomFormat, bomProcessingFailedBomVersion))); + .subject(new BomProcessingFailed(ctx.project, /* bom */ "(Omitted)", ex.getMessage(), ctx.bomFormat /* (may be null) */, ctx.bomSpecVersion /* (may be null) */))); } finally { timerSample.stop(TIMER); - qm.commitSearchIndex(true, Component.class); - qm.commitSearchIndex(true, ServiceComponent.class); - qm.close(); } } } - private void processComponent(final QueryManager qm, Component component, - final List flattenedComponents, - final List newComponents) { - final boolean isNew = component.getUuid() == null; - component.setInternal(InternalComponentIdentificationUtil.isInternalComponent(component, qm)); - component = qm.createComponent(component, false); - final long oid = component.getId(); - // Refreshing the object by querying for it again is preventative - component = qm.getObjectById(Component.class, oid); - flattenedComponents.add(component); - if (isNew) { - newComponents.add(qm.detach(Component.class, component.getId())); + private void processBom(final Context ctx, final File bomFile) throws BomProcessingException { + LOGGER.info("Consuming uploaded BOM (%s)".formatted(ctx)); + final org.cyclonedx.model.Bom cdxBom = parseBom(ctx, bomFile); + + // Keep track of which BOM ref points to which component identity. + // During component and service de-duplication, we'll potentially drop + // some BOM refs, which can break the dependency graph. + final var identitiesByBomRef = new HashMap(); + + // Component identities will change once components are persisted to the database. + // This means we'll eventually have to update identities in "identitiesByBomRef" + // for every BOM ref pointing to them. + // We avoid having to iterate over, and compare, all values of "identitiesByBomRef" + // by keeping a secondary index on identities to BOM refs. + // Note: One identity can point to multiple BOM refs, due to component and service de-duplication. + final var bomRefsByIdentity = new HashSetValuedHashMap(); + + final Project metadataComponent; + if (cdxBom.getMetadata() != null && cdxBom.getMetadata().getComponent() != null) { + metadataComponent = convertToProject(cdxBom.getMetadata().getComponent()); + } else { + metadataComponent = null; + } + List components = convertComponents(cdxBom.getComponents()); + components = flatten(components, Component::getChildren, Component::setChildren); + final int numComponentsTotal = components.size(); + components = components.stream() + .filter(distinctComponentsByIdentity(identitiesByBomRef, bomRefsByIdentity)) + .toList(); + List services = convertServices(cdxBom.getServices()); + services = flatten(services, ServiceComponent::getChildren, ServiceComponent::setChildren); + final int numServicesTotal = services.size(); + services = services.stream() + .filter(distinctServicesByIdentity(identitiesByBomRef, bomRefsByIdentity)) + .toList(); + + LOGGER.info("Consumed %d components (%d before de-duplication) and %d services (%d before de-duplication) from uploaded BOM (%s)" + .formatted(components.size(), numComponentsTotal, services.size(), numServicesTotal, ctx)); + kafkaEventDispatcher.dispatchAsync(ctx.project.getUuid(), new Notification() + .scope(NotificationScope.PORTFOLIO) + .group(NotificationGroup.BOM_CONSUMED) + .level(NotificationLevel.INFORMATIONAL) + .title(NotificationConstants.Title.BOM_CONSUMED) + .content("A %s BOM was consumed and will be processed".formatted(ctx.bomFormat.getFormatShortName())) + .subject(new BomConsumedOrProcessed(ctx.project, /* bom */ "(Omitted)", ctx.bomFormat, ctx.bomSpecVersion))); + + final var vulnAnalysisEvents = new ArrayList(); + final var repoMetaAnalysisEvents = new ArrayList(); + + try (final var qm = new QueryManager()) { + final PersistenceManager pm = qm.getPersistenceManager(); + + // Disable reachability checks on commit. + // See https://www.datanucleus.org/products/accessplatform_4_1/jdo/performance_tuning.html + // + // Persistence-by-reachability is an expensive operation that involves traversing the entire + // object graph, and potentially issuing multiple database operations in doing so. + // + // It also enables cascading operations (both for persisting and deleting), but we don't need them here. + // If this circumstance ever changes, this property may be flicked to "true" again, at the cost of + // a noticeable performance hit. + // See: + // https://www.datanucleus.org/products/accessplatform_6_0/jdo/persistence.html#cascading + // https://www.datanucleus.org/products/accessplatform_6_0/jdo/persistence.html#_managing_relationships + pm.setProperty(PROPERTY_PERSISTENCE_BY_REACHABILITY_AT_COMMIT, "false"); + + // Save some database round-trips by only flushing changes every FLUSH_THRESHOLD write operations. + // See https://www.datanucleus.org/products/accessplatform_4_1/jdo/performance_tuning.html + // + // Note: Queries (SELECT) will always directly hit the database. Using manual flushing means + // changes made before flush are not visible to queries. If "read-your-writes" is critical, + // either flush immediately after making changes, or change the FlushMode back to AUTO (the default). + // AUTO will flush all changes to the database immediately, on every single setter invocation. + // + // Another option would be to set FlushMode to QUERY, where flushes will be performed before *any* + // query. Hibernate has a smart(er) behavior, where it checks if the query "touches" non-flushed + // data, and only flushes if that's the case. DataNucleus is not as smart, and will always flush. + // Still, QUERY may be a nice middle-ground between AUTO and MANUAL. + // + // BomUploadProcessingTaskTest#informWithBloatedBomTest can be used to profile the impact on large BOMs. + pm.setProperty(PROPERTY_FLUSH_MODE, FlushMode.MANUAL.name()); + + LOGGER.info("Processing %d components and %d services from BOM (%s)" + .formatted(components.size(), services.size(), ctx)); + + final Transaction trx = pm.currentTransaction(); + try { + trx.begin(); + + final Project project = processMetadataComponent(ctx, pm, metadataComponent); + final Map persistentComponents = + processComponents(qm, project, components, identitiesByBomRef, bomRefsByIdentity); + final Map persistentServices = + processServices(qm, project, services, identitiesByBomRef, bomRefsByIdentity); + processDependencyGraph(ctx, pm, cdxBom, project, persistentComponents, persistentServices, identitiesByBomRef); + recordBomImport(ctx, pm, project); + + // BOM ref <-> ComponentIdentity indexes are no longer needed. + // Let go of their contents to make it eligible for GC sooner. + identitiesByBomRef.clear(); + bomRefsByIdentity.clear(); + + for (final Component component : persistentComponents.values()) { + // Note: component does not need to be detached. + // The constructors of ComponentRepositoryMetaAnalysisEvent and ComponentVulnerabilityAnalysisEvent + // merely call a few getters on it, but the component object itself is not passed around. + // Detaching would imply additional database interactions that we'd rather not do. + repoMetaAnalysisEvents.add(new ComponentRepositoryMetaAnalysisEvent(component)); + vulnAnalysisEvents.add(new ComponentVulnerabilityAnalysisEvent( + ctx.uploadToken, component, VulnerabilityAnalysisLevel.BOM_UPLOAD_ANALYSIS, component.isNew())); + } + + trx.commit(); + } finally { + if (trx.isActive()) { + LOGGER.warn(""" + Rolling back uncommitted transaction; This suggests that the transaction was not committed \ + by accident, or the default rollback behavior in case of an exception has changed (%s)""" + .formatted(ctx)); + trx.rollback(); + } + } + + if (!vulnAnalysisEvents.isEmpty()) { + qm.createVulnerabilityScan(TargetType.PROJECT, ctx.project.getUuid(), ctx.uploadToken.toString(), vulnAnalysisEvents.size()); + vulnAnalysisEvents.forEach(kafkaEventDispatcher::dispatchAsync); + } + + repoMetaAnalysisEvents.forEach(kafkaEventDispatcher::dispatchAsync); + + // TODO: Trigger index updates + } + } + + private static org.cyclonedx.model.Bom parseBom(final Context ctx, final File bomFile) throws BomProcessingException { + final byte[] bomBytes; + try (final var bomFileInputStream = Files.newInputStream(bomFile.toPath(), StandardOpenOption.DELETE_ON_CLOSE)) { + bomBytes = bomFileInputStream.readAllBytes(); + } catch (IOException e) { + throw new BomProcessingException(ctx, "Failed to read BOM file", e); } - if (component.getChildren() != null) { - for (final Component child : component.getChildren()) { - processComponent(qm, child, flattenedComponents, newComponents); + + if (!BomParserFactory.looksLikeCycloneDX(bomBytes)) { + throw new BomProcessingException(ctx, """ + The BOM uploaded is not in a supported format. \ + Supported formats include CycloneDX XML and JSON"""); + } + + ctx.bomFormat = Bom.Format.CYCLONEDX; + + final org.cyclonedx.model.Bom bom; + try { + final Parser parser = BomParserFactory.createParser(bomBytes); + bom = parser.parse(bomBytes); + } catch (ParseException e) { + throw new BomProcessingException(ctx, "Failed to parse BOM", e); + } + + ctx.bomSpecVersion = bom.getSpecVersion(); + if (bom.getSerialNumber() != null) { + ctx.bomSerialNumber = bom.getSerialNumber().replaceFirst("urn:uuid:", ""); + } + ctx.bomVersion = bom.getVersion(); + + return bom; + } + + private static Project processMetadataComponent(final Context ctx, final PersistenceManager pm, final Project metadataComponent) throws BomProcessingException { + final Query query = pm.newQuery(Project.class); + query.setFilter("uuid == :uuid"); + query.setParameters(ctx.project.getUuid()); + + final Project project; + try { + project = query.executeUnique(); + } finally { + query.closeAll(); + } + if (project == null) { + throw new BomProcessingException(ctx, "Project does not exist"); + } + + if (metadataComponent != null) { + boolean changed = false; + changed |= applyIfChanged(project, metadataComponent, Project::getAuthor, project::setAuthor); + changed |= applyIfChanged(project, metadataComponent, Project::getPublisher, project::setPublisher); + changed |= applyIfChanged(project, metadataComponent, Project::getClassifier, project::setClassifier); + // TODO: Currently these properties are "decoupled" from the BOM and managed directly by DT users. + // Perhaps there could be a flag for BOM uploads saying "use BOM properties" or something? + // changed |= applyIfChanged(project, metadataComponent, Project::getGroup, project::setGroup); + // changed |= applyIfChanged(project, metadataComponent, Project::getName, project::setName); + // changed |= applyIfChanged(project, metadataComponent, Project::getVersion, project::setVersion); + // changed |= applyIfChanged(project, metadataComponent, Project::getDescription, project::setDescription); + changed |= applyIfChanged(project, metadataComponent, Project::getExternalReferences, project::setExternalReferences); + changed |= applyIfChanged(project, metadataComponent, Project::getPurl, project::setPurl); + changed |= applyIfChanged(project, metadataComponent, Project::getSwidTagId, project::setSwidTagId); + if (changed) { + pm.flush(); } } + + return project; } - private void processService(final QueryManager qm, final Bom bom, ServiceComponent service, - final List flattenedServices) { - service = qm.createServiceComponent(service, false); - final long oid = service.getId(); - // Refreshing the object by querying for it again is preventative - flattenedServices.add(qm.getObjectById(ServiceComponent.class, oid)); - if (service.getChildren() != null) { - for (final ServiceComponent child : service.getChildren()) { - processService(qm, bom, child, flattenedServices); + private static Map processComponents(final QueryManager qm, + final Project project, + final List components, + final Map identitiesByBomRef, + final MultiValuedMap bomRefsByIdentity) { + assertPersistent(project, "Project must be persistent"); + + final PersistenceManager pm = qm.getPersistenceManager(); + + // Fetch IDs of all components that exist in the project already. + // We'll need them later to determine which components to delete. + final Set oldComponentIds = getAllComponentIds(pm, project, Component.class); + + // Avoid redundant queries by caching resolved licenses. + // It is likely that if license IDs were present in a BOM, + // they appear multiple times for different components. + final var licenseCache = new HashMap(); + + final var persistentComponents = new HashMap(); + try (final var flushHelper = new FlushHelper(qm, FLUSH_THRESHOLD)) { + for (final Component component : components) { + component.setInternal(isInternalComponent(component, qm)); + + // Try to resolve the license by its ID. + // Note: licenseId is a transient field of Component and will not survive this transaction. + if (component.getLicenseId() != null) { + component.setResolvedLicense(resolveLicense(pm, licenseCache, component.getLicenseId())); + } + + final boolean isNewOrUpdated; + final var componentIdentity = new ComponentIdentity(component); + Component persistentComponent = qm.matchSingleIdentity(project, componentIdentity); + if (persistentComponent == null) { + component.setProject(project); + persistentComponent = pm.makePersistent(component); + persistentComponent.setNew(true); // transient + isNewOrUpdated = true; + } else { + var changed = false; + changed |= applyIfChanged(persistentComponent, component, Component::getAuthor, persistentComponent::setAuthor); + changed |= applyIfChanged(persistentComponent, component, Component::getPublisher, persistentComponent::setPublisher); + changed |= applyIfChanged(persistentComponent, component, Component::getClassifier, persistentComponent::setClassifier); + changed |= applyIfChanged(persistentComponent, component, Component::getGroup, persistentComponent::setGroup); + changed |= applyIfChanged(persistentComponent, component, Component::getName, persistentComponent::setName); + changed |= applyIfChanged(persistentComponent, component, Component::getVersion, persistentComponent::setVersion); + changed |= applyIfChanged(persistentComponent, component, Component::getDescription, persistentComponent::setDescription); + changed |= applyIfChanged(persistentComponent, component, Component::getCopyright, persistentComponent::setCopyright); + changed |= applyIfChanged(persistentComponent, component, Component::getCpe, persistentComponent::setCpe); + changed |= applyIfChanged(persistentComponent, component, Component::getPurl, persistentComponent::setPurl); + changed |= applyIfChanged(persistentComponent, component, Component::getSwidTagId, persistentComponent::setSwidTagId); + changed |= applyIfChanged(persistentComponent, component, Component::getMd5, persistentComponent::setMd5); + changed |= applyIfChanged(persistentComponent, component, Component::getSha1, persistentComponent::setSha1); + changed |= applyIfChanged(persistentComponent, component, Component::getSha256, persistentComponent::setSha256); + changed |= applyIfChanged(persistentComponent, component, Component::getSha384, persistentComponent::setSha384); + changed |= applyIfChanged(persistentComponent, component, Component::getSha512, persistentComponent::setSha512); + changed |= applyIfChanged(persistentComponent, component, Component::getSha3_256, persistentComponent::setSha3_256); + changed |= applyIfChanged(persistentComponent, component, Component::getSha3_384, persistentComponent::setSha3_384); + changed |= applyIfChanged(persistentComponent, component, Component::getSha3_512, persistentComponent::setSha3_512); + changed |= applyIfChanged(persistentComponent, component, Component::getBlake2b_256, persistentComponent::setBlake2b_256); + changed |= applyIfChanged(persistentComponent, component, Component::getBlake2b_384, persistentComponent::setBlake2b_384); + changed |= applyIfChanged(persistentComponent, component, Component::getBlake2b_512, persistentComponent::setBlake2b_512); + changed |= applyIfChanged(persistentComponent, component, Component::getBlake3, persistentComponent::setBlake3); + changed |= applyIfChanged(persistentComponent, component, Component::getResolvedLicense, persistentComponent::setResolvedLicense); + changed |= applyIfChanged(persistentComponent, component, Component::getLicense, persistentComponent::setLicense); + changed |= applyIfChanged(persistentComponent, component, Component::getLicenseUrl, persistentComponent::setLicenseUrl); + changed |= applyIfChanged(persistentComponent, component, Component::isInternal, persistentComponent::setInternal); + changed |= applyIfChanged(persistentComponent, component, Component::getExternalReferences, persistentComponent::setExternalReferences); + isNewOrUpdated = changed; + + // BOM ref is transient and thus doesn't count towards the changed status. + persistentComponent.setBomRef(component.getBomRef()); + + // Exclude from components to delete. + if (!oldComponentIds.isEmpty()) { + oldComponentIds.remove(persistentComponent.getId()); + } + } + + // Update component identities in our Identity->BOMRef map, + // as after persisting the components, their identities now include UUIDs. + // Applications like the frontend rely on UUIDs being there. + final var newIdentity = new ComponentIdentity(persistentComponent); + final ComponentIdentity oldIdentity = identitiesByBomRef.put(persistentComponent.getBomRef(), newIdentity); + for (final String bomRef : bomRefsByIdentity.get(oldIdentity)) { + identitiesByBomRef.put(bomRef, newIdentity); + } + persistentComponents.put(newIdentity, persistentComponent); + + if (isNewOrUpdated) { // Flushing is only necessary when something changed + flushHelper.maybeFlush(); + } } } + + // License cache is no longer needed; Let go of it. + licenseCache.clear(); + + // Delete components that existed before this BOM import, but do not exist anymore. + deleteComponentsById(pm, oldComponentIds); + + return persistentComponents; } + + private static Map processServices(final QueryManager qm, + final Project project, + final List services, + final Map identitiesByBomRef, + final MultiValuedMap bomRefsByIdentity) { + assertPersistent(project, "Project must be persistent"); + + final PersistenceManager pm = qm.getPersistenceManager(); + + // Fetch IDs of all services that exist in the project already. + // We'll need them later to determine which services to delete. + final Set oldServiceIds = getAllComponentIds(pm, project, ServiceComponent.class); + + final var persistentServices = new HashMap(); + + try (final var flushHelper = new FlushHelper(qm, FLUSH_THRESHOLD)) { + for (final ServiceComponent service : services) { + final boolean isNewOrUpdated; + final var componentIdentity = new ComponentIdentity(service); + ServiceComponent persistentService = qm.matchServiceIdentity(project, componentIdentity); + if (persistentService == null) { + service.setProject(project); + persistentService = pm.makePersistent(service); + isNewOrUpdated = true; + } else { + var changed = false; + changed |= applyIfChanged(persistentService, service, ServiceComponent::getGroup, persistentService::setGroup); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getName, persistentService::setName); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getVersion, persistentService::setVersion); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getDescription, persistentService::setDescription); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getAuthenticated, persistentService::setAuthenticated); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getCrossesTrustBoundary, persistentService::setCrossesTrustBoundary); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getExternalReferences, persistentService::setExternalReferences); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getProvider, persistentService::setProvider); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getData, persistentService::setData); + changed |= applyIfChanged(persistentService, service, ServiceComponent::getEndpoints, persistentService::setEndpoints); + isNewOrUpdated = changed; + + // BOM ref is transient and thus doesn't count towards the changed status. + persistentService.setBomRef(service.getBomRef()); + + // Exclude from components to delete. + if (!oldServiceIds.isEmpty()) { + oldServiceIds.remove(persistentService.getId()); + } + } + + // Update component identities in our Identity->BOMRef map, + // as after persisting the services, their identities now include UUIDs. + // Applications like the frontend rely on UUIDs being there. + final var newIdentity = new ComponentIdentity(persistentService); + final ComponentIdentity oldIdentity = identitiesByBomRef.put(service.getBomRef(), newIdentity); + for (final String bomRef : bomRefsByIdentity.get(oldIdentity)) { + identitiesByBomRef.put(bomRef, newIdentity); + } + persistentServices.put(newIdentity, persistentService); + + if (isNewOrUpdated) { // Flushing is only necessary when something changed + flushHelper.maybeFlush(); + } + } + } + + // Delete components that existed before this BOM import, but do not exist anymore. + deleteServicesById(pm, oldServiceIds); + + return persistentServices; + } + + private static void processDependencyGraph(final Context ctx, final PersistenceManager pm, final org.cyclonedx.model.Bom cdxBom, + final Project project, final Map componentsByIdentity, + @SuppressWarnings("unused") final Map servicesByIdentity, + final Map identitiesByBomRef) { + assertPersistent(project, "Project must be persistent"); + + if (cdxBom.getMetadata() != null + && cdxBom.getMetadata().getComponent() != null + && cdxBom.getMetadata().getComponent().getBomRef() != null) { + final org.cyclonedx.model.Dependency dependency = + findDependencyByBomRef(cdxBom.getDependencies(), cdxBom.getMetadata().getComponent().getBomRef()); + final String directDependenciesJson = resolveDirectDependenciesJson(ctx, dependency, identitiesByBomRef); + if (!Objects.equals(directDependenciesJson, project.getDirectDependencies())) { + project.setDirectDependencies(directDependenciesJson); + pm.flush(); + } + } else { + // Make sure we don't retain stale data from previous BOM uploads. + if (project.getDirectDependencies() != null) { + project.setDirectDependencies(null); + pm.flush(); + } + } + + try (final var flushHelper = new FlushHelper(pm, FLUSH_THRESHOLD)) { + for (final Map.Entry entry : identitiesByBomRef.entrySet()) { + final org.cyclonedx.model.Dependency dependency = findDependencyByBomRef(cdxBom.getDependencies(), entry.getKey()); + final String directDependenciesJson = resolveDirectDependenciesJson(ctx, dependency, identitiesByBomRef); + + final ComponentIdentity dependencyIdentity = identitiesByBomRef.get(entry.getKey()); + final Component component = componentsByIdentity.get(dependencyIdentity); + assertPersistent(component, "Component must be persistent"); + // TODO: Check servicesByIdentity when persistentComponent is null + // We do not currently store directDependencies for ServiceComponent + if (component != null) { + if (!Objects.equals(directDependenciesJson, component.getDirectDependencies())) { + component.setDirectDependencies(directDependenciesJson); + flushHelper.maybeFlush(); + } + } else { + LOGGER.warn(""" + Unable to resolve component identity %s to a persistent component; \ + As a result, the dependency graph of project %s will likely be incomplete (%s)""" + .formatted(dependencyIdentity.toJSON(), ctx.project.getUuid(), ctx)); + } + } + } + } + + private static void recordBomImport(final Context ctx, final PersistenceManager pm, final Project project) { + assertPersistent(project, "Project must be persistent"); + + final var bomImportDate = new Date(); + + final var bom = new Bom(); + bom.setProject(project); + bom.setBomFormat(ctx.bomFormat); + bom.setSpecVersion(ctx.bomSpecVersion); + bom.setSerialNumber(ctx.bomSerialNumber); + bom.setBomVersion(ctx.bomVersion); + bom.setImported(bomImportDate); + pm.makePersistent(bom); + + project.setLastBomImport(bomImportDate); + project.setLastBomImportFormat(ctx.bomFormat.getFormatShortName()); + } + + private static String resolveDirectDependenciesJson(final Context ctx, + final org.cyclonedx.model.Dependency dependency, + final Map identitiesByBomRef) { + final var jsonDependencies = new JSONArray(); + + if (dependency != null && dependency.getDependencies() != null) { + for (final org.cyclonedx.model.Dependency subDependency : dependency.getDependencies()) { + final ComponentIdentity subDependencyIdentity = identitiesByBomRef.get(subDependency.getRef()); + if (subDependencyIdentity != null) { + jsonDependencies.put(subDependencyIdentity.toJSON()); + } else { + LOGGER.warn(""" + Unable to resolve BOM ref %s to a component identity; \ + As a result, the dependency graph of project %s will likely be incomplete (%s)""" + .formatted(dependency.getRef(), ctx.project.getUuid(), ctx)); + } + } + } + + return jsonDependencies.isEmpty() ? null : jsonDependencies.toString(); + } + + /** + * Re-implementation of {@link QueryManager#recursivelyDelete(Component, boolean)} that does not use multiple + * small {@link Transaction}s, but relies on an already active one instead. Instead of committing, it uses + * {@link FlushHelper} to flush changes every {@link #FLUSH_THRESHOLD} write operations. + *

+ * TODO: Move to {@link QueryManager}; Implement for {@link Project}s as well. + * When working on #636. + * + * @param pm The {@link PersistenceManager} to use + * @param componentIds IDs of {@link Component}s to delete + */ + private static void deleteComponentsById(final PersistenceManager pm, final Set componentIds) { + if (componentIds.isEmpty()) { + return; + } + + try (final var flushHelper = new FlushHelper(pm, FLUSH_THRESHOLD)) { + for (final Long componentId : componentIds) { + // Note: Bulk DELETE queries are executed directly in the database and do not need to be flushed. + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.AnalysisComment WHERE analysis.component.id == :cid").execute(componentId); + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.Analysis WHERE component.id == :cid").execute(componentId); + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.ViolationAnalysisComment WHERE violationAnalysis.component.id == :cid").execute(componentId); + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.ViolationAnalysis WHERE component.id == :cid").execute(componentId); + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.DependencyMetrics WHERE component.id == :cid").execute(componentId); + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.FindingAttribution WHERE component.id == :cid").execute(componentId); + pm.newQuery(Query.JDOQL, "DELETE FROM org.dependencytrack.model.PolicyViolation WHERE component.id == :cid").execute(componentId); + + // Can't use bulk DELETE for the component itself, as it doesn't remove entries from + // relationship tables like COMPONENTS_VULNERABILITIES. deletePersistentAll does, but + // it will also fetch the component prior to deleting it, which is slightly inefficient. + pm.newQuery(Component.class, "id == :cid").deletePersistentAll(componentId); + flushHelper.maybeFlush(); + } + } + } + + /** + * Re-implementation of {@link QueryManager#recursivelyDelete(ServiceComponent, boolean)} that does not use multiple + * small {@link Transaction}s, but relies on an already active one instead. Instead of committing, it uses + * {@link FlushHelper} to flush changes every {@link #FLUSH_THRESHOLD} write operations. + * + * @param pm The {@link PersistenceManager} to use + * @param serviceIds IDs of {@link ServiceComponent}s to delete + */ + private static void deleteServicesById(final PersistenceManager pm, final Set serviceIds) { + if (serviceIds.isEmpty()) { + return; + } + + try (final var flushHelper = new FlushHelper(pm, FLUSH_THRESHOLD)) { + for (final Long serviceId : serviceIds) { + // Can't use bulk DELETE for the component itself, as it doesn't remove entries from + // relationship tables like COMPONENTS_VULNERABILITIES. deletePersistentAll does, but + // it will also fetch the component prior to deleting it, which is slightly inefficient. + pm.newQuery(ServiceComponent.class, "id == :cid").deletePersistentAll(serviceId); + flushHelper.maybeFlush(); + } + } + } + + /** + * Lookup a {@link License} by its ID, and cache the result in {@code cache}. + * + * @param pm The {@link PersistenceManager} to use + * @param cache A {@link Map} to use for caching + * @param licenseId The {@link License} ID to lookup + * @return The resolved {@link License}, or {@code null} if no {@link License} was found + */ + private static License resolveLicense(final PersistenceManager pm, final Map cache, final String licenseId) { + if (cache.containsKey(licenseId)) { + return cache.get(licenseId); + } + + final Query query = pm.newQuery(License.class); + query.setFilter("licenseId == :licenseId"); + query.setParameters(licenseId); + final License license; + try { + license = query.executeUnique(); + } finally { + query.closeAll(); + } + + cache.put(licenseId, license); + return license; + } + + private static org.cyclonedx.model.Dependency findDependencyByBomRef(final List dependencies, final String bomRef) { + if (dependencies == null || dependencies.isEmpty() || bomRef == null) { + return null; + } + + for (final org.cyclonedx.model.Dependency dependency : dependencies) { + if (bomRef.equals(dependency.getRef())) { + return dependency; + } + } + + return null; + } + + private static Set getAllComponentIds(final PersistenceManager pm, final Project project, final Class clazz) { + final Query query = pm.newQuery(clazz); + query.setFilter("project == :project"); + query.setParameters(project); + query.setResult("id"); + + try { + return new HashSet<>(query.executeResultList(Long.class)); + } finally { + query.closeAll(); + } + } + + /** + * Factory for a stateful {@link Predicate} for de-duplicating {@link Component}s based on their {@link ComponentIdentity}. + *

+ * The predicate will populate {@code identitiesByBomRef} and {@code bomRefsByIdentity}. + * + * @param identitiesByBomRef The mapping of BOM refs to {@link ComponentIdentity}s to populate + * @param bomRefsByIdentity The mapping of {@link ComponentIdentity}s to BOM refs to populate + * @return A {@link Predicate} to use in {@link Stream#filter(Predicate)} + */ + private static Predicate distinctComponentsByIdentity(final Map identitiesByBomRef, + final MultiValuedMap bomRefsByIdentity) { + final var identitiesSeen = new HashSet(); + + return component -> { + final var componentIdentity = new ComponentIdentity(component); + identitiesByBomRef.putIfAbsent(component.getBomRef(), componentIdentity); + bomRefsByIdentity.put(componentIdentity, component.getBomRef()); + return identitiesSeen.add(componentIdentity); + }; + } + + /** + * Factory for a stateful {@link Predicate} for de-duplicating {@link ServiceComponent}s based on their {@link ComponentIdentity}. + *

+ * The predicate will populate {@code identitiesByBomRef} and {@code bomRefsByIdentity}. + * + * @param identitiesByBomRef The mapping of BOM refs to {@link ComponentIdentity}s to populate + * @param bomRefsByIdentity The mapping of {@link ComponentIdentity}s to BOM refs to populate + * @return A {@link Predicate} to use in {@link Stream#filter(Predicate)} + */ + private static Predicate distinctServicesByIdentity(final Map identitiesByBomRef, + final MultiValuedMap bomRefsByIdentity) { + final var identitiesSeen = new HashSet(); + + return service -> { + final var componentIdentity = new ComponentIdentity(service); + identitiesByBomRef.putIfAbsent(service.getBomRef(), componentIdentity); + bomRefsByIdentity.put(componentIdentity, service.getBomRef()); + return identitiesSeen.add(componentIdentity); + }; + } + + /** + * An {@link Exception} that signals failures during BOM processing. + */ + private static final class BomProcessingException extends Exception { + + private final Context ctx; + + private BomProcessingException(final Context ctx, final String message, final Throwable cause) { + super(message, cause); + this.ctx = ctx; + } + + private BomProcessingException(final Context ctx, final String message) { + this(ctx, message, null); + } + + } + + /** + * Context holder for identifiers and metadata that describe a processing execution. + * Intended to be passed around and enriched during various stages of processing. + */ + private static final class Context { + + private final Project project; + private final UUID uploadToken; + private Bom.Format bomFormat; + private String bomSpecVersion; + private String bomSerialNumber; + private Integer bomVersion; + + private Context(final Project project, final UUID uploadToken) { + this.project = project; + this.uploadToken = uploadToken; + } + + @Override + public String toString() { + return "Context{" + + "project=" + project.getUuid() + + ", uploadToken=" + uploadToken + + ", bomFormat=" + bomFormat + + ", bomSpecVersion=" + bomSpecVersion + + ", bomSerialNumber=" + bomSerialNumber + + ", bomVersion=" + bomVersion + + '}'; + } + + } + } diff --git a/src/main/java/org/dependencytrack/util/PersistenceUtil.java b/src/main/java/org/dependencytrack/util/PersistenceUtil.java index 303f24d5a..c7b289c8b 100644 --- a/src/main/java/org/dependencytrack/util/PersistenceUtil.java +++ b/src/main/java/org/dependencytrack/util/PersistenceUtil.java @@ -3,11 +3,19 @@ import org.apache.commons.lang3.exception.ExceptionUtils; import org.postgresql.util.PSQLState; +import javax.jdo.JDOHelper; +import javax.jdo.ObjectState; import java.sql.SQLException; import java.util.Objects; import java.util.function.Consumer; import java.util.function.Function; +import static javax.jdo.ObjectState.HOLLOW_PERSISTENT_NONTRANSACTIONAL; +import static javax.jdo.ObjectState.PERSISTENT_CLEAN; +import static javax.jdo.ObjectState.PERSISTENT_DIRTY; +import static javax.jdo.ObjectState.PERSISTENT_NEW; +import static javax.jdo.ObjectState.PERSISTENT_NONTRANSACTIONAL_DIRTY; + public final class PersistenceUtil { private PersistenceUtil() { @@ -48,4 +56,29 @@ public static boolean isUniqueConstraintViolation(final Throwable throwable) { && PSQLState.UNIQUE_VIOLATION.getState().equals(se.getSQLState()); } + /** + * Utility method to ensure that a given object is in a persistent state. + *

+ * Useful when an object is supposed to be used as JDOQL query parameter, + * or changes made on it are intended to be flushed to the database. + *

+ * Performing these operations on a non-persistent object will have to effect. + * It is preferable to catch these cases earlier to later. + * + * @param object The object to check the state of + * @param message Message to use for the exception, if object is not persistent + * @throws IllegalStateException When the object is not in a persistent state + * @see Object Lifecycle + */ + public static void assertPersistent(final Object object, final String message) { + final ObjectState objectState = JDOHelper.getObjectState(object); + if (objectState != PERSISTENT_CLEAN + && objectState != PERSISTENT_DIRTY + && objectState != PERSISTENT_NEW + && objectState != PERSISTENT_NONTRANSACTIONAL_DIRTY + && objectState != HOLLOW_PERSISTENT_NONTRANSACTIONAL) { + throw new IllegalStateException(message != null ? message : "Object must be persistent"); + } + } + } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 55bd3d7b8..14f7f0b76 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -365,4 +365,10 @@ task.mirror.epss.lockAtLeastForInMillis=3000 task.componentIdentification.lockAtMostForInMillis=900000 task.componentIdentification.lockAtLeastForInMillis=3000 task.ldapSync.lockAtMostForInMillis=900000 -task.ldapSync.lockAtLeastForInMillis=3000 \ No newline at end of file +task.ldapSync.lockAtLeastForInMillis=3000 + +# Optional +# Defines the number of write operations to perform during BOM processing before changes are flushed to the database. +# Smaller values may lower memory usage of the API server, whereas higher values will improve performance as fewer +# network round-trips to the database are necessary. +bom.upload.processing.trx.flush.threshold=10000 diff --git a/src/test/java/org/dependencytrack/event/BomUploadEventTest.java b/src/test/java/org/dependencytrack/event/BomUploadEventTest.java index 9eaf6aedc..211c60ab5 100644 --- a/src/test/java/org/dependencytrack/event/BomUploadEventTest.java +++ b/src/test/java/org/dependencytrack/event/BomUploadEventTest.java @@ -19,20 +19,20 @@ package org.dependencytrack.event; import alpine.common.util.SystemUtil; +import org.dependencytrack.model.Project; import org.junit.Assert; import org.junit.Test; import java.io.File; -import java.util.UUID; public class BomUploadEventTest { @Test public void testFileConstructor() { - UUID uuid = UUID.randomUUID(); + Project project = new Project(); File bitBucket = new File(SystemUtil.getBitBucket()); - BomUploadEvent event = new BomUploadEvent(uuid, bitBucket); - Assert.assertEquals(uuid, event.getProjectUuid()); + BomUploadEvent event = new BomUploadEvent(project, bitBucket); + Assert.assertEquals(project, event.getProject()); Assert.assertEquals(bitBucket, event.getFile()); } } diff --git a/src/test/java/org/dependencytrack/model/ComponentIdentityTest.java b/src/test/java/org/dependencytrack/model/ComponentIdentityTest.java new file mode 100644 index 000000000..b5723190a --- /dev/null +++ b/src/test/java/org/dependencytrack/model/ComponentIdentityTest.java @@ -0,0 +1,155 @@ +package org.dependencytrack.model; + +import com.github.packageurl.PackageURL; +import junitparams.JUnitParamsRunner; +import junitparams.Parameters; +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.assertj.core.api.Assertions.assertThat; + +@RunWith(JUnitParamsRunner.class) +public class ComponentIdentityTest { + + @SuppressWarnings("unused") + private Object[] testEqualsAndHashCodeParams() throws Exception { + return new Object[]{ + // Equal + new Object[]{ + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + true + }, + // Different coordinates + new Object[]{ + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "otherGroup", + "otherName", + "otherVersion" + ), + false + }, + // Different version + new Object[]{ + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "otherVersion" + ), + false + }, + // Different PURLs + new Object[]{ + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + new ComponentIdentity( + new PackageURL("pkg:maven/otherGroup/otherName@otherVersion"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + false + }, + // Different CPEs + new Object[]{ + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "otherCpe", + "swidTagId", + "group", + "name", + "version" + ), + false + }, + // Different SWID Tag ID + new Object[]{ + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "swidTagId", + "group", + "name", + "version" + ), + new ComponentIdentity( + new PackageURL("pkg:maven/group/name@version"), + "cpe", + "otherSwidTagId", + "group", + "name", + "version" + ), + false + } + }; + } + + @Test + @Parameters(method = "testEqualsAndHashCodeParams") + public void testEqualsAndHashCode(final ComponentIdentity left, final ComponentIdentity right, final boolean expectEqual) { + if (expectEqual) { + assertThat(left).isEqualTo(right); + assertThat(right).isEqualTo(left); + assertThat(left.hashCode()).isEqualTo(right.hashCode()); + } else { + assertThat(left).isNotEqualTo(right); + assertThat(right).isNotEqualTo(left); + assertThat(left.hashCode()).isNotEqualTo(right.hashCode()); + } + } + + +} \ No newline at end of file diff --git a/src/test/java/org/dependencytrack/persistence/FlushHelperTest.java b/src/test/java/org/dependencytrack/persistence/FlushHelperTest.java new file mode 100644 index 000000000..fd79e1d7d --- /dev/null +++ b/src/test/java/org/dependencytrack/persistence/FlushHelperTest.java @@ -0,0 +1,61 @@ +package org.dependencytrack.persistence; + +import org.junit.Before; +import org.junit.Test; + +import javax.jdo.PersistenceManager; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.never; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; + +public class FlushHelperTest { + + private PersistenceManager pmMock; + + @Before + public void setUp() { + pmMock = mock(PersistenceManager.class); + } + + @Test + public void testMaybeFlush() { + final var flushHelper = new FlushHelper(pmMock, 3); + + assertThat(flushHelper.maybeFlush()).isFalse(); + verify(pmMock, never()).flush(); + + assertThat(flushHelper.maybeFlush()).isFalse(); + verify(pmMock, never()).flush(); + + assertThat(flushHelper.maybeFlush()).isTrue(); + verify(pmMock, times(1)).flush(); + } + + @Test + public void testFlushIfPending() { + final var flushHelper = new FlushHelper(pmMock, 3); + + assertThat(flushHelper.flushIfPending()).isFalse(); + verify(pmMock, never()).flush(); + + assertThat(flushHelper.maybeFlush()).isFalse(); + verify(pmMock, never()).flush(); + + assertThat(flushHelper.flushIfPending()).isTrue(); + verify(pmMock, times(1)).flush(); + } + + @Test + public void testAutoClose() { + try (final var flushHelper = new FlushHelper(pmMock, 3)) { + assertThat(flushHelper.maybeFlush()).isFalse(); + verify(pmMock, never()).flush(); + } + + verify(pmMock, times(1)).flush(); + } + +} \ No newline at end of file diff --git a/src/test/java/org/dependencytrack/resources/v1/BomResourceTest.java b/src/test/java/org/dependencytrack/resources/v1/BomResourceTest.java index bb741ed6a..e62c469b0 100644 --- a/src/test/java/org/dependencytrack/resources/v1/BomResourceTest.java +++ b/src/test/java/org/dependencytrack/resources/v1/BomResourceTest.java @@ -668,7 +668,7 @@ public void exportComponentAsCycloneDxInvalid() { public void uploadBomTest() throws Exception { initializeWithPermissions(Permissions.BOM_UPLOAD); Project project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); - File file = new File(IOUtils.resourceToURL("/bom-1.xml").toURI()); + File file = new File(IOUtils.resourceToURL("/unit/bom-1.xml").toURI()); String bomString = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(file)); BomSubmitRequest request = new BomSubmitRequest(project.getUuid().toString(), null, null, false, bomString); Response response = target(V1_BOM).request() @@ -737,7 +737,7 @@ public void uploadInvalidFormatBomTest() throws Exception { @Test public void uploadBomInvalidProjectTest() throws Exception { initializeWithPermissions(Permissions.BOM_UPLOAD); - File file = new File(IOUtils.resourceToURL("/bom-1.xml").toURI()); + File file = new File(IOUtils.resourceToURL("/unit/bom-1.xml").toURI()); String bomString = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(file)); BomSubmitRequest request = new BomSubmitRequest(UUID.randomUUID().toString(), null, null, false, bomString); Response response = target(V1_BOM).request() @@ -752,7 +752,7 @@ public void uploadBomInvalidProjectTest() throws Exception { @Test public void uploadBomAutoCreateTest() throws Exception { initializeWithPermissions(Permissions.BOM_UPLOAD, Permissions.PROJECT_CREATION_UPLOAD); - File file = new File(IOUtils.resourceToURL("/bom-1.xml").toURI()); + File file = new File(IOUtils.resourceToURL("/unit/bom-1.xml").toURI()); String bomString = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(file)); BomSubmitRequest request = new BomSubmitRequest(null, "Acme Example", "1.0", true, bomString); Response response = target(V1_BOM).request() @@ -769,7 +769,7 @@ public void uploadBomAutoCreateTest() throws Exception { @Test public void uploadBomUnauthorizedTest() throws Exception { - File file = new File(IOUtils.resourceToURL("/bom-1.xml").toURI()); + File file = new File(IOUtils.resourceToURL("/unit/bom-1.xml").toURI()); String bomString = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(file)); BomSubmitRequest request = new BomSubmitRequest(null, "Acme Example", "1.0", true, bomString); Response response = target(V1_BOM).request() @@ -783,7 +783,7 @@ public void uploadBomUnauthorizedTest() throws Exception { @Test public void uploadBomAutoCreateTestWithParentTest() throws Exception { initializeWithPermissions(Permissions.BOM_UPLOAD, Permissions.PROJECT_CREATION_UPLOAD); - File file = new File(IOUtils.resourceToURL("/bom-1.xml").toURI()); + File file = new File(IOUtils.resourceToURL("/unit/bom-1.xml").toURI()); String bomString = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(file)); // Upload parent project BomSubmitRequest request = new BomSubmitRequest(null, "Acme Parent", "1.0", true, bomString); @@ -847,7 +847,7 @@ public void uploadBomAutoCreateTestWithParentTest() throws Exception { @Test public void uploadBomInvalidParentTest() throws Exception { initializeWithPermissions(Permissions.BOM_UPLOAD, Permissions.PROJECT_CREATION_UPLOAD); - File file = new File(IOUtils.resourceToURL("/bom-1.xml").toURI()); + File file = new File(IOUtils.resourceToURL("/unit/bom-1.xml").toURI()); String bomString = Base64.getEncoder().encodeToString(FileUtils.readFileToByteArray(file)); BomSubmitRequest request = new BomSubmitRequest(null, "Acme Example", "1.0", true, UUID.randomUUID().toString(), null, null, bomString); Response response = target(V1_BOM).request() diff --git a/src/test/java/org/dependencytrack/tasks/BomUploadProcessingTaskTest.java b/src/test/java/org/dependencytrack/tasks/BomUploadProcessingTaskTest.java index 2508c1221..7ba3936e7 100644 --- a/src/test/java/org/dependencytrack/tasks/BomUploadProcessingTaskTest.java +++ b/src/test/java/org/dependencytrack/tasks/BomUploadProcessingTaskTest.java @@ -18,30 +18,36 @@ */ package org.dependencytrack.tasks; -import org.apache.commons.io.IOUtils; +import org.apache.kafka.clients.producer.ProducerRecord; import org.dependencytrack.PersistenceCapableTest; import org.dependencytrack.event.BomUploadEvent; import org.dependencytrack.event.kafka.KafkaTopics; +import org.dependencytrack.model.Bom; import org.dependencytrack.model.Classifier; import org.dependencytrack.model.Component; import org.dependencytrack.model.ConfigPropertyConstants; import org.dependencytrack.model.Project; import org.dependencytrack.model.VulnerabilityScan; -import org.dependencytrack.util.KafkaTestUtil; import org.hyades.proto.notification.v1.BomProcessingFailedSubject; +import org.hyades.proto.notification.v1.Group; import org.hyades.proto.notification.v1.Notification; import org.junit.Before; import org.junit.Test; +import java.io.File; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardCopyOption; import java.time.Duration; import java.util.List; +import java.util.Objects; +import static org.apache.commons.io.IOUtils.resourceToURL; import static org.assertj.core.api.Assertions.assertThat; import static org.dependencytrack.assertion.Assertions.assertConditionWithTimeout; +import static org.dependencytrack.util.KafkaTestUtil.deserializeKey; +import static org.dependencytrack.util.KafkaTestUtil.deserializeValue; import static org.hyades.proto.notification.v1.Group.GROUP_BOM_PROCESSING_FAILED; import static org.hyades.proto.notification.v1.Level.LEVEL_ERROR; import static org.hyades.proto.notification.v1.Scope.SCOPE_PORTFOLIO; @@ -55,25 +61,13 @@ public void setUp() { ConfigPropertyConstants.ACCEPT_ARTIFACT_CYCLONEDX.getPropertyName(), "true", ConfigPropertyConstants.ACCEPT_ARTIFACT_CYCLONEDX.getPropertyType(), ConfigPropertyConstants.ACCEPT_ARTIFACT_CYCLONEDX.getDescription()); - - // Enable internal vulnerability analyzer - qm.createConfigProperty(ConfigPropertyConstants.SCANNER_INTERNAL_ENABLED.getGroupName(), - ConfigPropertyConstants.SCANNER_INTERNAL_ENABLED.getPropertyName(), "true", - ConfigPropertyConstants.SCANNER_INTERNAL_ENABLED.getPropertyType(), - ConfigPropertyConstants.SCANNER_INTERNAL_ENABLED.getDescription()); } @Test public void informTest() throws Exception { Project project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); - // The task will delete the input file after processing it, - // so create a temporary copy to not impact other tests. - final Path bomFilePath = Files.createTempFile(null, null); - Files.copy(Paths.get(IOUtils.resourceToURL("/bom-1.xml").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - final var bomUploadEvent = new BomUploadEvent(project.getUuid(), bomFile); + final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-1.xml")); new BomUploadProcessingTask().inform(bomUploadEvent); assertConditionWithTimeout(() -> kafkaMockProducer.history().size() >= 5, Duration.ofSeconds(5)); assertThat(kafkaMockProducer.history()).satisfiesExactly( @@ -112,13 +106,7 @@ public void informTest() throws Exception { public void informWithEmptyBomTest() throws Exception { Project project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); - // The task will delete the input file after processing it, - // so create a temporary copy to not impact other tests. - final Path bomFilePath = Files.createTempFile(null, null); - Files.copy(Paths.get(IOUtils.resourceToURL("/unit/bom-empty.json").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - final var bomUploadEvent = new BomUploadEvent(project.getUuid(), bomFile); + final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-empty.json")); new BomUploadProcessingTask().inform(bomUploadEvent); assertConditionWithTimeout(() -> kafkaMockProducer.history().size() >= 3, Duration.ofSeconds(5)); assertThat(kafkaMockProducer.history()).satisfiesExactly( @@ -128,7 +116,7 @@ public void informWithEmptyBomTest() throws Exception { ); qm.getPersistenceManager().refresh(project); - assertThat(project.getClassifier()).isEqualTo(Classifier.APPLICATION); + assertThat(project.getClassifier()).isNull(); assertThat(project.getLastBomImport()).isNotNull(); final List components = qm.getAllComponents(project); @@ -142,19 +130,13 @@ public void informWithEmptyBomTest() throws Exception { public void informWithInvalidBomTest() throws Exception { Project project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); - // The task will delete the input file after processing it, - // so create a temporary copy to not impact other tests. - final Path bomFilePath = Files.createTempFile(null, null); - Files.copy(Paths.get(IOUtils.resourceToURL("/unit/bom-invalid.json").toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); - final var bomFile = bomFilePath.toFile(); - - new BomUploadProcessingTask().inform(new BomUploadEvent(project.getUuid(), bomFile)); + new BomUploadProcessingTask().inform(new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-invalid.json"))); assertConditionWithTimeout(() -> kafkaMockProducer.history().size() >= 2, Duration.ofSeconds(5)); assertThat(kafkaMockProducer.history()).satisfiesExactly( event -> assertThat(event.topic()).isEqualTo(KafkaTopics.NOTIFICATION_PROJECT_CREATED.name()), event -> { assertThat(event.topic()).isEqualTo(KafkaTopics.NOTIFICATION_BOM.name()); - final Notification notification = KafkaTestUtil.deserializeValue(KafkaTopics.NOTIFICATION_BOM, event); + final Notification notification = deserializeValue(KafkaTopics.NOTIFICATION_BOM, event); assertThat(notification.getScope()).isEqualTo(SCOPE_PORTFOLIO); assertThat(notification.getGroup()).isEqualTo(GROUP_BOM_PROCESSING_FAILED); assertThat(notification.getLevel()).isEqualTo(LEVEL_ERROR); @@ -181,4 +163,162 @@ public void informWithInvalidBomTest() throws Exception { assertThat(components).isEmpty(); } + @Test + public void informWithBloatedBomTest() throws Exception { + final var project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); + + final var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-bloated.json")); + new BomUploadProcessingTask().inform(bomUploadEvent); + + assertThat(kafkaMockProducer.history()) + .anySatisfy(record -> { + assertThat(deserializeKey(KafkaTopics.NOTIFICATION_BOM, record)).isEqualTo(project.getUuid().toString()); + assertThat(record.topic()).isEqualTo(KafkaTopics.NOTIFICATION_BOM.name()); + final Notification notification = deserializeValue(KafkaTopics.NOTIFICATION_BOM, record); + assertThat(notification.getGroup()).isEqualTo(Group.GROUP_BOM_CONSUMED); + }) + .anySatisfy(record -> { + assertThat(deserializeKey(KafkaTopics.NOTIFICATION_BOM, record)).isEqualTo(project.getUuid().toString()); + assertThat(record.topic()).isEqualTo(KafkaTopics.NOTIFICATION_BOM.name()); + final Notification notification = deserializeValue(KafkaTopics.NOTIFICATION_BOM, record); + assertThat(notification.getGroup()).isEqualTo(Group.GROUP_BOM_PROCESSED); + }) + .noneSatisfy(record -> { + assertThat(record.topic()).isEqualTo(KafkaTopics.NOTIFICATION_BOM.name()); + final Notification notification = deserializeValue(KafkaTopics.NOTIFICATION_BOM, record); + assertThat(notification.getGroup()).isEqualTo(GROUP_BOM_PROCESSING_FAILED); + }); + + final List boms = qm.getAllBoms(project); + assertThat(boms).hasSize(1); + final Bom bom = boms.get(0); + assertThat(bom.getBomFormat()).isEqualTo("CycloneDX"); + assertThat(bom.getSpecVersion()).isEqualTo("1.3"); + assertThat(bom.getBomVersion()).isEqualTo(1); + assertThat(bom.getSerialNumber()).isEqualTo("6d780157-0f8e-4ef1-8e9b-1eb48b2fad6f"); + + qm.getPersistenceManager().refresh(project); + assertThat(project.getGroup()).isNull(); // Not overridden by BOM import + assertThat(project.getName()).isEqualTo("Acme Example"); // Not overridden by BOM import + assertThat(project.getVersion()).isEqualTo("1.0"); // Not overridden by BOM import + assertThat(project.getClassifier()).isEqualTo(Classifier.APPLICATION); + assertThat(project.getPurl()).isNotNull(); + assertThat(project.getPurl().canonicalize()).isEqualTo("pkg:npm/bloated@1.0.0"); + assertThat(project.getDirectDependencies()).isNotNull(); + + // Make sure we ingested all components of the BOM. + final List components = qm.getAllComponents(project); + assertThat(components).hasSize(9056); + + // Assert some basic properties that should be present on all components. + for (final Component component : components) { + assertThat(component.getName()).isNotEmpty(); + assertThat(component.getVersion()).isNotEmpty(); + assertThat(component.getPurl()).isNotNull(); + } + + // Ensure dependency graph has been ingested completely, by asserting on the number leaf nodes of the graph. + // This number can be verified using this Python script: + // + // import json + // with open("bloated.bom.json", "r") as f: + // bom = json.load(f) + // len(list(filter(lambda x: len(x.get("dependsOn", [])) == 0, bom["dependencies"]))) + final long componentsWithoutDirectDependencies = components.stream() + .map(Component::getDirectDependencies) + .filter(Objects::isNull) + .count(); + assertThat(componentsWithoutDirectDependencies).isEqualTo(6378); + + // A VulnerabilityScan should've been initiated properly. + final VulnerabilityScan vulnerabilityScan = qm.getVulnerabilityScan(bomUploadEvent.getChainIdentifier().toString()); + assertThat(vulnerabilityScan).isNotNull(); + assertThat(vulnerabilityScan.getTargetType()).isEqualTo(VulnerabilityScan.TargetType.PROJECT); + assertThat(vulnerabilityScan.getTargetIdentifier()).isEqualTo(project.getUuid()); + assertThat(vulnerabilityScan.getExpectedResults()).isEqualTo(9056); + assertThat(vulnerabilityScan.getReceivedResults()).isZero(); + + // Verify that all vulnerability analysis commands have been sent. + final long vulnAnalysisCommandsSent = kafkaMockProducer.history().stream() + .map(ProducerRecord::topic) + .filter(KafkaTopics.VULN_ANALYSIS_COMMAND.name()::equals) + .count(); + assertThat(vulnAnalysisCommandsSent).isEqualTo(9056); + + // Verify that all repository meta analysis commands have been sent. + final long repoMetaAnalysisCommandsSent = kafkaMockProducer.history().stream() + .map(ProducerRecord::topic) + .filter(KafkaTopics.REPO_META_ANALYSIS_COMMAND.name()::equals) + .count(); + assertThat(repoMetaAnalysisCommandsSent).isEqualTo(9056); + } + + @Test // https://github.com/DependencyTrack/dependency-track/issues/2519 + public void informIssue2519Test() throws Exception { + final var project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); + + // Upload the same BOM again a few times. + // Ensure processing does not fail, and the number of components ingested doesn't change. + for (int i = 0; i < 3; i++) { + var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-issue2519.xml")); + new BomUploadProcessingTask().inform(bomUploadEvent); + + // Make sure processing did not fail. + assertThat(kafkaMockProducer.history()) + .noneSatisfy(record -> { + assertThat(record.topic()).isEqualTo(KafkaTopics.NOTIFICATION_BOM.name()); + final Notification notification = deserializeValue(KafkaTopics.NOTIFICATION_BOM, record); + assertThat(notification.getGroup()).isEqualTo(GROUP_BOM_PROCESSING_FAILED); + }); + + // Ensure the expected amount of components is present. + assertThat(qm.getAllComponents(project)).hasSize(1756); + } + } + + @Test // https://github.com/DependencyTrack/dependency-track/issues/1905 + public void informIssue1905Test() throws Exception { + final var project = qm.createProject("Acme Example", null, "1.0", null, null, null, true, false); + + for (int i = 0; i < 3; i++) { + var bomUploadEvent = new BomUploadEvent(qm.detach(Project.class, project.getId()), createTempBomFile("bom-issue1905.json")); + new BomUploadProcessingTask().inform(bomUploadEvent); + + // Make sure processing did not fail. + assertThat(kafkaMockProducer.history()) + .noneSatisfy(record -> { + assertThat(record.topic()).isEqualTo(KafkaTopics.NOTIFICATION_BOM.name()); + final Notification notification = deserializeValue(KafkaTopics.NOTIFICATION_BOM, record); + assertThat(notification.getGroup()).isEqualTo(GROUP_BOM_PROCESSING_FAILED); + }); + + // Ensure all expected components are present. + // In this particular case, both components from the BOM are supposed to NOT be merged. + assertThat(qm.getAllComponents(project)).satisfiesExactlyInAnyOrder( + component -> { + assertThat(component.getClassifier()).isEqualTo(Classifier.LIBRARY); + assertThat(component.getName()).isEqualTo("cloud.google.com/go/storage"); + assertThat(component.getVersion()).isEqualTo("v1.13.0"); + assertThat(component.getPurl().canonicalize()).isEqualTo("pkg:golang/cloud.google.com/go/storage@v1.13.0?type=package"); + assertThat(component.getSha256()).isNull(); + }, + component -> { + assertThat(component.getClassifier()).isEqualTo(Classifier.LIBRARY); + assertThat(component.getName()).isEqualTo("cloud.google.com/go/storage"); + assertThat(component.getVersion()).isEqualTo("v1.13.0"); + assertThat(component.getPurl().canonicalize()).isEqualTo("pkg:golang/cloud.google.com/go/storage@v1.13.0?goarch=amd64&goos=darwin&type=module"); + assertThat(component.getSha256()).isEqualTo("6a63ef842388f8796da7aacfbbeeb661dc2122b8dffb7e0f29500be07c206309"); + } + ); + } + } + + private static File createTempBomFile(final String testFileName) throws Exception { + // The task will delete the input file after processing it, + // so create a temporary copy to not impact other tests. + final Path bomFilePath = Files.createTempFile(null, null); + Files.copy(Paths.get(resourceToURL("/unit/" + testFileName).toURI()), bomFilePath, StandardCopyOption.REPLACE_EXISTING); + return bomFilePath.toFile(); + } + } diff --git a/src/test/java/org/dependencytrack/util/KafkaTestUtil.java b/src/test/java/org/dependencytrack/util/KafkaTestUtil.java index bf0cae2a4..bcb9f11dd 100644 --- a/src/test/java/org/dependencytrack/util/KafkaTestUtil.java +++ b/src/test/java/org/dependencytrack/util/KafkaTestUtil.java @@ -13,6 +13,10 @@ public final class KafkaTestUtil { private KafkaTestUtil() { } + public static K deserializeKey(final KafkaTopics.Topic topic, final ProducerRecord record) { + return topic.keySerde().deserializer().deserialize(topic.name(), record.key()); + } + public static V deserializeValue(final KafkaTopics.Topic topic, final ProducerRecord record) { return topic.valueSerde().deserializer().deserialize(topic.name(), record.value()); } diff --git a/src/test/java/org/dependencytrack/util/PersistenceUtilTest.java b/src/test/java/org/dependencytrack/util/PersistenceUtilTest.java new file mode 100644 index 000000000..9d9028686 --- /dev/null +++ b/src/test/java/org/dependencytrack/util/PersistenceUtilTest.java @@ -0,0 +1,68 @@ +package org.dependencytrack.util; + +import org.dependencytrack.PersistenceCapableTest; +import org.dependencytrack.model.Project; +import org.junit.Before; +import org.junit.Test; + +import javax.jdo.PersistenceManager; +import javax.jdo.Transaction; + +import static org.assertj.core.api.Assertions.assertThatExceptionOfType; +import static org.assertj.core.api.Assertions.assertThatNoException; +import static org.dependencytrack.util.PersistenceUtil.assertPersistent; + +public class PersistenceUtilTest extends PersistenceCapableTest { + + private PersistenceManager pm; + + @Before + public void setUp() { + pm = qm.getPersistenceManager(); + } + + @Test + public void testAssertPersistentTx() { + final Transaction trx = pm.currentTransaction(); + try { + trx.begin(); + + final var project = new Project(); + project.setName("foo"); + pm.makePersistent(project); + + assertThatNoException() + .isThrownBy(() -> assertPersistent(project, null)); + } finally { + trx.rollback(); + } + } + + @Test + public void testAssertPersistentNonTx() { + final var project = new Project(); + project.setName("foo"); + pm.makePersistent(project); + + assertThatNoException() + .isThrownBy(() -> assertPersistent(project, null)); + } + + @Test + public void testAssertPersistentWhenTransient() { + final var project = new Project(); + assertThatExceptionOfType(IllegalStateException.class) + .isThrownBy(() -> assertPersistent(project, null)); + } + + @Test + public void testAssertPersistentWhenDetached() { + final var project = new Project(); + project.setName("foo"); + pm.makePersistent(project); + + assertThatExceptionOfType(IllegalStateException.class) + .isThrownBy(() -> assertPersistent(pm.detachCopy(project), null)); + } + +} \ No newline at end of file diff --git a/src/test/resources/bom-1.xml b/src/test/resources/unit/bom-1.xml similarity index 100% rename from src/test/resources/bom-1.xml rename to src/test/resources/unit/bom-1.xml diff --git a/src/test/resources/unit/bom-bloated.json b/src/test/resources/unit/bom-bloated.json new file mode 100644 index 000000000..6d9493875 --- /dev/null +++ b/src/test/resources/unit/bom-bloated.json @@ -0,0 +1,378957 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.3", + "serialNumber": "urn:uuid:6d780157-0f8e-4ef1-8e9b-1eb48b2fad6f", + "version": 1, + "metadata": { + "timestamp": "2022-07-29T21:19:37.324Z", + "tools": [ + { + "vendor": "CycloneDX", + "name": "Node.js module", + "version": "3.10.4" + } + ], + "component": { + "type": "application", + "bom-ref": "pkg:npm/bloated@1.0.0", + "name": "bloated", + "version": "1.0.0", + "description": "A ridiculously bloated non-functional project designed to produce a large number of dependencies from which an SBOM can be generated for testing purposes", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/bloated@1.0.0" + } + }, + "components": [ + { + "type": "library", + "bom-ref": "pkg:npm/%40astro-my/sign-request@0.1.1", + "author": "Suhendra Ahmad", + "group": "@astro-my", + "name": "sign-request", + "version": "0.1.1", + "description": "SSO v2 Sign Request", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef7604ff0779c902ee1d3a6d236566163c16c46e0053185531a4da7dd66922a2c2d42ef3da70d460f9dd9b9317a94d544af6a61047364164e00de6242726d938" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/%40astro-my/sign-request@0.1.1" + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn@5.7.4", + "name": "acorn", + "version": "5.7.4", + "description": "ECMAScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43fbe546ec186bb6f42935b073a2f28d73514b186104fe819eedbf71266fd11473017946941a996e57d44b8d96b8ed815d3dc0c07a7118baaf6940f70c74b26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2018 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn@5.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acornjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acornjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acornjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-jsx@3.0.1", + "name": "acorn-jsx", + "version": "3.0.1", + "description": "Alternative, faster React.js JSX parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "014ee99d9920bad8700632a00a0ebdf7c07240d20c8dbb83419f1b6fbf100056703df98a89af00233818fe05a0a828e786df092dd5e607863103429a57ad2771" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by Ingvar Stepanyan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-jsx@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/RReverser/acorn-jsx" + }, + { + "type": "issue-tracker", + "url": "https://github.com/RReverser/acorn-jsx/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/RReverser/acorn-jsx.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn@3.3.0", + "name": "acorn", + "version": "3.3.0", + "description": "ECMAScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43fbe546ec186bb6f42935b073a2f28d73514b186104fe819eedbf71266fd11473017946941a996e57d44b8d96b8ed815d3dc0c07a7118baaf6940f70c74b26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2016 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ternjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ternjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ternjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv@5.5.2", + "author": "Evgeny Poberezkin", + "name": "ajv", + "version": "5.5.2", + "description": "Another JSON Schema Validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "023af821c317abfd9098c904992bf1a9f2cde731a627dda01d701e397ab539e9281f6adf0cdb20743a0bd9fed06910b2ec6fc4e93a71055751b8dada333b461f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ajv@5.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/co@4.6.0", + "name": "co", + "version": "4.6.0", + "description": "generator async control flow goodness", + "hashes": [ + { + "alg": "SHA-512", + "content": "4156f474ce47bc6fae6b18ad9bcc0e365ee396dc7c76a85f537dc372ab4e65c2d25482920c32c38bbfb42db00a8b223c843f6ee369b66315d290c1964e169e71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/co@4.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/co#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/co/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/co.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-deep-equal@1.1.0", + "author": "Evgeny Poberezkin", + "name": "fast-deep-equal", + "version": "1.1.0", + "description": "Fast deep equal", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ee797efced664a095d08b38fd3d9cc8074ce3ec754b73175ce0216af135cacfd6e3648700f69c2d3421b9c8dadb640162b7c6c39d0cdac4625cfb531aff589b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-deep-equal@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/fast-deep-equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/fast-deep-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-json-stable-stringify@2.1.0", + "author": "James Halliday", + "name": "fast-json-stable-stringify", + "version": "2.1.0", + "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "hashes": [ + { + "alg": "SHA-512", + "content": "96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nCopyright (c) 2017 Evgeny Poberezkin\nCopyright (c) 2013 James Halliday\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-json-stable-stringify@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/epoberezkin/fast-json-stable-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-schema-traverse@0.3.1", + "author": "Evgeny Poberezkin", + "name": "json-schema-traverse", + "version": "0.3.1", + "description": "Traverse JSON Schema passing each schema object to callback", + "hashes": [ + { + "alg": "SHA-512", + "content": "e090ff22fce0ecfa16f0dcddac14abdd41700bd98782f23b67acf740606c48780a6914d40e6c99000289a3651b1b591455f4bd592f1b8b7e8de3d535c70e370c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-schema-traverse@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/json-schema-traverse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/json-schema-traverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@2.1.1", + "author": "Evgeny Poberezkin", + "name": "ajv-keywords", + "version": "2.1.1", + "description": "Custom JSON-Schema keywords for Ajv validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "645ced1f35517462c0cc99a9513f4b3452ded58895384ca571a36912eb4cdba3d54c2b4e0fdd7d20c7c3d350a06d1a2e078d8377d6ad8f1d47b1e0b5e4380e64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ajv-keywords@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv-keywords#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv-keywords/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv-keywords.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/align-text@0.1.4", + "author": "Jon Schlinkert", + "name": "align-text", + "version": "0.1.4", + "description": "Align the text in a string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ab4d92d1a66a7ac080b6cedad65bd3238d381229c71f7e015a81b343397f79fdd72311c61989b61379a3a7b724902dc770d73b41a0592f8a252f4cc6dbf4c62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/align-text@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/align-text" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/align-text/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/align-text.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@3.2.2", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "3.2.2", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kind-of@3.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-buffer@1.1.6", + "author": "Feross Aboukhadijeh", + "name": "is-buffer", + "version": "1.1.6", + "description": "Determine if an object is a Buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "35c7402f0a579139b966fbdb93ba303944af56f04a0e028fe7f7b07d71339e64057ece194666a739e2814e34558e46b7405a0de9727ef45dd44aa7c7a93694e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-buffer@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/is-buffer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/is-buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/is-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/longest@1.0.1", + "author": "Jon Schlinkert", + "name": "longest", + "version": "1.0.1", + "description": "Get the longest item in an array.", + "hashes": [ + { + "alg": "SHA-512", + "content": "93ecade67de5e3c254e24f1fb67286e95eeedf6c321f635f2b378cb68f45fd0444d1a9b1cbf2dacb1c25be38e4644233a91fb5f48aed14ef29e6407d41a61416" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/longest@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/longest" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/longest/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/longest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/repeat-string@1.6.1", + "author": "Jon Schlinkert", + "name": "repeat-string", + "version": "1.6.1", + "description": "Repeat the given string n times. Fastest implementation for repeating a string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d5d1dcc260335f462d630836c9ce95bb8cd34346e08e1bf8c8e5cb507062adfdc9590fe61c3d2df22255ae4c93261120bc69ebc2166589cb9c2300580da8deb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/repeat-string@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/repeat-string" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/repeat-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/repeat-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/amdefine@1.0.1", + "author": "James Burke", + "name": "amdefine", + "version": "1.0.1", + "description": "Provide AMD's define() API for declaring modules in the AMD format", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b61f0d13b4d90c26121a6c1c08a2328bf581cee53d27e5e36a589ecbae57a5ff30db7ed429c696a98bcb59b375f51d66bebbe41ec9d1a6cf3354d26d3df9172" + } + ], + "licenses": [ + { + "license": { + "name": "BSD-3-Clause OR MIT", + "text": { + "content": "amdefine is released under two licenses: new BSD, and MIT. You may pick the\nlicense that best suits your development needs. The text of both licenses are\nprovided below.\n\n\nThe \"New\" BSD License:\n----------------------\n\nCopyright (c) 2011-2016, The Dojo Foundation\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the Dojo Foundation nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n\nMIT License\n-----------\n\nCopyright (c) 2011-2016, The Dojo Foundation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/amdefine@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/jrburke/amdefine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jrburke/amdefine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jrburke/amdefine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-escapes@3.2.0", + "author": "Sindre Sorhus", + "name": "ansi-escapes", + "version": "3.2.0", + "description": "ANSI escape codes for manipulating the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "701869adee266be5344f5a0ce5f5e0ec3cb5270ef3cf0bfb96dfc6a02a6bfa10d02686272953cb2f8742bd210532642eace42f4abc13ed22ff0c0961048f7b45" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-escapes@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ansi-escapes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ansi-escapes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ansi-escapes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@2.1.1", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "2.1.1", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@3.2.1", + "author": "Sindre Sorhus", + "name": "ansi-styles", + "version": "3.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "553d1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-styles@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-styles#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-styles/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-styles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-convert@1.9.3", + "author": "Heather Arthur", + "name": "color-convert", + "version": "1.9.3", + "description": "Plain color conversion functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "41f014b5dfaf15d02d150702f020b262dd5f616c52a8088ad9c483eb30c1f0dddca6c10102f471a7dcce1a0e86fd21c7258013f3cfdacff22e0c600bb0d55b1a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011-2016 Heather Arthur \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color-convert@1.9.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color-convert#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color-convert/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color-convert.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-name@1.1.3", + "author": "DY", + "name": "color-name", + "version": "1.1.3", + "description": "A list of color names and its values", + "hashes": [ + { + "alg": "SHA-512", + "content": "74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\nCopyright (c) 2015 Dmitry Ivanov\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/color-name@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dfcreative/color-name" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dfcreative/color-name/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/dfcreative/color-name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/append-transform@1.0.0", + "author": "James Talmage", + "name": "append-transform", + "version": "1.0.0", + "description": "Install a transform to `require.extensions` that always runs last, even if additional extensions are added later.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f4d3da1891e1f253be36892649cd9672c23e104497674d67df68ab8940b69b942675bb3ebf716e3269181c0daa10faec0ec719edd204547307ec34fdab8b483" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/append-transform@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/istanbuljs/append-transform#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/append-transform/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/istanbuljs/append-transform.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/default-require-extensions@2.0.0", + "author": "James Talmage", + "name": "default-require-extensions", + "version": "2.0.0", + "description": "Node's default require extensions as a separate module", + "hashes": [ + { + "alg": "SHA-512", + "content": "0749f6cc3217a732f329ea04a33a2b0d26b5707735b743639b13f4cee0316e2ccd536301a982492985ebac574ab90962a235f29ebc6077b9786a17e0ffe680e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Node.js contributors, James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/default-require-extensions@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/default-require-extensions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/default-require-extensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/default-require-extensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-bom@3.0.0", + "author": "Sindre Sorhus", + "name": "strip-bom", + "version": "3.0.0", + "description": "Strip UTF-8 byte order mark (BOM) from a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdabc03115ce80154d17a9f210498bdc304ad7d891a437282305beb3043e09b1a2bbb963bbab7e264940d4c1f07a85ad69d82de0849552c5cbc83ab7e1d75cc0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-bom@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-bom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-bom/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-bom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/archy@1.0.0", + "author": "James Halliday", + "name": "archy", + "version": "1.0.0", + "description": "render nested hierarchies `npm ls` style with unicode pipes", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e0fbd4700a0ff4a77dad78a74630f4cf9d55ca0f4c370df1e71537e2728cec020b2fab65de9cf26afcc629cf343fbfcceb3b2267e83b37f550382480f015fab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/archy@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-archy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-archy/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-archy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/argparse@1.0.10", + "name": "argparse", + "version": "1.0.10", + "description": "Very powerful CLI arguments parser. Native port of argparse - python's options parsing library", + "hashes": [ + { + "alg": "SHA-512", + "content": "a39468cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2012 by Vitaly Puzrin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/argparse@1.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/argparse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/argparse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/argparse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sprintf-js@1.0.3", + "author": "Alexandru Marasteanu", + "name": "sprintf-js", + "version": "1.0.3", + "description": "JavaScript sprintf implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "544d123951070a4ed073cba5916c379ed0335eea9fed2da5bf041a0cb46751e20468a35027357a07098b2a13aa4fad5a1a17d432b5de68193ea03182cef85cba" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2007-2014, Alexandru Marasteanu \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n* Neither the name of this software nor the names of its contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/sprintf-js@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/alexei/sprintf.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/alexei/sprintf.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/alexei/sprintf.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-union@1.0.2", + "author": "Sindre Sorhus", + "name": "array-union", + "version": "1.0.2", + "description": "Create an array of unique values, in order, from the input arrays", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f1afa4098ff45d53f8426818ce7f15beaba972b9513a245588ac0529b8e3a1a0926843df5c527de2811687541e4ff56ae015537415f02b337c7472e78e53c9e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-union@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/array-union#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/array-union/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/array-union.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-uniq@1.0.3", + "author": "Sindre Sorhus", + "name": "array-uniq", + "version": "1.0.3", + "description": "Create an array without duplicates", + "hashes": [ + { + "alg": "SHA-512", + "content": "30d85ae01590e896f0845863d3760ae79d9fedc6f7033a04f12cde96380286f2f5765dc872f8205d5cf50e2973c926640a36be097b996dd5bbc804dc8569fcfd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-uniq@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/array-uniq#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/array-uniq/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/array-uniq.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arrify@1.0.1", + "author": "Sindre Sorhus", + "name": "arrify", + "version": "1.0.1", + "description": "Convert a value to an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc26337b1f4cf451908c218c1b28baff7d5cf0625b81bd2a1b2af1e475b13ddd1a0b0878701d988cc6f65dff54ba8a20accae53bd713aa7079ac8e461d94dc50" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arrify@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/arrify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/arrify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/arrify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/asn1@0.2.6", + "author": "Joyent", + "name": "asn1", + "version": "0.2.6", + "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b1fc5c4f9f43038dec89ee2ff2a07185b7f117e8bc8d6f148484f3d73833cbf8a07454f93ce9461f2f494c772f8a0a7bfe7e6bc8cf24b068ae423b0a956d64d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Mark Cavage, All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/asn1@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-asn1#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-asn1/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joyent/node-asn1.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/safer-buffer@2.1.2", + "author": "Nikita Skovoroda", + "name": "safer-buffer", + "version": "2.1.2", + "description": "Modern Buffer API polyfill without footguns", + "hashes": [ + { + "alg": "SHA-512", + "content": "619a372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Nikita Skovoroda \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/safer-buffer@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ChALkeR/safer-buffer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ChALkeR/safer-buffer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ChALkeR/safer-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/assert-plus@1.0.0", + "author": "Mark Cavage", + "name": "assert-plus", + "version": "1.0.0", + "description": "Extra assertions on top of node's assert module", + "hashes": [ + { + "alg": "SHA-512", + "content": "35f27853304271018b0e542aee71f11feb6fde4c99d211d0a85e413ba27bb4d25e3f9768d6594fafc759f331e89df840bb43c701d3244a8fbca34c3183d9595b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/assert-plus@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mcavage/node-assert-plus#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mcavage/node-assert-plus/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mcavage/node-assert-plus.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/assertion-error@1.1.0", + "author": "Jake Luer", + "name": "assertion-error", + "version": "1.1.0", + "description": "Error constructor for test and validation frameworks that implements standardized AssertionError specification.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e0b1a35dbb3fa776f1b216ddee4ae5aabf2e250a72098a8beda2e40de4964738a092d90ba111d6dc407161564b33d8dd94f615c9a3ca1d1bb113c969447ae0f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/assertion-error@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/assertion-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/assertion-error/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/assertion-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async@1.5.2", + "author": "Caolan McMahon", + "name": "async", + "version": "1.5.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d2560a1b938aefeb547d3d4483b58b7b98f541da8971351e51589700b07ebbebf79fd756d4670beeefe44662b61ab957433dc3b9d7dbfaf304615d0b71b15f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2014 Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async@1.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/caolan/async#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/caolan/async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/caolan/async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/asynckit@0.4.0", + "author": "Alex Indigo", + "name": "asynckit", + "version": "0.4.0", + "description": "Minimal async jobs utility library, with streams support", + "hashes": [ + { + "alg": "SHA-512", + "content": "39e8bd387e2d461d18a94dc6c615fbf5d33f9b0560bdb64969235a464f9bb21923d12e5c7c772061a92b7818eb1f06ad5ca6f3f88a087582f1aca8a6d8c8d6d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Alex Indigo\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/asynckit@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/alexindigo/asynckit#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/alexindigo/asynckit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/alexindigo/asynckit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aws-sign2@0.7.0", + "author": "Mikeal Rogers", + "name": "aws-sign2", + "version": "0.7.0", + "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3c91c1aa9d87ff6268e84617f1caef822f106352d1cb5cb5d7fef51fc7d9762d8cc6ddcd66eb59eba72154648eb3792f8b8bfc1630c89d0fd2a0aeab46ab798" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/aws-sign2@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/aws-sign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/aws-sign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/aws-sign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aws4@1.11.0", + "author": "Michael Hart", + "name": "aws4", + "version": "1.11.0", + "description": "Signs and prepares requests using AWS Signature Version 4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c61d51977e21e858b50c2d9658a7f151356a46c367afa2ec2b3dbe85fc03c502569abc7cf9cef295aa8131c1df975535af676c89f3af297dcb42e2cd67e5d2bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Michael Hart (michael.hart.au@gmail.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aws4@1.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mhart/aws4#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mhart/aws4/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mhart/aws4.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-code-frame@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-code-frame", + "version": "6.26.0", + "description": "Generate errors that contain a code frame that point to source locations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ea60c47675f746316fa17742146763f02be7c678590ec59274c18f89690007cedd59c7c2dcbe98990f63621a4106f2ac7409f9003abe71b7be9dd5ef2f1bdd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-code-frame@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chalk@1.1.3", + "name": "chalk", + "version": "1.1.3", + "description": "Terminal string styling done right. Much color.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chalk@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/chalk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/chalk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/chalk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@2.2.1", + "author": "Sindre Sorhus", + "name": "ansi-styles", + "version": "2.2.1", + "description": "ANSI escape codes for styling strings in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "553d1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-styles@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-styles#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-styles/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-styles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@1.0.5", + "author": "Sindre Sorhus", + "name": "escape-string-regexp", + "version": "1.0.5", + "description": "Escape RegExp special characters", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdb468ac1e455105af95ad7a53c47faa06852326b6a86cf00eb366099b982ab6dd494306e88d5908641179f911561b8e9081959deec1437e4349fa35aaf26a16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/escape-string-regexp@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/escape-string-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-ansi@2.0.0", + "author": "Sindre Sorhus", + "name": "has-ansi", + "version": "2.0.0", + "description": "Check if a string has ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bcbc127c0f0502c75f6f866eeeae14ee52caf8fc8c8fea5e15ccd403bfeaf21d039b5b74d34e9f7207af16a588117b66db686b99fec7bbe08a857959cc9cb66" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-ansi@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@3.0.1", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "3.0.1", + "description": "Strip ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-ansi@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@2.0.0", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "2.0.0", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-color@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esutils@2.0.3", + "name": "esutils", + "version": "2.0.3", + "description": "utility box for ECMAScript language tools", + "hashes": [ + { + "alg": "SHA-512", + "content": "915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esutils@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/esutils" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/esutils/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/esutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-tokens@3.0.2", + "author": "Simon Lydell", + "name": "js-tokens", + "version": "3.0.2", + "description": "A regex that tokenizes JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4634dcb83e318edb614246961fb745947f392fe41a56d4a83b219d67783a1c5852f5d14d0df2f2aa09b63457b65fa710a5e166b74e39d85263146e546a6784c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2016, 2017 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-tokens@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/js-tokens#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/js-tokens/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/js-tokens.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babylon@7.0.0-beta.47", + "author": "Sebastian McKenzie", + "name": "babylon", + "version": "7.0.0-beta.47", + "description": "A JavaScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "fabab672be060e1b53a04cca143e8a659303057863140afd2633f0f69029a590027845aa34cdbde23f8d741ce4487617c33cc19958d9de71152653a16d1da039" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babylon@7.0.0-beta.47", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babylon" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/balanced-match@1.0.2", + "author": "Julian Gruber", + "name": "balanced-match", + "version": "1.0.2", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "hashes": [ + { + "alg": "SHA-512", + "content": "de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/balanced-match@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/balanced-match" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/balanced-match.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bcrypt-pbkdf@1.0.2", + "name": "bcrypt-pbkdf", + "version": "1.0.2", + "description": "Port of the OpenBSD bcrypt_pbkdf function to pure JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9e1485ed3f8312a22e8d2ea3b5d967ea011596b822a2d919fff6124b126b41e724cdafd0ea1569094427f6a92856ccf7803119ce802aead2c83f28bbf9112f7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "The Blowfish portions are under the following license:\n\nBlowfish block cipher for OpenBSD\nCopyright 1997 Niels Provos \nAll rights reserved.\n\nImplementation advice by David Mazieres .\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n3. The name of the author may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\nIN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\nNOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n\nThe bcrypt_pbkdf portions are under the following license:\n\nCopyright (c) 2013 Ted Unangst \n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n\n\nPerformance improvements (Javascript-specific):\n\nCopyright 2016, Joyent Inc\nAuthor: Alex Wilson \n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bcrypt-pbkdf@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-bcrypt-pbkdf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-bcrypt-pbkdf/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-bcrypt-pbkdf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tweetnacl@0.14.5", + "author": "TweetNaCl-js contributors", + "name": "tweetnacl", + "version": "0.14.5", + "description": "Port of TweetNaCl cryptographic library to JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "2975c515d01b15763881e148c28c8d2be7f96756fbb307d70017cbec75c29a821630a5377664b6ebaef603811e42d0f32cacbb49799f06ee7526896f10ac2d18" + } + ], + "licenses": [ + { + "license": { + "id": "Unlicense", + "text": { + "content": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \n" + } + } + } + ], + "purl": "pkg:npm/tweetnacl@0.14.5", + "externalReferences": [ + { + "type": "website", + "url": "https://tweetnacl.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dchest/tweetnacl-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dchest/tweetnacl-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/brace-expansion@1.1.11", + "author": "Julian Gruber", + "name": "brace-expansion", + "version": "1.1.11", + "description": "Brace expansion as known from sh/bash", + "hashes": [ + { + "alg": "SHA-512", + "content": "882b8f1c3160ac75fb1f6bc423fe71a73d3bcd21c1d344e9ba0aa1998b5598c3bae75f260ae44ca0e60595d101974835f3bb9fa3375a1e058a71815beb5a8688" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013 Julian Gruber \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/brace-expansion@1.1.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/brace-expansion" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/brace-expansion/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/brace-expansion.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/concat-map@0.0.1", + "author": "James Halliday", + "name": "concat-map", + "version": "0.0.1", + "description": "concatenative mapdashery", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/concat-map@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-concat-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-concat-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/node-concat-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browser-stdout@1.3.1", + "author": "kumavis", + "name": "browser-stdout", + "version": "1.3.1", + "description": "`process.stdout` in your browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa1015235f80bf65fba9e94e7c0218c1738da2877a5e5644fdf5da052996fd3e52ccb0260a0ce2f9e89613b7d4bdb1da78d0501f5dd47ed8e95f1b1f2e432983" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2018 kumavis\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browser-stdout@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kumavis/browser-stdout#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kumavis/browser-stdout/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kumavis/browser-stdout.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-from@1.1.2", + "name": "buffer-from", + "version": "1.1.2", + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", + "hashes": [ + { + "alg": "SHA-512", + "content": "13e5d0091c126da6a20a1b6fea4e83c2073e6f1f81b3abee2891c7979928c7f05a29b8625f3a903b02b870edb6c84946a763829a3c15853dc79b18323c69c97d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016, 2018 Linus Unnebäck\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer-from@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/buffer-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/buffer-from/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/buffer-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/builtin-modules@1.1.1", + "author": "Sindre Sorhus", + "name": "builtin-modules", + "version": "1.1.1", + "description": "List of the Node.js builtin modules", + "hashes": [ + { + "alg": "SHA-512", + "content": "c315c27659701a12369020b4327bd31984ccbe75594efaa0ca99224c8f0f6b9b5ccf68ba56ab2ac181a0ab05e38bee11802ce6b3a11a8c4e08c62507e871fc9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/builtin-modules@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/builtin-modules#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/builtin-modules/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/builtin-modules.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caching-transform@2.0.0", + "name": "caching-transform", + "version": "2.0.0", + "description": "Wraps a transform and provides caching", + "hashes": [ + { + "alg": "SHA-512", + "content": "b537de98698559eeca67728de95b1281065b77d060a3b038d30969e0f4ec249bc5bb86009c40b96277dd88aaba561da2f5724b9c0f67f0e5c3e3aa2b5699cf33" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/caching-transform@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/caching-transform#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/caching-transform/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/caching-transform.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/make-dir@1.3.0", + "author": "Sindre Sorhus", + "name": "make-dir", + "version": "1.3.0", + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "db0df547b489b6278926742d19ced154bd92b4cdaf19855fa943af503c47e9b0ba6894f13f14c5d069c8802caeeed8e872489458061045bc5aeef2a7df8b39b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/make-dir@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/make-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/make-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/make-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pify@3.0.0", + "author": "Sindre Sorhus", + "name": "pify", + "version": "3.0.0", + "description": "Promisify a callback-style function", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9d82c018f9f4e7befee423b69ac5bab058d6f4007881d2a04ef3d3d928f9284e618e81d6eb1c3283fb40765f8b937c9fc54f5474f6bf604ec8d48cd268b6ea2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pify@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/md5-hex@2.0.0", + "author": "Sindre Sorhus", + "name": "md5-hex", + "version": "2.0.0", + "description": "Create a MD5 hash with hex encoding", + "hashes": [ + { + "alg": "SHA-512", + "content": "d072dfcc94d9efbd3b54134cd7276be6c4dbf8864b866538bb64d503e11e9df9ff11de36fe09f5d2c99b00f8ae126fe33608ef58a52230d8a1a8943a7e5bacf7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/md5-hex@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/md5-hex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/md5-hex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/md5-hex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/md5-o-matic@0.1.1", + "author": "Trent Millar", + "name": "md5-o-matic", + "version": "0.1.1", + "description": "Fast and simple MD5 hashing utility with zero module dependencies. View MD5 Shootout results, http://jsperf.com/md5-shootout/39", + "hashes": [ + { + "alg": "SHA-512", + "content": "401252169b1e757525fcb82ce3249d0765c2cd411c277ba3a5b6a07590a445a608682d24167203f2385cf38284895bfa74d16d22b996edbaa8c34943c60262e8" + } + ], + "purl": "pkg:npm/md5-o-matic@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/trentmillar/md5-o-matic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/trentmillar/md5-o-matic/issues" + }, + { + "type": "vcs", + "url": "git://github.com/trentmillar/md5-o-matic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/package-hash@2.0.0", + "author": "Mark Wubben", + "name": "package-hash", + "version": "2.0.0", + "description": "Generates a hash for an installed npm package, useful for salting caches", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c7e3fd5cc4b580db0aefdae0f077c1b8d52d065ce9c51bdbd1ab1e01ee2016793d7d98403d4771145d9b59fc8f3b6e8187f43365f1f31457cd9dbec47772478" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2016-2017, Mark Wubben (novemberborn.net)\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/package-hash@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/package-hash#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/package-hash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/package-hash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/graceful-fs@4.2.10", + "name": "graceful-fs", + "version": "4.2.10", + "description": "A drop-in replacement for fs, making various improvements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f41ca1b2c4767cf56c3598f8efca9451b29f98bd3eb790435728d286dc9964b88aed90c002b1457e8a723938f4334e70136b493e2b00e224e79d79766283ef38" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2011-2022 Isaac Z. Schlueter, Ben Noordhuis, and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/graceful-fs@4.2.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-graceful-fs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-graceful-fs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/node-graceful-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.flattendeep@4.4.0", + "author": "John-David Dalton", + "name": "lodash.flattendeep", + "version": "4.4.0", + "description": "The lodash method `_.flattenDeep` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b876891628719897045f7913e08db7001a8a29a949ff30eb0e0d25b05b5cd61fb7bb0e3d4882796deca1c79131551b62dc0bcaa0e2678088fbc73de8ca53dd59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.flattendeep@4.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/release-zalgo@1.0.0", + "author": "Mark Wubben", + "name": "release-zalgo", + "version": "1.0.0", + "description": "Helps you write code with promise-like chains that can run both synchronously and asynchronously", + "hashes": [ + { + "alg": "SHA-512", + "content": "8140321d51cf3c2e7076a5ff2c6e0b5ad458b608f1c97efca1a9c535330cc8511f3aa742e78b37784f368a6b9629b39ea9886dd82acd7fae106fcbe09a6b5918" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2017, Mark Wubben (novemberborn.net)\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/release-zalgo@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/release-zalgo#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/release-zalgo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/release-zalgo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-error@4.1.1", + "author": "Ben Youngblood", + "name": "es6-error", + "version": "4.1.1", + "description": "Easily-extendable error for use with ES6 classes", + "hashes": [ + { + "alg": "SHA-512", + "content": "526ffe17132bf422125a1d1b8b966fd22383fb8705879a8b7a4b35aa1028a4a540270dddae029b2b24a2929ef01a10cbd073de6a36b43f950b66bc4b92789456" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Youngblood\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-error@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bjyoungblood/es6-error" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bjyoungblood/es6-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bjyoungblood/es6-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@2.4.3", + "author": "Rebecca Turner", + "name": "write-file-atomic", + "version": "2.4.3", + "description": "Write files in an atomic fashion w/configurable ownership", + "hashes": [ + { + "alg": "SHA-512", + "content": "19a1131f9c30b17f86727ce13e029c2a327a3360aadff899a755b263f5f5092aab5be8d534cf58ec3f040b6b0ce191bf57cc199529e226708a58f981600b9c45" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/write-file-atomic@2.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/write-file-atomic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/write-file-atomic/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/iarna/write-file-atomic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/imurmurhash@0.1.4", + "author": "Jens Taylor", + "name": "imurmurhash", + "version": "0.1.4", + "description": "An incremental implementation of MurmurHash3", + "hashes": [ + { + "alg": "SHA-512", + "content": "2665cc67ac2ebc398b88712697dca4cea3ba97015ba1fd061b822470668435d0910c398c5679f2eece47b0880709b6aad30d8cc8f843aa48535204b62d4d8f1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/imurmurhash@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jensyt/imurmurhash-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jensyt/imurmurhash-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jensyt/imurmurhash-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/signal-exit@3.0.7", + "author": "Ben Coe", + "name": "signal-exit", + "version": "3.0.7", + "description": "when you want to fire an event no matter how a process exits.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c270f6644fa5f923c2feea12d2f5de13d2f5fb4c2e68ca8a95fcfd00c528dfc26cc8b48159215c1d1d51ae2eb62d9735daf2ebd606f78e5ee2c10860c2901b19" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "The ISC License\n\nCopyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/signal-exit@3.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tapjs/signal-exit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tapjs/signal-exit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tapjs/signal-exit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caller-path@0.1.0", + "author": "Sindre Sorhus", + "name": "caller-path", + "version": "0.1.0", + "description": "Get the path of the caller module", + "hashes": [ + { + "alg": "SHA-512", + "content": "509884d68b635cf179ff1f93df34e7485893384989a064c3f47981a319c2530868eb56b6792367fd5c2dc2e2010c0a364843afd4027b0112398029a88452eefe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/caller-path@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/caller-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/caller-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/caller-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/callsites@0.2.0", + "author": "Sindre Sorhus", + "name": "callsites", + "version": "0.2.0", + "description": "Get callsites from the V8 stack trace API", + "hashes": [ + { + "alg": "SHA-512", + "content": "66fe039ecf486d75e63e48114548c06894207cde315f9a7af9140585652ab1c76fbcadb12bf64bf1bdc85c826c8fee2c0fe7f6e0dc275b2d8163c009f36241d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/callsites@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/callsites#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/callsites/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/callsites.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase@4.1.0", + "author": "Sindre Sorhus", + "name": "camelcase", + "version": "4.1.0", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "hashes": [ + { + "alg": "SHA-512", + "content": "17102fec7a47ad76e1dda3e8e28daac476b2da590b637c79330dca784e0a404f32b157f3896791643c1c8dabafc01486102fe75d43f3672f337a1e07a24a8e9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caseless@0.12.0", + "author": "Mikeal Rogers", + "name": "caseless", + "version": "0.12.0", + "description": "Caseless object set/get/has, very useful when working with HTTP headers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2d605ca27da15f19a72888e6e325e828964c12538c503466d581488d6155316d0db1da552c16f638855815cc68887ba58b38fab27165c0e3497e3d6b31b6153" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n1. Definitions.\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/caseless@0.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/caseless#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/caseless/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/caseless.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/center-align@0.1.3", + "author": "Jon Schlinkert", + "name": "center-align", + "version": "0.1.3", + "description": "Center-align the text in a string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "05acf768d7b681dd8b3f6aa4e54fac0e4fe6e284aec120dc05f6b24c24c1a16a5f2063b95c5c4f9a320b4082383468998c3e83a0323a91fee029ac647fbb3755" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/center-align@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/center-align" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/center-align/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/center-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lazy-cache@1.0.4", + "author": "Jon Schlinkert", + "name": "lazy-cache", + "version": "1.0.4", + "description": "Cache requires to be lazy-loaded when needed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "444da0d1be55199b0e08538280fee899345816ac9d999901c25e68367435943602e7bbb23bd2aa367355c53ec23921d3c6b44259570054e71b8e4fadbe1feb81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lazy-cache@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/lazy-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/lazy-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/lazy-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chalk@2.4.2", + "name": "chalk", + "version": "2.4.2", + "description": "Terminal string styling done right", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chalk@2.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/chalk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/chalk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/chalk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@5.5.0", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "5.5.0", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-color@5.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-flag@3.0.0", + "author": "Sindre Sorhus", + "name": "has-flag", + "version": "3.0.0", + "description": "Check if argv has a specific flag", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0a25fd7e71e401af848c92f427043343b5fe135e95615466ad7aed2df75f1b977d059db1369b8bcd2d7f9559efdda6395bf87ba0198cd6eee4171fdf073c463" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-flag@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-flag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-flag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chardet@0.4.2", + "author": "Dmitry Shirokov", + "name": "chardet", + "version": "0.4.2", + "description": "Character detector", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ff4e88fb7f5cfdf07876718a36055afce44a48456a948bbaed4521b187f72a523aab9c97bd97d504ec8506776bd0da9fa44872e44b339b40f64f2d40ba4d0c2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2017 Dmitry Shirokov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chardet@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/runk/node-chardet" + }, + { + "type": "issue-tracker", + "url": "http://github.com/runk/node-chardet/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/runk/node-chardet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/check-error@1.0.2", + "author": "Jake Luer", + "name": "check-error", + "version": "1.0.2", + "description": "Error comparison and information related utility for node and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "06b807a56f4d511420ce83728dfab45aee9514ee83ec864498935db6036aa73186f11b8d147b768d0c56940b381cc7b5d7d721067bfedf8b32119b5ce8884bb4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Jake Luer (http://alogicalparadox.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/check-error@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/check-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/check-error/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/check-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/circular-json@0.3.3", + "author": "Andrea Giammarchi", + "name": "circular-json", + "version": "0.3.3", + "description": "JSON does not handle circular references. This version does", + "hashes": [ + { + "alg": "SHA-512", + "content": "5192b7341c7631c6be6f92ec1bb6d8d7cde91d6b79635c6db383f73f3ec4353c0656724e5166d16f7a1c8ef5fb871f6dabfc9301d7255e6f6c677f2036e7a6e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (C) 2013-2017 by Andrea Giammarchi - @WebReflection\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/circular-json@0.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WebReflection/circular-json" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WebReflection/circular-json/issues" + }, + { + "type": "vcs", + "url": "git://github.com/WebReflection/circular-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-cursor@2.1.0", + "author": "Sindre Sorhus", + "name": "cli-cursor", + "version": "2.1.0", + "description": "Toggle the CLI cursor", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2580acfc2e60916196500e94724f69b9aca274f139d4e2d47d145156dabc69c51d45cd68b83d0fcd7f238372101ab4769482748f55cc7f479c3a36e4c1cc58b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-cursor@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/cli-cursor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/cli-cursor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/cli-cursor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/restore-cursor@2.0.0", + "author": "Sindre Sorhus", + "name": "restore-cursor", + "version": "2.0.0", + "description": "Gracefully restore the CLI cursor on exit", + "hashes": [ + { + "alg": "SHA-512", + "content": "e88cc92ee1a2e3e475e2fc1a8031d7f89ad798f56d3e99f899f7c327551d47bfc4766f3b7e5eb28bc98c04856f16d25a35352f8ee821996e21c0b8511bb802d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/restore-cursor@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/restore-cursor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/restore-cursor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/restore-cursor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/onetime@2.0.1", + "author": "Sindre Sorhus", + "name": "onetime", + "version": "2.0.1", + "description": "Ensure a function is only called once", + "hashes": [ + { + "alg": "SHA-512", + "content": "a32c8fa6231a28046fbdc822a7e255fbbcdc8b92fc0f55bd459233da5d68d3c00cde97eca62b555a73edde6cc77013e9d76a18313cb4a6aac5b3f0be9b7130b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/onetime@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/onetime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/onetime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/onetime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mimic-fn@1.2.0", + "author": "Sindre Sorhus", + "name": "mimic-fn", + "version": "1.2.0", + "description": "Make a function mimic another one", + "hashes": [ + { + "alg": "SHA-512", + "content": "8dff38bb1cf08ae88854a88e2e97d893b378e934b2f2e6d3a279a7798f6fae91cd027a74401b76071595f5d3b7fe3f81a1501bf9ae46e980cf5b73391ce74c59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mimic-fn@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/mimic-fn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/mimic-fn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/mimic-fn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-width@2.2.1", + "author": "Ilya Radchenko", + "name": "cli-width", + "version": "2.2.1", + "description": "Get stdout window width, with two fallbacks, tty and then a default.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1913160f1a4e07a0e0936139528fb778406fb4e3a58a6326a5b1622ae2c59d0cd80dabed2c56372b9a276b8d6380dfd675166d1bbbadb954954cbe076d91c693" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Ilya Radchenko \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-width@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/knownasilya/cli-width" + }, + { + "type": "issue-tracker", + "url": "https://github.com/knownasilya/cli-width/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/knownasilya/cli-width.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cliui@4.1.0", + "author": "Ben Coe", + "name": "cliui", + "version": "4.1.0", + "description": "easily create complex multi-column command-line-interfaces", + "hashes": [ + { + "alg": "SHA-512", + "content": "e051be4521bd0cbeee130454657667dd24b7e038833dfccfd153a2130b545a513e011d84220fa14b2beb2205147e176047f52401e5b640781e3fe856ad7b3b8d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cliui@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/cliui#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/cliui/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/cliui.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string-width@2.1.1", + "author": "Sindre Sorhus", + "name": "string-width", + "version": "2.1.1", + "description": "Get the visual width of a string - the number of columns required to display it", + "hashes": [ + { + "alg": "SHA-512", + "content": "9cea87e7d75e0aaf52447971ab5030f39267b78c3a2af2caa9656293aa00f599255cb3483a5aa0e05db2ad3d4c55a4e302abd5c1d7de67bc3b682bc90fbba093" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/string-width@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/string-width#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/string-width/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/string-width.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-fullwidth-code-point@2.0.0", + "author": "Sindre Sorhus", + "name": "is-fullwidth-code-point", + "version": "2.0.0", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "hashes": [ + { + "alg": "SHA-512", + "content": "547b2400a60cf117d2157c1e7b9b7971b3793d97aad56ae1eaa7796e4ca25c87fa51070deb0fc0d1e5ccf6beadf1df8660e87ea3a6618849dbf3c2cdfd8f26db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-fullwidth-code-point@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@4.0.0", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "4.0.0", + "description": "Strip ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-ansi@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@3.0.1", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "3.0.1", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wrap-ansi@2.1.0", + "author": "Sindre Sorhus", + "name": "wrap-ansi", + "version": "2.1.0", + "description": "Wordwrap a string with ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc068468333de3a81b3691f9a4b54d47ebd7da1b7a9f406ddc65f0541d40b80a99a2c3af1cd1773fbc039e1f0a2e44aa814874ba1efb95eecec20a33f99f5707" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wrap-ansi@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/wrap-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/wrap-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/wrap-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string-width@1.0.2", + "author": "Sindre Sorhus", + "name": "string-width", + "version": "1.0.2", + "description": "Get the visual width of a string - the number of columns required to display it", + "hashes": [ + { + "alg": "SHA-512", + "content": "9cea87e7d75e0aaf52447971ab5030f39267b78c3a2af2caa9656293aa00f599255cb3483a5aa0e05db2ad3d4c55a4e302abd5c1d7de67bc3b682bc90fbba093" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/string-width@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/string-width#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/string-width/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/string-width.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/code-point-at@1.1.0", + "author": "Sindre Sorhus", + "name": "code-point-at", + "version": "1.1.0", + "description": "ES2015 `String#codePointAt()` ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "4690152900394fadf1123ebf82221b504b59c09e1414873766dbc4922694111ca5a9ef316f922fa9c80ebab64b6a1bfddc22ca7f1730e5823e0d9714051c8b5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/code-point-at@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/code-point-at#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/code-point-at/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/code-point-at.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-fullwidth-code-point@1.0.0", + "author": "Sindre Sorhus", + "name": "is-fullwidth-code-point", + "version": "1.0.0", + "description": "Check if the character represented by a given Unicode code point is fullwidth", + "hashes": [ + { + "alg": "SHA-512", + "content": "547b2400a60cf117d2157c1e7b9b7971b3793d97aad56ae1eaa7796e4ca25c87fa51070deb0fc0d1e5ccf6beadf1df8660e87ea3a6618849dbf3c2cdfd8f26db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-fullwidth-code-point@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-fullwidth-code-point/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-fullwidth-code-point.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/number-is-nan@1.0.1", + "author": "Sindre Sorhus", + "name": "number-is-nan", + "version": "1.0.1", + "description": "ES2015 Number.isNaN() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "e236ed657340b1f65b0078a2aa32cf0620a5d7a7444b5cc8e07a73cf1c3ad5393e96817eb010c12b1d4808a28ac08a90eccd26167d539a437b7ae4a771680789" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/number-is-nan@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/number-is-nan#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/number-is-nan/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/number-is-nan.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-name@1.1.4", + "author": "DY", + "name": "color-name", + "version": "1.1.4", + "description": "A list of color names and its values", + "hashes": [ + { + "alg": "SHA-512", + "content": "74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\nCopyright (c) 2015 Dmitry Ivanov\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/color-name@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/colorjs/color-name" + }, + { + "type": "issue-tracker", + "url": "https://github.com/colorjs/color-name/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/colorjs/color-name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/combined-stream@1.0.8", + "author": "Felix Geisendörfer", + "name": "combined-stream", + "version": "1.0.8", + "description": "A stream that emits multiple other streams one after another.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1503783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Debuggable Limited \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/combined-stream@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-combined-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-combined-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/felixge/node-combined-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/delayed-stream@1.0.0", + "author": "Felix Geisendörfer", + "name": "delayed-stream", + "version": "1.0.0", + "description": "Buffers events from a stream until you are ready to handle them.", + "hashes": [ + { + "alg": "SHA-512", + "content": "672483ecd7fdd5a2c1d11c4be0a1ab28705797b11db350c098475ca156b05e72c3ed20e1a4d82db88236680920edaed04b8d63c4f499d7ba7855d1a730793731" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Debuggable Limited \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/delayed-stream@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-delayed-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-delayed-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/felixge/node-delayed-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.20.3", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.20.3", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.20.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commondir@1.0.1", + "author": "James Halliday", + "name": "commondir", + "version": "1.0.1", + "description": "compute the closest common parent for file paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bda40870d236b511d6f91957481759a3670fc0488d0095285733cdd45067b60d5af94dd00f100d4e03c9bf83ccd6a7dc7a3a7ee0aae7d8f856ad0db0b730342" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 James Halliday (mail@substack.net)\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/commondir@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-commondir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-commondir/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-commondir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-emitter@1.3.0", + "name": "component-emitter", + "version": "1.3.0", + "description": "Event emitter", + "hashes": [ + { + "alg": "SHA-512", + "content": "45ddec7ba401fac3b54f0a998ec710aeeae910f21f3b4ff26274a29fa43fac3de63aeb47bd4ac202126e6f7afdd2e35bf9211206e134418a01f7461d7dab6c46" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\r\n\r\nCopyright (c) 2014 Component contributors \r\n\r\nPermission is hereby granted, free of charge, to any person\r\nobtaining a copy of this software and associated documentation\r\nfiles (the \"Software\"), to deal in the Software without\r\nrestriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the\r\nSoftware is furnished to do so, subject to the following\r\nconditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\r\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\r\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\r\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\r\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\r\nOTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/component-emitter@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/emitter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/emitter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/emitter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/concat-stream@1.6.2", + "author": "Max Ogden", + "name": "concat-stream", + "version": "1.6.2", + "description": "writable stream that concatenates strings or binary data and calls a callback with the result", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbb1c18212718e266d224dd872f9ffe246c993fd6e66e2457ee3c49ece8b684be9bc6d5fd214de6bc96296ba2eca8f6655cd8659d70467c38ba0699200396b0b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 Max Ogden\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/concat-stream@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/maxogden/concat-stream#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/maxogden/concat-stream/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/maxogden/concat-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inherits@2.0.4", + "name": "inherits", + "version": "2.0.4", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "hashes": [ + { + "alg": "SHA-512", + "content": "93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/inherits@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/inherits#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/inherits/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/inherits.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@2.3.7", + "name": "readable-stream", + "version": "2.3.7", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@2.3.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-util-is@1.0.3", + "author": "Isaac Z. Schlueter", + "name": "core-util-is", + "version": "1.0.3", + "description": "The `util.is*` functions introduced in Node v0.12.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65006f8b50dca49e060ea6a78ee719d878f7c043b9a590d2f3d0566e472bbddc64b09a2bc140c365a997f65745929f5ac369660432e090e6c40380d6349f4561" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-util-is@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/core-util-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/core-util-is/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/core-util-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isarray@1.0.0", + "author": "Julian Gruber", + "name": "isarray", + "version": "1.0.0", + "description": "Array#isArray for older browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "54b82121634ce842d0ce8ef3c26720d0d99357258a623bc878cf37ca3a74c110d39949eb33aefc7d06dc281a3a9f6089105d2cce81bfff2b60f932a56bcf402d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/isarray@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/isarray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/isarray/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/isarray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/process-nextick-args@2.0.1", + "name": "process-nextick-args", + "version": "2.0.1", + "description": "process.nextTick but always with args", + "hashes": [ + { + "alg": "SHA-512", + "content": "de8b943a9421b60adb39ad7b27bfaec4e4e92136166863fbfc0868477f80fbfd5ef6c92bcde9468bf757cc4632bdbc6e6c417a5a7db2a6c7132a22891459f56a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# Copyright (c) 2015 Calvin Metcalf\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\n**THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.**\n" + } + } + } + ], + "purl": "pkg:npm/process-nextick-args@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/process-nextick-args" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.1.2", + "author": "Feross Aboukhadijeh", + "name": "safe-buffer", + "version": "5.1.2", + "description": "Safer Node.js Buffer API", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/safe-buffer@5.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/safe-buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/safe-buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/safe-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string_decoder@1.1.1", + "name": "string_decoder", + "version": "1.1.1", + "description": "The string_decoder module from Node core", + "hashes": [ + { + "alg": "SHA-512", + "content": "864457f14d568c915df0bb03276c90ff0596c5aa2912c0015355df90cf00fa3d3ef392401a9a6dd7a72bd56860e8a21b6f8a2453a32a97a04e8febaea7fc0a78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\n" + } + } + } + ], + "purl": "pkg:npm/string_decoder@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/string_decoder" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/string_decoder/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/string_decoder.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/util-deprecate@1.0.2", + "author": "Nathan Rajlich", + "name": "util-deprecate", + "version": "1.0.2", + "description": "The Node.js `util.deprecate()` function with browser support", + "hashes": [ + { + "alg": "SHA-512", + "content": "10f0f9ab5b97c85c49a42acb9c27359c79eade039ae83641a1c008888d93692080ed5089d5424331a802cc891736c5187c3d5d68afff2d3110f318886eb1ed73" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Nathan Rajlich \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/util-deprecate@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/util-deprecate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/util-deprecate/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/util-deprecate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/typedarray@0.0.6", + "author": "James Halliday", + "name": "typedarray", + "version": "0.0.6", + "description": "TypedArray polyfill for old browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "fda0831066ad1af67604893e1e62dfe227c2245c2f28535bf7f25e64f32e95f805ada727f5015c01fe463bc07f9b07948d2a1b952e489f471686aa5fb3fe4f40" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "/*\n Copyright (c) 2010, Linden Research, Inc.\n Copyright (c) 2012, Joshua Bell\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n $/LicenseInfo$\n */\n\n// Original can be found at:\n// https://bitbucket.org/lindenlab/llsd\n// Modifications by Joshua Bell inexorabletash@gmail.com\n// https://github.com/inexorabletash/polyfill\n\n// ES3/ES5 implementation of the Krhonos Typed Array Specification\n// Ref: http://www.khronos.org/registry/typedarray/specs/latest/\n// Date: 2011-02-01\n//\n// Variations:\n// * Allows typed_array.get/set() as alias for subscripts (typed_array[])\n" + } + } + } + ], + "purl": "pkg:npm/typedarray@0.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/typedarray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/typedarray/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/typedarray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/contains-path@0.1.0", + "author": "Jon Schlinkert", + "name": "contains-path", + "version": "0.1.0", + "description": "Return true if a file path contains the given path.", + "hashes": [ + { + "alg": "SHA-512", + "content": "38a6673c678c432d913da50804f14577bd6235fe3bf751f5d8c091b954039f3191c0260d6264c3cb9a5d69fa3648b01c10c2b34ce4272d61b841d72378950c12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/contains-path@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/contains-path" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/contains-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/contains-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.8.0", + "author": "Thorsten Lorenz", + "name": "convert-source-map", + "version": "1.8.0", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e41d8cfe3dcd5888ffa8bb9c826903cac0978b15fc974f7d4f6766cdd5a8ec062208b3202bee376aeee9f31dfb89652f4b5aaf5f146095df67f4d6b668548c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/convert-source-map@1.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/convert-source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/convert-source-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/convert-source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookiejar@2.1.3", + "author": "bradleymeck", + "name": "cookiejar", + "version": "2.1.3", + "description": "simple persistent cookiejar system", + "hashes": [ + { + "alg": "SHA-512", + "content": "2716c205476b7ebe80423397af1a13bc03093b81c14d4225073b257093c0cfefca4fcca4e777d7ba7e75bbe45e9cd62f69dffe55cd83233e68f54c65083ca615" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2013 Bradley Meck \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cookiejar@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bmeck/node-cookiejar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bmeck/node-cookiejar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bmeck/node-cookiejar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cross-spawn@5.1.0", + "author": "IndigoUnited", + "name": "cross-spawn", + "version": "5.1.0", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "hashes": [ + { + "alg": "SHA-512", + "content": "a53810279282d1dda1718f1ec8bd48ce504f6234e4c87ef65d164f9cbc8abacda605f36342cde496a6c95365482ea66bc80654b7d24e6f787f996332db7fdfe4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 IndigoUnited\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cross-spawn@5.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/IndigoUnited/node-cross-spawn/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/IndigoUnited/node-cross-spawn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lru-cache@4.1.5", + "author": "Isaac Z. Schlueter", + "name": "lru-cache", + "version": "4.1.5", + "description": "A cache object that deletes the least-recently-used items.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b166656c43f63ac1cd917acc97919893f8ca93bd0c06783a514e1823fa860d86e07fa61b3f812f9aa2126d70a826244ab3ed5b4a9147560431bc9d7b176962e6" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lru-cache@4.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-lru-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-lru-cache/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-lru-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pseudomap@1.0.2", + "author": "Isaac Z. Schlueter", + "name": "pseudomap", + "version": "1.0.2", + "description": "A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ff6303616fc964d59cf6f9b5d7a52fcb2bd3a2b22659d5236c48bc4dd71d8e5d51215b60a4affee6584e6fac2d594e22650fd835f635accd3989b01fa812915" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pseudomap@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/pseudomap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/pseudomap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/pseudomap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yallist@2.1.2", + "author": "Isaac Z. Schlueter", + "name": "yallist", + "version": "2.1.2", + "description": "Yet Another Linked List", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dc4f31d5ecdbec4199187b50d6edc6c32e6d18a731e6645e6bfe2c8fdd99d0b4c889fa98f38ac0a230d23e4a3fb1405e695e1487c52077b836ec053cd8fdcd8" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yallist@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/yallist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/yallist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/yallist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shebang-command@1.2.0", + "author": "Kevin Martensson", + "name": "shebang-command", + "version": "1.2.0", + "description": "Get the command from a shebang", + "hashes": [ + { + "alg": "SHA-512", + "content": "115dcbd7e510586a2bdb53a69efa232b7ea6860f93c8828387788504a06886be71797221341731f2859d8244c4110f8110515874b46ea8c7dde4bf3837557956" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Kevin Martensson (github.com/kevva)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/shebang-command@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kevva/shebang-command#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kevva/shebang-command/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kevva/shebang-command.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shebang-regex@1.0.0", + "author": "Sindre Sorhus", + "name": "shebang-regex", + "version": "1.0.0", + "description": "Regular expression for matching a shebang", + "hashes": [ + { + "alg": "SHA-512", + "content": "c29a12140c72b3a6f66b6c076755e90d2803ecdf62563836f4f87db95fee68ff44c7f2979644d94de75dc433d2610a60bf328b18991ed94534033a060a3348bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/shebang-regex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/shebang-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/shebang-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/shebang-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/which@1.3.1", + "author": "Isaac Z. Schlueter", + "name": "which", + "version": "1.3.1", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f125d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/which@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-which#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-which/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-which.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isexe@2.0.0", + "author": "Isaac Z. Schlueter", + "name": "isexe", + "version": "2.0.0", + "description": "Minimal module to check if a file is executable.", + "hashes": [ + { + "alg": "SHA-512", + "content": "447c4c2e9f659ca1c61d19e0f5016144231b600715a67ebdb2648672addfdfac638155564e18f8aaa2db4cb96aed2b23f01f9f210d44b8210623694ab3241e23" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/isexe@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/isexe#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/isexe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/isexe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dashdash@1.14.1", + "author": "Trent Mick", + "name": "dashdash", + "version": "1.14.1", + "description": "A light, featureful and explicit option parsing library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d1162f140c6a3a8fea1d6621298dacd9696a846a5df0fdb6ac163407404c15b592460e9c5b1f531e625bb0092f17ab9c262c9a280e5320bd56ab9967c6338e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "# This is the MIT license\n\nCopyright (c) 2013 Trent Mick. All rights reserved.\nCopyright (c) 2013 Joyent Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/dashdash@1.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/trentm/node-dashdash#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/trentm/node-dashdash/issues" + }, + { + "type": "vcs", + "url": "git://github.com/trentm/node-dashdash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@3.2.7", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "3.2.7", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, \nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial \nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@3.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.3", + "name": "ms", + "version": "2.1.3", + "description": "Tiny millisecond conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2020 Vercel, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ms@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vercel/ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vercel/ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vercel/ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug-log@1.0.1", + "author": "Sindre Sorhus", + "name": "debug-log", + "version": "1.0.1", + "description": "Node.js 0.12 util.debuglog() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "815fe97b560868a3602d89ddd60f55356f34b5c6fba15e6abcd5311bb34cf2b6c3a6797a446ba7ce502d94649bd3012cde77acbb6bc73625fd4d2b19f98f918c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/debug-log@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/debug-log#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/debug-log/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/debug-log.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/decamelize@1.2.0", + "author": "Sindre Sorhus", + "name": "decamelize", + "version": "1.2.0", + "description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf64be5bd5fbde10145248be37ef596b694196e9fcf738a03b21abb1ac7e29443ac0a5b86685a91180641a1423c008e30c2916c6163454a12193cc3363b17970" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/decamelize@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/decamelize#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/decamelize/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/decamelize.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-eql@3.0.1", + "author": "Jake Luer", + "name": "deep-eql", + "version": "3.0.1", + "description": "Improved deep equality testing for Node.js and the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9078843237966e3bedd49390d887aff578a3b49b462624518d9851c6002a5fd4294bd679a557fa7880d81b976a491b18176f87daaa8e9413e33900210cc9573" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Jake Luer (http://alogicalparadox.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-eql@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/deep-eql#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/deep-eql/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/deep-eql.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type-detect@4.0.8", + "author": "Jake Luer", + "name": "type-detect", + "version": "4.0.8", + "description": "Improved typeof detection for node.js and the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1faff9881f57653bec7b4e570ccbe6c80ea28fb30ffbd2d5727875bbf3b828423866a9a65ed74bb02ee8ee6caf6af4b83a162868d4a50a0d8cf467b93b839fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Jake Luer (http://alogicalparadox.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/type-detect@4.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/type-detect#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/type-detect/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/type-detect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-is@0.1.4", + "author": "Thorsten Lorenz", + "name": "deep-is", + "version": "0.1.4", + "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", + "hashes": [ + { + "alg": "SHA-512", + "content": "a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, 2013 Thorsten Lorenz \nCopyright (c) 2012 James Halliday \nCopyright (c) 2009 Thomas Robinson <280north.com>\n\nThis software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-is@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/deep-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/deep-is/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/thlorenz/deep-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/define-properties@1.1.4", + "author": "Jordan Harband", + "name": "define-properties", + "version": "1.1.4", + "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c90ea8a71f695bed05db1591d3efdd78ef79026c350aa68578118bcba1bd65ae3d8642365cd3f2a0326e55203685dd1dd8cc4f302a7868c0a258bc7fe6f33c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/define-properties@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/define-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/define-properties/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/define-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-property-descriptors@1.0.0", + "author": "Jordan Harband", + "name": "has-property-descriptors", + "version": "1.0.0", + "description": "Does the environment have full property descriptor support? Handles IE 8's broken defineProperty/gOPD.", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb60d52d91a88840431d0caa1b8c3dc42b99ede244c0d989456c36558f3839e75bed615c036edf88455ef28510c7d840509e1e92eaeabae7131b0b323b55c675" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2022 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-property-descriptors@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/has-property-descriptors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/has-property-descriptors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/has-property-descriptors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-intrinsic@1.1.2", + "author": "Jordan Harband", + "name": "get-intrinsic", + "version": "1.1.2", + "description": "Get and robustly cache all JS language-level intrinsics at first require time", + "hashes": [ + { + "alg": "SHA-512", + "content": "25f9b73b20b11e1f43272736f2a1a4f8999f9293b8d40e179277834ae8cdf4c0d7ae6e280ca747be776167674df78f8444d7e46095837255ba9362ff6461e35c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2020 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-intrinsic@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/get-intrinsic#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/get-intrinsic/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/get-intrinsic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/function-bind@1.1.1", + "author": "Raynos", + "name": "function-bind", + "version": "1.1.1", + "description": "Implementation of Function.prototype.bind", + "hashes": [ + { + "alg": "SHA-512", + "content": "c88a2f033317e3db05f18979f1f482589e6cbd22ee6a26cfc5740914b98139b4ee0abd0c7f52a23e8a4633d3621638980426df69ad8587a6eb790e803554c8d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Raynos.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/function-bind@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/function-bind" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/function-bind/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/function-bind.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has@1.0.3", + "author": "Thiago de Arruda", + "name": "has", + "version": "1.0.3", + "description": "Object.prototype.hasOwnProperty.call shortcut", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f676f3b4554e8e7a3ed1916246ade8636f33008c5a79fd528fa79b53a56215e091c764ad7f0716c546d7ffb220364964ded3d71a0e656d618cd61086c14b8cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/has@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tarruda/has" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tarruda/has/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tarruda/has.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-symbols@1.0.3", + "author": "Jordan Harband", + "name": "has-symbols", + "version": "1.0.3", + "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9772c2b85e8c8033704c32a47581848a1623b79a513db120e3aaed9669d23e551b82607c2ce22b2896d86050526e73da25ec4c2ad88f3bc8667918d1cf64ddf8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-symbols@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/has-symbols#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/has-symbols/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/has-symbols.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-keys@1.1.1", + "author": "Jordan Harband", + "name": "object-keys", + "version": "1.1.1", + "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e00449439432b9485ce7c72b30fa6e93eeded62ddf1be335d44843e15e4f494d6f82bc591ef409a0f186e360b92d971be1a39323303b3b0de5992d2267e12c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2013 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/object-keys@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/object-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/object-keys/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/object-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/del@2.2.2", + "author": "Sindre Sorhus", + "name": "del", + "version": "2.2.2", + "description": "Delete files and folders", + "hashes": [ + { + "alg": "SHA-512", + "content": "6787f3a5b2118cebbb94ee630844d25a8a940d57b420f3a57ee801b05eacb9e9f62ca0e555be1066928433d3fe6ee349e0a23578dec8d3cdf0fe96ca529b2b59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/del@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/del#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/del/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/del.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globby@5.0.0", + "author": "Sindre Sorhus", + "name": "globby", + "version": "5.0.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c9453207d84787e3891af8b5a283e12a4f638d498a5594d7f1ea9c9de7ddbf545d536df96327b7a5c227bba12c1c5622c6a8e756a1c49dbb6b71c0117d6e399" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globby@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globby#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globby/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globby.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@7.2.3", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "7.2.3", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n## Glob Logo\n\nGlob's logo created by Tanya Brassie , licensed\nunder a Creative Commons Attribution-ShareAlike 4.0 International License\nhttps://creativecommons.org/licenses/by-sa/4.0/\n" + } + } + } + ], + "purl": "pkg:npm/glob@7.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs.realpath@1.0.0", + "author": "Isaac Z. Schlueter", + "name": "fs.realpath", + "version": "1.0.0", + "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", + "hashes": [ + { + "alg": "SHA-512", + "content": "38ed291f694ae9ad2166701d6aee48b731cf23aa5496f23b8cc567c54411b70e28c05db093c94e49a6ed1830933f81a0ae0d8c6c69d63bd5fc2b5b78f9f18c0f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n----\n\nThis library bundles a version of the `fs.realpath` and `fs.realpathSync`\nmethods from Node.js v0.10 under the terms of the Node.js MIT license.\n\nNode's license follows, also included at the header of `old.js` which contains\nthe licensed code:\n\n Copyright Joyent, Inc. and other Node contributors.\n\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the \"Software\"),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs.realpath@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/fs.realpath#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/fs.realpath/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/fs.realpath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inflight@1.0.6", + "author": "Isaac Z. Schlueter", + "name": "inflight", + "version": "1.0.6", + "description": "Add callbacks to requests in flight to avoid async duplication", + "hashes": [ + { + "alg": "SHA-512", + "content": "93dd88fdbd3cab8c2f16c71708bbea7ec1c2ae3ac5ef2897b10b8856f544ecdf365b7f9aaa9cee51d05b7e159ccbf159477ff82207e532028b3acbcf0eb18224" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/inflight@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/inflight" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/inflight/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/inflight.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/once@1.4.0", + "author": "Isaac Z. Schlueter", + "name": "once", + "version": "1.4.0", + "description": "Run a function exactly one time", + "hashes": [ + { + "alg": "SHA-512", + "content": "94d689808fb643951140191c7042874d038f697754c67659125413658d0c15402e684a9ed44f8dcaf81dcff688c8d8ba67d3333b976fd47f27e7cfc610ba77fb" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/once@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/once#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/once/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/once.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wrappy@1.0.2", + "author": "Isaac Z. Schlueter", + "name": "wrappy", + "version": "1.0.2", + "description": "Callback wrapping utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "9784a9fc346c7a8afdc0be84bd5dbe4ee427eb774c90f8d9feca7d5e48214c46d5f4a94f4b5c54b19deeeff2103b8c31b5c141e1b82940f45c477402bdeccf71" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wrappy@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/wrappy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/wrappy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/wrappy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.1.2", + "author": "Isaac Z. Schlueter", + "name": "minimatch", + "version": "3.1.2", + "description": "a glob matcher in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimatch@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minimatch/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/minimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-is-absolute@1.0.1", + "author": "Sindre Sorhus", + "name": "path-is-absolute", + "version": "1.0.1", + "description": "Node.js 0.12 path.isAbsolute() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "0156f0dd42767bd6eaeb8bd2692f409b47e37b53daf296c6a934ec9977da2223299ebe4394385f24eb8b8fd49ff7964f5430147ab0df124f3c30f98f7bb50242" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-is-absolute@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-is-absolute#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-is-absolute/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-is-absolute.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-assign@4.1.1", + "author": "Sindre Sorhus", + "name": "object-assign", + "version": "4.1.1", + "description": "ES2015 `Object.assign()` ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-assign@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/object-assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/object-assign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/object-assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pify@2.3.0", + "author": "Sindre Sorhus", + "name": "pify", + "version": "2.3.0", + "description": "Promisify a callback-style function", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9d82c018f9f4e7befee423b69ac5bab058d6f4007881d2a04ef3d3d928f9284e618e81d6eb1c3283fb40765f8b937c9fc54f5474f6bf604ec8d48cd268b6ea2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pify@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pinkie-promise@2.0.1", + "author": "Vsevolod Strukchinsky", + "name": "pinkie-promise", + "version": "2.0.1", + "description": "ES2015 Promise ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "d069e2e83e1470b4dbbfd739ec37f10c676be355df8148ea599bb8f767f47081abd7acc3534e8158ffd1004bceba8ec243408d8c768b94ce7d6092459b735697" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pinkie-promise@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/pinkie-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/pinkie-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/pinkie-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pinkie@2.0.4", + "author": "Vsevolod Strukchinsky", + "name": "pinkie", + "version": "2.0.4", + "description": "Itty bitty little widdle twinkie pinkie ES2015 Promise implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "32752e1327007a6b5269e1528d7296fdaae857b6a405b63e4aff91932a858e001eef717e311d130562814439267d6abf1e216675abdf6751bb87848f6576824a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pinkie@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/pinkie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/pinkie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/pinkie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-cwd@1.0.0", + "author": "Sindre Sorhus", + "name": "is-path-cwd", + "version": "1.0.0", + "description": "Check if a path is CWD", + "hashes": [ + { + "alg": "SHA-512", + "content": "7274b9e9e47d48f02c70befb8a4efa01356aa0f0114ea3c856430357145a587d3acd3fbaf82cc8ae8611274555be6d19d737c0bf1bf3f62fc3dcfa636aab7937" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/is-path-cwd@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-in-cwd@1.0.1", + "author": "Sindre Sorhus", + "name": "is-path-in-cwd", + "version": "1.0.1", + "description": "Check if a path is in the current working directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "1635754535b8f04ec258cede13f276349bc010455e92d79c0c15411391e1de733525dd24be11ed5faf0faf7c6c0dff39ef1b77638024c1550b2b5564bbad9a69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-path-in-cwd@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-in-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-in-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-in-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-inside@1.0.1", + "author": "Sindre Sorhus", + "name": "is-path-inside", + "version": "1.0.1", + "description": "Check if a path is inside another path", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa1b0247f12cc78538860ffd235f4e5540099065ad8d16073118143191364c3763f8083e92db596a72eea5f75d372825cf3e747149665b351a237ec60df371fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-path-inside@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-inside#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-inside/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-inside.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-is-inside@1.0.2", + "author": "Domenic Denicola", + "name": "path-is-inside", + "version": "1.0.2", + "description": "Tests whether one path is inside another path", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d4589af7f942e9e335e6a25fd266415fdc91ac4bdfd222ff98dd1b7ddff5233e90e99250797f57abe0edcf3886d4b9427715782ab5ed90ed2ad4eb302ac24f3" + } + ], + "licenses": [ + { + "license": { + "name": "(WTFPL OR MIT)", + "text": { + "contentType": "text/txt", + "content": "Dual licensed under WTFPL and MIT:\n\n---\n\nCopyright © 2013–2016 Domenic Denicola \n\nThis work is free. You can redistribute it and/or modify it under the\nterms of the Do What The Fuck You Want To Public License, Version 2,\nas published by Sam Hocevar. See below for more details.\n\n DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n Version 2, December 2004\n\n Copyright (C) 2004 Sam Hocevar \n\n Everyone is permitted to copy and distribute verbatim or modified\n copies of this license document, and changing it is allowed as long\n as the name is changed.\n\n DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. You just DO WHAT THE FUCK YOU WANT TO.\n\n---\n\nThe MIT License (MIT)\n\nCopyright © 2013–2016 Domenic Denicola \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-is-inside@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/domenic/path-is-inside#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/domenic/path-is-inside/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/domenic/path-is-inside.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rimraf@2.7.1", + "author": "Isaac Z. Schlueter", + "name": "rimraf", + "version": "2.7.1", + "description": "A deep deletion module for node (like `rm -rf`)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b968db68a20add3d4e495a6dcd7ecd97a3ef437a801ad284b5546346e6b38df2f7071e5e238d3d5594aa80d0fee143679b32d574f8fd16a14934fa81645bdee3" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rimraf@2.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/rimraf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/rimraf/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/rimraf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/diff@3.5.0", + "name": "diff", + "version": "3.5.0", + "description": "A javascript text diff implementation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "038eaab4581dfa0ee90d98a7a67c22449b716c2d61a607f4bb33f7886f3db1c1e4d00502ec0d531b17f93a288e52ffc931947c18eb7c84bf74d215746cecb9c4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Software License Agreement (BSD License)\n\nCopyright (c) 2009-2015, Kevin Decker \n\nAll rights reserved.\n\nRedistribution and use of this software in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above\n copyright notice, this list of conditions and the\n following disclaimer.\n\n* Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n* Neither the name of Kevin Decker nor the names of its\n contributors may be used to endorse or promote products\n derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + } + } + } + ], + "purl": "pkg:npm/diff@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kpdecker/jsdiff#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kpdecker/jsdiff/issues" + }, + { + "type": "vcs", + "url": "git://github.com/kpdecker/jsdiff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/doctrine@1.5.0", + "name": "doctrine", + "version": "1.5.0", + "description": "JSDoc parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "96c1b246e62be3f3c8074b718be172db138c23674669382e09aa2dcc51a4559b8a479bac29f71158814a34cdd036b53b861ffec366f04d6f997973cae65f2e56" + } + ], + "purl": "pkg:npm/doctrine@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/doctrine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/doctrine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/doctrine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ecc-jsbn@0.1.2", + "author": "Jeremie Miller", + "name": "ecc-jsbn", + "version": "0.1.2", + "description": "ECC JS code based on JSBN", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a1f4efa1c111cd6c6e012d38c49779f0d38e029069b95fa2e86827fb2cfa7b514f10aede3b258362ea73d7f318d6f7b4ca18a9b5a2e72d834412a597bdaab9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jeremie Miller\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/ecc-jsbn@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/quartzjer/ecc-jsbn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/quartzjer/ecc-jsbn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/quartzjer/ecc-jsbn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsbn@0.1.1", + "author": "Tom Wu", + "name": "jsbn", + "version": "0.1.1", + "description": "The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "51553d7626ead897055b140f03a282aa3e4ee3654e980637cd051f10ac54d0aa53197c0da028e45f57b5dde1cdbf0ff13f29edea9534ad9d61b63593353497b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Licensing\n---------\n\nThis software is covered under the following copyright:\n\n/*\n * Copyright (c) 2003-2005 Tom Wu\n * All Rights Reserved.\n *\n * Permission is hereby granted, free of charge, to any person obtaining\n * a copy of this software and associated documentation files (the\n * \"Software\"), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS-IS\" AND WITHOUT WARRANTY OF ANY KIND, \n * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY \n * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \n *\n * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,\n * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER\n * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF\n * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT\n * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n *\n * In addition, the following condition applies:\n *\n * All redistributions must retain an intact copy of this copyright notice\n * and disclaimer.\n */\n\nAddress all questions regarding this license to:\n\n Tom Wu\n tjw@cs.Stanford.EDU" + } + } + } + ], + "purl": "pkg:npm/jsbn@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/andyperlitch/jsbn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/andyperlitch/jsbn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/andyperlitch/jsbn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/error-ex@1.3.2", + "name": "error-ex", + "version": "1.3.2", + "description": "Easy error subclassing and stack customization", + "hashes": [ + { + "alg": "SHA-512", + "content": "edd147366a9e15212dd9906c0ab8a8aca9e7dd9da98fe7ddf64988e90a16c38fff0cbfa270405f73453ba890a2b2aad3b0a4e3c387cd172da95bd3aa4ad0fce2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 JD Ballard\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/error-ex@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/qix-/node-error-ex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/qix-/node-error-ex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/qix-/node-error-ex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-arrayish@0.2.1", + "author": "Qix", + "name": "is-arrayish", + "version": "0.2.1", + "description": "Determines if an object can be used as an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf3d3a4bcb74a33a035cc1beb9b7b6eb37824cd5dc2883c96498bc841ac5e227422e6b38086f50b4aeea065d5ba22e4e0f31698ecc1be493e61c26cca63698ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 JD Ballard\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-arrayish@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/qix-/node-is-arrayish#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/qix-/node-is-arrayish/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/qix-/node-is-arrayish.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.20.1", + "author": "Jordan Harband", + "name": "es-abstract", + "version": "1.20.1", + "description": "ECMAScript spec abstract operations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5849b6a0185fa08dac22678ce0e176cc4d95dc161d485f8a9d28bd4a2773e757d01ddefe26e17c5e0723f7fd28f8e59e21e212fcc8ae36796bb90ac97f5e8640" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es-abstract@1.20.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/es-abstract#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/es-abstract/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/es-abstract.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/call-bind@1.0.2", + "author": "Jordan Harband", + "name": "call-bind", + "version": "1.0.2", + "description": "Robustly `.call.bind()` a function", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecef856c28a1ac1e5619b1587ac72dc264ca69eeab3a22339b3d6272b79627ed1a03b2c97eeaa112ca364fd9dca5c16dccc42dcd77f64061ae7962464d8b2aac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2020 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/call-bind@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/call-bind#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/call-bind/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/call-bind.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es-to-primitive@1.2.1", + "author": "Jordan Harband", + "name": "es-to-primitive", + "version": "1.2.1", + "description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4023a5960649b5a528f6689805c2c285351a1cd8c91773d8b35562743ec0c22123d6463129e41372d2c07b300e1f964a447d20d8880f9fa2b0078213f22469bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/es-to-primitive@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/es-to-primitive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/es-to-primitive/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/es-to-primitive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.4", + "author": "Jordan Harband", + "name": "is-callable", + "version": "1.2.4", + "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ecbb0b7165f317ebb3abca5f4b090faea670b4674060a709eda52f3d9b51ff4cb174ccd7f37cb315ffd59affa319b23d1a72912300ed0a175c53e9974b97de7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-callable@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-callable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-callable/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-callable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-date-object@1.0.5", + "author": "Jordan Harband", + "name": "is-date-object", + "version": "1.0.5", + "description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5841a4b1b00892c1cbd2df7301937c130959d62be1e117c5594768d1c5e84cd7a41c54e747a8f9f854f1e644ae254abdfc9fd26b8aeac89cb70ff74c6c60d7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-date-object@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-date-object#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-date-object/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-date-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-tostringtag@1.0.0", + "author": "Jordan Harband", + "name": "has-tostringtag", + "version": "1.0.0", + "description": "Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9058dc48d867946575932a0693b3972926b01f924e6ff2f351ce70f41d3684e4ced1d7c54636c740abe0d5de9c7f71db7949ad53d55b6d5deacd9d937a1f7b59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2021 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-tostringtag@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/has-tostringtag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/has-tostringtag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/has-tostringtag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-symbol@1.0.4", + "author": "Jordan Harband", + "name": "is-symbol", + "version": "1.0.4", + "description": "Determine if a value is an ES6 Symbol or not.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bf08f06a2969ef75cc6a200471c8e878bf551410e087a600dad16620a4a0c532ccdcacf71f7e0e6e8704a03c22c3d965b19aaea2b22b33f3bb734f4d6db8686" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-symbol@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-symbol#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-symbol/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-symbol.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/function.prototype.name@1.1.5", + "author": "Jordan Harband", + "name": "function.prototype.name", + "version": "1.1.5", + "description": "An ES2015 spec-compliant `Function.prototype.name` shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8dee6fc1cd52909c2505fe25bc8d879aebbbfefb6bbb9b952010d6c746d74355c94e50ff8530f94235d9a4d21ff2b06ca8dad6af309103a8902425d45ad6f30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/function.prototype.name@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Function.prototype.name#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Function.prototype.name/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Function.prototype.name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/functions-have-names@1.2.3", + "author": "Jordan Harband", + "name": "functions-have-names", + "version": "1.2.3", + "description": "Does this JS environment support the `name` property on functions?", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5c901517c9322a4fdeedab6c7600c6fe835eb76f9245cac624d31e2ac4d1706df42498d6688911dbeac3f323dfd0577dd67aebd5601508883e0dccd232a9a45" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/functions-have-names@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/functions-have-names#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/functions-have-names/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/functions-have-names.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-symbol-description@1.0.0", + "author": "Jordan Harband", + "name": "get-symbol-description", + "version": "1.0.0", + "description": "Gets the description of a Symbol. Handles `Symbol()` vs `Symbol('')` properly when possible.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8499d1f562f210899a65b4236092e8949f2ba4cf133f47a343257df529edc11b536ae5bd12d8f857e7d50a8bdbd9a4f0d055daa7fb521c680c27cd34f9bc28f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2021 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-symbol-description@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/get-symbol-description#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/get-symbol-description/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/get-symbol-description.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/internal-slot@1.0.3", + "author": "Jordan Harband", + "name": "internal-slot", + "version": "1.0.3", + "description": "ES spec-like internal slots", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b40c1d490bfb0fc9997b708a3bf27e5d47b7944b0c2960f8974614f337165500c52e07cbe59d11722f176b553a24b3a5cf2d59c57dbcda55de562e386083ebc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/internal-slot@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/internal-slot#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/internal-slot/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/internal-slot.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/side-channel@1.0.4", + "author": "Jordan Harband", + "name": "side-channel", + "version": "1.0.4", + "description": "Store information about any JS value in a side channel. Uses WeakMap if available.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab95cfcada85108287906762308ad8d749af2d1be7421e36ffe1a8065156ddbd8b5cb136c71269645766f78c1ed016a85774702721aa839c12edea714efd19bf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/side-channel@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/side-channel#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/side-channel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/side-channel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.12.2", + "author": "James Halliday", + "name": "object-inspect", + "version": "1.12.2", + "description": "string representations of objects in node and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfe70fc56d10194a7499ca9cb204322d5443a171506d73b005aab217b548808e1358d42c0c7ac1a5442c9519887c0a1859d633b3a525289b41d972694da352a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013 James Halliday\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-inspect@1.12.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/object-inspect" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/object-inspect/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/object-inspect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-negative-zero@2.0.2", + "author": "Jordan Harband", + "name": "is-negative-zero", + "version": "2.0.2", + "description": "Is this value negative zero? === will lie to you", + "hashes": [ + { + "alg": "SHA-512", + "content": "76a26f6ab2dac17b056cd0de256ef3033f08b49f5c776f18b9fbae1738741bca4d1e324c9d8d3c0efeec617dae17952940ec2278078e13111801659fbbb65950" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-negative-zero@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-negative-zero" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-negative-zero/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-negative-zero.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-regex@1.1.4", + "author": "Jordan Harband", + "name": "is-regex", + "version": "1.1.4", + "description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag", + "hashes": [ + { + "alg": "SHA-512", + "content": "92f45dc43b31663873517d3b6672f27734b54d4fd32654d41c763860b2fcededfba14038f437e42ea832f958c5a1ca30cb6f5c2af7128aefa422fef6f234d356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-regex@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-regex/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-shared-array-buffer@1.0.2", + "author": "Jordan Harband", + "name": "is-shared-array-buffer", + "version": "1.0.2", + "description": "Is this value a JS SharedArrayBuffer?", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2a376503bb5ff4cbabaf5f24ad08ecf28408c24a51dc785a0c2895bc5bd114f5cbe273f41db19d24114f771c4cb7214105648887ff7c3e007fd441b3c735d84" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2021 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-shared-array-buffer@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-shared-array-buffer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-shared-array-buffer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/is-shared-array-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-string@1.0.7", + "author": "Jordan Harband", + "name": "is-string", + "version": "1.0.7", + "description": "Is this value a JS String object or primitive? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b44d945f38af8deea87cf5bb976ddc8c338c6b4f606fbc6502a1ba8c6e5e8fab8f577d939563f734a3e282d68678736ef5fa2171c458bc889931f38e9ce614b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-string@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/is-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/is-string/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/is-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-weakref@1.0.2", + "author": "Jordan Harband", + "name": "is-weakref", + "version": "1.0.2", + "description": "Is this value a JS WeakRef? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9cb6cb8b666210d3ebd248c7e856fc857b6f86484be7999d9ecd3ba9d5206c7bdfadc0209e89a97a1048b735cd8a15c7fafaacf61413e78d7b24f3184a49a3d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2020 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-weakref@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-weakref#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-weakref/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/is-weakref.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.assign@4.1.2", + "author": "Jordan Harband", + "name": "object.assign", + "version": "4.1.2", + "description": "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b14f62f94c75ec029ca250f60a996fb6107a575dee488b733e7f87be6891401daa396a61515ba27438ee9cfcb53c05ee3bbad0b1d862fcf61c4607a5d298ab9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/object.assign@4.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/object.assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/object.assign/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/object.assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexp.prototype.flags@1.4.3", + "author": "Jordan Harband", + "name": "regexp.prototype.flags", + "version": "1.4.3", + "description": "ES6 spec-compliant RegExp.prototype.flags shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e382010e3b7b2523a5af823c1f9647383454424d902ee429cd7c1779a8e318856767ebb9c9041bb7e3f4e40fef9e78599df02f6bf637d7276efe9d289191250" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/regexp.prototype.flags@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/RegExp.prototype.flags#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/RegExp.prototype.flags/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/RegExp.prototype.flags.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.5", + "author": "Jordan Harband", + "name": "string.prototype.trimend", + "version": "1.0.5", + "description": "ES2019 spec-compliant String.prototype.trimEnd shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "23b446be68d5e2927b3b791d7fe2d716955f74d3b1b425bfd82f1fea33625b8f8f41c870c64083ce5935ffba7e5a5e1ba85219785e3ba801d72ee1c758a031a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Khaled Al-Ansari\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/String.prototype.trimEnd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/String.prototype.trimEnd/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/String.prototype.trimEnd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.5", + "author": "Jordan Harband", + "name": "string.prototype.trimstart", + "version": "1.0.5", + "description": "ES2019 spec-compliant String.prototype.trimStart shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c7c75e932421a5b0dd28e9d976a3a9dc594b1d8272d1480db7ad1139a72181c3f98baf7123fd1d8b6aa0ad80ff1534c199b2f3169dff68a193f26366c7bd416" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Khaled Al-Ansari\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/String.prototype.trimStart#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/String.prototype.trimStart/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/String.prototype.trimStart.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unbox-primitive@1.0.2", + "author": "Jordan Harband", + "name": "unbox-primitive", + "version": "1.0.2", + "description": "Unbox a boxed JS primitive value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb5a4f9420fd879d55a2b7b22740517a275e33730328c2a787af95f4bd3cdf7d62a6ae90f0e1576588aa3fa9ffb5b1f1e2ce48f6e4617327ba06b6e48b39010f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unbox-primitive@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/unbox-primitive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/unbox-primitive/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/unbox-primitive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-bigints@1.0.2", + "author": "Jordan Harband", + "name": "has-bigints", + "version": "1.0.2", + "description": "Determine if the JS environment has BigInt support.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b52bc22ad06bf65905d04c7469088ff4df8ea55e338b6aff35e7b95644436daaafdf944b60ccdbc107c5499647d2447e45deb7d36509676a7f6c9084a11dd5a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-bigints@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/has-bigints#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/has-bigints/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/has-bigints.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/which-boxed-primitive@1.0.2", + "author": "Jordan Harband", + "name": "which-boxed-primitive", + "version": "1.0.2", + "description": "Which kind of boxed JS primitive is this?", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f065dbf400a2e9a65158d8a6515fa4efcae37ba238ebee5c2483a9a5d2ba08cbd61eb92afb252dfbdaa94d5b5f14418ce060af7388671ead6a993a6127f5536" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/which-boxed-primitive@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/which-boxed-primitive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/which-boxed-primitive/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/which-boxed-primitive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-bigint@1.0.4", + "author": "Jordan Harband", + "name": "is-bigint", + "version": "1.0.4", + "description": "Is this value an ES BigInt?", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc1f42aee31a9a3ca6f358b6259dd4327e783ca1ac433b097a8eb1bcddc7249e0202c40d07a891bada764e8efb39f08dba8c6ca6c221cda3e83b5cf20848453a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-bigint@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-bigint#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-bigint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/is-bigint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-boolean-object@1.1.2", + "author": "Jordan Harband", + "name": "is-boolean-object", + "version": "1.1.2", + "description": "Is this value a JS Boolean? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "80361a2872669e3e1a5b1ca3e981f25d5a5d41ac2d54b1d4e5c6fe7b3b4f19ccdfe9c8ee4ddc2f7b964811f817a87e1ee7b027d43d4029ff02677918ad046a60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-boolean-object@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-boolean-object#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-boolean-object/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-boolean-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-number-object@1.0.7", + "author": "Jordan Harband", + "name": "is-number-object", + "version": "1.0.7", + "description": "Is this value a JS Number object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "935534211ccb328ed995821fcd1bb6dce87a3222056ac8296fd5fbe9ea9f15902ac07e38508e0a4c1bc16086757522fd6730a14c1f528477cb911e29756e64ad" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-number-object@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-number-object#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-number-object/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-number-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-import-resolver-node@0.3.6", + "author": "Ben Mosher", + "name": "eslint-import-resolver-node", + "version": "0.3.6", + "description": "Node default behavior import resolution plugin for eslint-plugin-import.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d049f4c34dcd455327f548b29fc6113c32af5a3c425a4b25504846353746c75e51bcf25843e95b3a5aab94d236bc402ce290d82b87ff1cdd936c39a4e533f48b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Mosher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-import-resolver-node@0.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/import-js/eslint-plugin-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/import-js/eslint-plugin-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/import-js/eslint-plugin-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve@1.22.1", + "author": "James Halliday", + "name": "resolve", + "version": "1.22.1", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c1a6eb98b98e6316c962fc922cd6895dc3a7ce402062a2886a59983fda189a3b26d739fb789689eff39b8338a5dd7fcae1c8ad79f5cc54e5c0dc2bf34a93ccf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2012 James Halliday\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve@1.22.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.9.0", + "author": "Jordan Harband", + "name": "is-core-module", + "version": "2.9.0", + "description": "Is this specifier a node.js core module?", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb914fcb93e7c263b796f7cc6f402ca0f6811bee4a1d4234c181573ad60f9d5555b294c552e31935f35a35546ddc565a76cb6ed9cf31db7bf29115bf341a14e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Dave Justice\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-core-module@2.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-core-module" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-core-module/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/is-core-module.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-parse@1.0.7", + "author": "Javier Blanco", + "name": "path-parse", + "version": "1.0.7", + "description": "Node.js path.parse() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c32733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Javier Blanco\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-parse@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jbgutierrez/path-parse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jbgutierrez/path-parse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jbgutierrez/path-parse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "author": "Jordan Harband", + "name": "supports-preserve-symlinks-flag", + "version": "1.0.0", + "description": "Determine if the current node version supports the `--preserve-symlinks` flag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2dd169d74bd7e076480871e3dee911cd935580f3e9ae3dae9c4a3791dd5f0adbbabd041d6b4c4dd1d69ec7bf4cf567201cf2ce95beff0323259febcd4c02dd3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2022 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/node-supports-preserve-symlinks-flag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/node-supports-preserve-symlinks-flag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/node-supports-preserve-symlinks-flag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-module-utils@2.7.3", + "author": "Ben Mosher", + "name": "eslint-module-utils", + "version": "2.7.3", + "description": "Core utilities to support eslint-plugin-import and other module-related plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3cf09102ecede50d933dc467b445eae438c774123165f98bddd633d6224313e6edc7f7e1c2df899658f9ea3eb375de089e4fda4138ef90b74ecd6ffe93adeb1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Mosher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-module-utils@2.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/import-js/eslint-plugin-import#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/import-js/eslint-plugin-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/import-js/eslint-plugin-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-up@2.1.0", + "author": "Sindre Sorhus", + "name": "find-up", + "version": "2.1.0", + "description": "Find a file by walking up parent directories", + "hashes": [ + { + "alg": "SHA-512", + "content": "d720fa4662c8d5705fc6e82f391c25724e9fef9b582fe891d23ab0b0eacec4c672198a94b83849d25e005dd3b5897fc54ecf5c040304935816484c759126f296" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-up@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/find-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/find-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/find-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/locate-path@2.0.0", + "author": "Sindre Sorhus", + "name": "locate-path", + "version": "2.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec03bbe3cc169c884da80b9ab72d995879101d148d7cf548b0f21fc043963b6d8099aa15ad66af94e70c4799f34cb358be9dfa5f6db4fe669a46cade7351bae4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/locate-path@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/locate-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/locate-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-locate@2.0.0", + "author": "Sindre Sorhus", + "name": "p-locate", + "version": "2.0.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7ed76c3f4e8fb81857e0261044a620dc2e8cd12467a063e122effcf4b522e4326c4664dc9b54c49f5a3f5a267f19e4573b74150d24e39580fbf61fb230ba549" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-locate@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-locate#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-locate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-limit@1.3.0", + "author": "Sindre Sorhus", + "name": "p-limit", + "version": "1.3.0", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-limit@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-limit#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-limit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-limit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-try@1.0.0", + "author": "Sindre Sorhus", + "name": "p-try", + "version": "1.0.0", + "description": "`Promise#try()` ponyfill - Starts a promise chain", + "hashes": [ + { + "alg": "SHA-512", + "content": "4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-try@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-try#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-try/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-try.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-exists@3.0.0", + "author": "Sindre Sorhus", + "name": "path-exists", + "version": "3.0.0", + "description": "Check if a path exists", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e90bb198c220d8438c182def8503c96146385008c7101ae4a0186a83920fd07ab456c3d0a61914f4892395452649dbd34c2d9808cea6a58c9eb7a1a2f834825" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-exists@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-exists#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-exists.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-restricted-globals@0.1.1", + "author": "Siddharth Doshi", + "name": "eslint-restricted-globals", + "version": "0.1.1", + "description": "A list of confusing globals that should be restricted to be used as globals", + "hashes": [ + { + "alg": "SHA-512", + "content": "77571ead80b49ce25b39bc547b5911f0c676e512edec81f347d77e20eba9a0ca85534ded623a3b4ad8ea8f4e2e1f1d71c7b1ca484f7f36375e0623f8fe350ff1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/eslint-restricted-globals@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doshisid/eslint-restricted-globals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doshisid/eslint-restricted-globals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doshisid/eslint-restricted-globals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@3.7.3", + "name": "eslint-scope", + "version": "3.7.3", + "description": "ECMAScript scope analyzer for ESLint", + "hashes": [ + { + "alg": "SHA-512", + "content": "5be0744af17881a9b209399473eb884cf634f7cf625d57cabe1c2d989a1c4da62873fde48441e6126bdf63f1a7f4703d555ef98eb4040ac1e2ce4370d5bebc14" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "eslint-scope\nCopyright JS Foundation and other contributors, https://js.foundation\nCopyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-scope@3.7.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/eslint/eslint-scope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint-scope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint-scope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esrecurse@4.3.0", + "name": "esrecurse", + "version": "4.3.0", + "description": "ECMAScript AST recursive visitor", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esrecurse@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/esrecurse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/esrecurse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/estools/esrecurse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/estraverse@5.3.0", + "name": "estraverse", + "version": "5.3.0", + "description": "ECMAScript JS AST traversal functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd9e729f7d6cfcc4dd4153fd9cefd9fd9c1f470f3a349e2614ab1eb1caa527ca8027432c96a4e4dd6447a209c87c041bb9d79b78c29f599a055f5619fd101a7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/estraverse@5.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/estraverse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/estraverse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/estraverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/estraverse@4.3.0", + "name": "estraverse", + "version": "4.3.0", + "description": "ECMAScript JS AST traversal functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd9e729f7d6cfcc4dd4153fd9cefd9fd9c1f470f3a349e2614ab1eb1caa527ca8027432c96a4e4dd6447a209c87c041bb9d79b78c29f599a055f5619fd101a7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/estraverse@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/estraverse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/estraverse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/estraverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@1.3.0", + "author": "Toru Nagashima", + "name": "eslint-visitor-keys", + "version": "1.3.0", + "description": "Constants and utilities about visitor keys to traverse AST.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e89ef637c50d6b8eb6c1afca14e0edfcf277214eb4483a42dd05c2d478dcd415d7a5f2f60bd479f8053b8e17b417a19112a54c87826ebbe358ef19fee9d8a951" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-visitor-keys@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/eslint-visitor-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint-visitor-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint-visitor-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/espree@3.5.4", + "author": "Nicholas C. Zakas", + "name": "espree", + "version": "3.5.4", + "description": "An Esprima-compatible JavaScript parser built on Acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "c80708431b6632207f8cbdf6773129d9e9c17a276c07bc563cb362c3720892955db353fe87ba85f58c09ab5c94373a7638a5e0029aece05eb58a1eba52ca03d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Espree\nCopyright JS Foundation and other contributors, https://js.foundation\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/espree@3.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/espree" + }, + { + "type": "issue-tracker", + "url": "http://github.com/eslint/espree.git" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/espree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima@4.0.1", + "author": "Ariya Hidayat", + "name": "esprima", + "version": "4.0.1", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esprima@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://esprima.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/esprima/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esquery@1.4.0", + "author": "Joel Feenstra", + "name": "esquery", + "version": "1.4.0", + "description": "A query library for ECMAScript AST using a CSS selector like query language.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7020e2b295ade6f1c7b70318d98ac043889b16400bf116c7e581819d905cf7432896fbdf92441c26ba3f699880414950dea82b612e83eaff067391b9090b1cf7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2013, Joel Feenstra\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the ESQuery nor the names of its contributors may\n be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL JOEL FEENSTRA BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/esquery@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/esquery/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/esquery/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/estools/esquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/execa@0.7.0", + "author": "Sindre Sorhus", + "name": "execa", + "version": "0.7.0", + "description": "A better `child_process`", + "hashes": [ + { + "alg": "SHA-512", + "content": "473b4dd3d5e0969608eda041ac908f5bde63107ed81755043cea17f720e15133dda7b98af8242f9cb4ee0f5d013576776f22d3bb6b9e859f0470a4ffe021a217" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/execa@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/execa#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/execa/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/execa.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-stream@3.0.0", + "author": "Sindre Sorhus", + "name": "get-stream", + "version": "3.0.0", + "description": "Get a stream as a string, buffer, or array", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a585d214b956a473c489ea42b4cc015b886cd11733676388d4b846d5f5444ea3863ed0dcb87e3bdc645553783038a1da45c8e4336b0ea15ee9094aafdfdbcb1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-stream@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/get-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/get-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/get-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-stream@1.1.0", + "author": "Sindre Sorhus", + "name": "is-stream", + "version": "1.1.0", + "description": "Check if something is a Node.js stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "b903e6f2472ce3b8f1dfc6ad01c593571ca5b506283d3ebccbd69661d57ac965d2c96f26cd26add132fa0a259d65e09d1772ab02fa55b671db4efe1137eaea75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-stream@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-run-path@2.0.2", + "author": "Sindre Sorhus", + "name": "npm-run-path", + "version": "2.0.2", + "description": "Get your PATH prepended with locally installed binaries", + "hashes": [ + { + "alg": "SHA-512", + "content": "949c596254f80d6fdb454b45875310216aa62f041f0319ea586e0784476332592b2589c99f426baf6bb79a0c6a696b1d88173be936244c6fe686b9d84eecdf1f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-run-path@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/npm-run-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/npm-run-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/npm-run-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-key@2.0.1", + "author": "Sindre Sorhus", + "name": "path-key", + "version": "2.0.1", + "description": "Get the PATH environment variable key cross-platform", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c41c62824a65120cfbf8ba88fc0250fe8e83e5ab7a5e343f87458cb1173e0a3f0e33f76e92fdbf2b22e16cd85609837070b3125fe80f7fdde21d2da602fbd0f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-key@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-key#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-key/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-key.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-finally@1.0.0", + "author": "Sindre Sorhus", + "name": "p-finally", + "version": "1.0.0", + "description": "`Promise#finally()` ponyfill - Invoked when the promise is settled regardless of outcome", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c809bda9f4207b152fb4791d68a969c7869d0596318b64258113d6a2c745327bd5bc2d340fc0c4d8546590588c3d45d4220e0e3e7a95d0383c08609b5225aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-finally@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-finally#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-finally/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-finally.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-eof@1.0.0", + "author": "Sindre Sorhus", + "name": "strip-eof", + "version": "1.0.0", + "description": "Strip the End-Of-File (EOF) character from a string/buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec50b01869b1f260f9c5077744f52f9d2a545c7337056bb38eda43e135ec7dc67d10be1acef55552c7056300fd9f1f0a87eb82042d345c1b40ca4a0c1f04e1f1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-eof@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-eof#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-eof/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-eof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extend@3.0.2", + "author": "Stefan Thomas", + "name": "extend", + "version": "3.0.2", + "description": "Port of jQuery.extend for node.js and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Stefan Thomas\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/extend@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/justmoon/node-extend#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/justmoon/node-extend/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/justmoon/node-extend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/external-editor@2.2.0", + "author": "Kevin Gravier", + "name": "external-editor", + "version": "2.2.0", + "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d29fa82f1b12adf9befee93284bf567270795e03b6878511f202a272a79a5b505b9860d233a599d00e4ec0b18724c967449d37809dacb4682cb6695ea24e4f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Kevin Gravier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/external-editor@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mrkmg/node-external-editor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mrkmg/node-external-editor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mrkmg/node-external-editor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/iconv-lite@0.4.24", + "author": "Alexander Shtuchkin", + "name": "iconv-lite", + "version": "0.4.24", + "description": "Convert character encodings in pure javascript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf73179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Alexander Shtuchkin\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/iconv-lite@0.4.24", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ashtuchkin/iconv-lite" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ashtuchkin/iconv-lite/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ashtuchkin/iconv-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tmp@0.0.33", + "author": "KARASZI István", + "name": "tmp", + "version": "0.0.33", + "description": "Temporary file and directory creator", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d10899688ca9d9dda75db533a3748aa846e3c4281bcd5dc198ab33bacd6657f0a7ca1299c66398df820250dc48cabaef03e1b251af4cbe7182459986c89971b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 KARASZI István\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tmp@0.0.33", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/raszi/node-tmp" + }, + { + "type": "issue-tracker", + "url": "http://github.com/raszi/node-tmp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/raszi/node-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-tmpdir@1.0.2", + "author": "Sindre Sorhus", + "name": "os-tmpdir", + "version": "1.0.2", + "description": "Node.js os.tmpdir() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f6151d37562afb148bb8e57058db49936fefd9496074d2c8d4f637505edf37803ac8e19b73e45b3bff2cbbe20d8de52550638c58d6a0ebe2b35d770611557d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-tmpdir@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/os-tmpdir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/os-tmpdir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/os-tmpdir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extsprintf@1.4.1", + "name": "extsprintf", + "version": "1.4.1", + "description": "extended POSIX-style sprintf", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ab937e5ef327422838ff02b0a5a3556b3d598df33a61e55e00b47c08b8786f317b0a7fbdd44f704e0fe6b30485bedf0389e058441fbcf2689085bc286362f30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/extsprintf@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davepacheco/node-extsprintf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davepacheco/node-extsprintf/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davepacheco/node-extsprintf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-levenshtein@2.0.6", + "author": "Ramesh Nair", + "name": "fast-levenshtein", + "version": "2.0.6", + "description": "Efficient implementation of Levenshtein algorithm with locale-specific collator support.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "(MIT License)\n\nCopyright (c) 2013 [Ramesh Nair](http://www.hiddentao.com/)\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/fast-levenshtein@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hiddentao/fast-levenshtein#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hiddentao/fast-levenshtein/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/hiddentao/fast-levenshtein.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/figures@2.0.0", + "author": "Sindre Sorhus", + "name": "figures", + "version": "2.0.0", + "description": "Unicode symbols with Windows CMD fallbacks", + "hashes": [ + { + "alg": "SHA-512", + "content": "39ad8cf5ab6283af5991fc2202963c176632fadccc6dacf2beabf6d51d0db120bc7e5a12382d3d05b4f521358076830642f27f6999d1d4a330771f6dbc79d334" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/figures@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/figures#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/figures/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/figures.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/file-entry-cache@2.0.0", + "author": "Roy Riojas", + "name": "file-entry-cache", + "version": "2.0.0", + "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", + "hashes": [ + { + "alg": "SHA-512", + "content": "b973ffcc6cf1c45bc57dc646801230a2d9be4dd739e5d74f03317b887b213f8606697330c3bad217da5e0fd0f5b2e8b979b38d8395286ec66ff857e01291afff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Roy Riojas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/file-entry-cache@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/royriojas/file-entry-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/royriojas/file-entry-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/royriojas/file-entry-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flat-cache@1.3.4", + "author": "Roy Riojas", + "name": "flat-cache", + "version": "1.3.4", + "description": "A stupidly simple key/value storage using files to persist some data", + "hashes": [ + { + "alg": "SHA-512", + "content": "570c81dcb92069c7e2936be1a91e2ebf6aef79baa60ef16ee2394dfc2d51cd6a09128f08ef3e10e34e288aa60292ae359a78bc1334279bde5e994f6c79c930b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Roy Riojas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/flat-cache@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/royriojas/flat-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/royriojas/flat-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/royriojas/flat-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rimraf@2.6.3", + "author": "Isaac Z. Schlueter", + "name": "rimraf", + "version": "2.6.3", + "description": "A deep deletion module for node (like `rm -rf`)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b968db68a20add3d4e495a6dcd7ecd97a3ef437a801ad284b5546346e6b38df2f7071e5e238d3d5594aa80d0fee143679b32d574f8fd16a14934fa81645bdee3" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rimraf@2.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/rimraf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/rimraf/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/rimraf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write@0.2.1", + "author": "Jon Schlinkert", + "name": "write", + "version": "0.2.1", + "description": "Write files to disk, creating intermediate directories if they don't exist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "089d7b3a850b10a5e9039a5e7f7a8b8f90314c9ea64adee0f3885ed9622c90ac2a14ee13f7b77957b4da765d0360393bab250e403e5695494e30285a62b87178" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/write@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/write" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/write/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/write.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mkdirp@0.5.6", + "author": "James Halliday", + "name": "mkdirp", + "version": "0.5.6", + "description": "Recursively mkdir, like `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mkdirp@0.5.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-mkdirp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-mkdirp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/substack/node-mkdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist@1.2.6", + "author": "James Halliday", + "name": "minimist", + "version": "1.2.6", + "description": "parse argument options", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c8e79386f0dd826a6336ddc8188db0f5873df3bef94186ef8f42c6cea9782bb95e0e27ade9dae8e571398c6b413ab0c34266c2df9179ff2b820ba69132f3f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist@1.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/minimist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/minimist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/minimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@2.1.0", + "name": "find-cache-dir", + "version": "2.1.0", + "description": "Finds the common standard cache directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "4eae8f8b1134c3f54c15f0a06ce36792240856897f2492fb9d1322db47eacc0e0d46cf407dea8c19e45d3e2df0221624c63781696876af1c1aa67e53bb722a39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-cache-dir@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/find-cache-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/find-cache-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/find-cache-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/make-dir@2.1.0", + "author": "Sindre Sorhus", + "name": "make-dir", + "version": "2.1.0", + "description": "Make a directory and its parents if needed - Think `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "db0df547b489b6278926742d19ced154bd92b4cdaf19855fa943af503c47e9b0ba6894f13f14c5d069c8802caeeed8e872489458061045bc5aeef2a7df8b39b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/make-dir@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/make-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/make-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/make-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pify@4.0.1", + "author": "Sindre Sorhus", + "name": "pify", + "version": "4.0.1", + "description": "Promisify a callback-style function", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9d82c018f9f4e7befee423b69ac5bab058d6f4007881d2a04ef3d3d928f9284e618e81d6eb1c3283fb40765f8b937c9fc54f5474f6bf604ec8d48cd268b6ea2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pify@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@5.7.1", + "name": "semver", + "version": "5.7.1", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@5.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pkg-dir@3.0.0", + "author": "Sindre Sorhus", + "name": "pkg-dir", + "version": "3.0.0", + "description": "Find the root directory of a Node.js project or npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "73aa6fdce13bf26719f7672479b543aa0d1a592a0a84e4dbc0257aa9b096324e78ea600bf696659f4f90b0dff243b7e4b9c778fb224f2eb0815cdb7c46e93e12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pkg-dir@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pkg-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pkg-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pkg-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-up@3.0.0", + "author": "Sindre Sorhus", + "name": "find-up", + "version": "3.0.0", + "description": "Find a file or directory by walking up parent directories", + "hashes": [ + { + "alg": "SHA-512", + "content": "d720fa4662c8d5705fc6e82f391c25724e9fef9b582fe891d23ab0b0eacec4c672198a94b83849d25e005dd3b5897fc54ecf5c040304935816484c759126f296" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-up@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/find-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/find-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/find-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/locate-path@3.0.0", + "author": "Sindre Sorhus", + "name": "locate-path", + "version": "3.0.0", + "description": "Get the first path that exists on disk of multiple paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec03bbe3cc169c884da80b9ab72d995879101d148d7cf548b0f21fc043963b6d8099aa15ad66af94e70c4799f34cb358be9dfa5f6db4fe669a46cade7351bae4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/locate-path@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/locate-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/locate-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/locate-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-locate@3.0.0", + "author": "Sindre Sorhus", + "name": "p-locate", + "version": "3.0.0", + "description": "Get the first fulfilled promise that satisfies the provided testing function", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7ed76c3f4e8fb81857e0261044a620dc2e8cd12467a063e122effcf4b522e4326c4664dc9b54c49f5a3f5a267f19e4573b74150d24e39580fbf61fb230ba549" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-locate@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-locate#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-locate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-locate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-limit@2.3.0", + "author": "Sindre Sorhus", + "name": "p-limit", + "version": "2.3.0", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-limit@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-limit#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-limit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-limit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-try@2.2.0", + "author": "Sindre Sorhus", + "name": "p-try", + "version": "2.2.0", + "description": "`Start a promise chain", + "hashes": [ + { + "alg": "SHA-512", + "content": "4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-try@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-try#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-try/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-try.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/foreach@2.0.6", + "author": "Manuel Stofer", + "name": "foreach", + "version": "2.0.6", + "description": "foreach component + npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "93a180183caa2def4969e6c2b050a8b9d3cf59f8a12aef29ca5617465a8fd49ee6b37f623e84ed9367ef88d82521e404c1d8746d078a274d593f2bb242f2b3c2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 Manuel Stofer\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/foreach@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/manuelstofer/foreach#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/manuelstofer/foreach/issues" + }, + { + "type": "vcs", + "url": "git://github.com/manuelstofer/foreach.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/foreground-child@1.5.6", + "author": "Isaac Z. Schlueter", + "name": "foreground-child", + "version": "1.5.6", + "description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd3398fb84ca574325f373d725063e24541a1cd577f25cd00c8cf35d88359167412de9c682866102cd022a0cc8df5be2da9584a5032afd88b86e92b008f930ee" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/foreground-child@1.5.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tapjs/foreground-child#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tapjs/foreground-child/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tapjs/foreground-child.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cross-spawn@4.0.2", + "author": "IndigoUnited", + "name": "cross-spawn", + "version": "4.0.2", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "hashes": [ + { + "alg": "SHA-512", + "content": "a53810279282d1dda1718f1ec8bd48ce504f6234e4c87ef65d164f9cbc8abacda605f36342cde496a6c95365482ea66bc80654b7d24e6f787f996332db7fdfe4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 IndigoUnited\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cross-spawn@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/IndigoUnited/node-cross-spawn/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/IndigoUnited/node-cross-spawn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/forever-agent@0.6.1", + "author": "Mikeal Rogers", + "name": "forever-agent", + "version": "0.6.1", + "description": "HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f428b60f866eb379a738973de8277a3ae6abe040270fb9b8b2a2d66b5ea11a1b884d6a03583bca9d954ad7e6fc2abfda21a9e4ff6778fafb25b4ebbc9659d53" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/forever-agent@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/forever-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/forever-agent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/forever-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/form-data@2.5.1", + "author": "Felix Geisendörfer", + "name": "form-data", + "version": "2.5.1", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b6d4ddd63a6104511824e81f462ce13846e58e15fdbc2e187da8661e3651aae150d7525272dad876b2504d53c1a9f04ce5a1864e89b649eede5e708ac54a354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/form-data@2.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/form-data/form-data#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/form-data/form-data/issues" + }, + { + "type": "vcs", + "url": "git://github.com/form-data/form-data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime-types@2.1.35", + "name": "mime-types", + "version": "2.1.35", + "description": "The ultimate javascript content-type utility.", + "hashes": [ + { + "alg": "SHA-512", + "content": "64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime-types@2.1.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/mime-types#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/mime-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/mime-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime-db@1.52.0", + "name": "mime-db", + "version": "1.52.0", + "description": "Media Type Database", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015-2022 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime-db@1.52.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/mime-db#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/mime-db/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/mime-db.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/formidable@1.2.6", + "name": "formidable", + "version": "1.2.6", + "description": "(DEPRECATED! Install formidable@v2) A node.js module for parsing form data, especially file uploads.", + "hashes": [ + { + "alg": "SHA-512", + "content": "29ca5b729b8b34ec2b1239dba4c0b4812f97f1c883a19135924ab36ade1af2fae9adffacf6928d43f408c167db7ece25b60985977303d7bed235392f7b707019" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011 Felix Geisendörfer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/formidable@1.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/node-formidable/formidable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/node-formidable/formidable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/node-formidable/formidable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/functional-red-black-tree@1.0.1", + "author": "Mikola Lysenko", + "name": "functional-red-black-tree", + "version": "1.0.1", + "description": "A fully persistent balanced binary search tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "76c28d40d763eb10374fe4250030c0ee6392957d2a88c20d8e7d1c82bf9e1871ac6d21f34da6dc228833dbea7f8aa3f55ece843ffb12d926ea1fe6eb1936ead2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2013 Mikola Lysenko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/functional-red-black-tree@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikolalysenko/functional-red-black-tree#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikolalysenko/functional-red-black-tree/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mikolalysenko/functional-red-black-tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-caller-file@1.0.3", + "author": "Stefan Penner", + "name": "get-caller-file", + "version": "1.0.3", + "description": "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "hashes": [ + { + "alg": "SHA-512", + "content": "dedeab553a1ea197d848677c6282c54760c992242b22252b19c8ef157da60f0ddb9fa9363adc073744cd08b6c13bec3ca93be29a10e4bfe2d2b1c6c9635bc4eb" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License (ISC)\nCopyright 2018 Stefan Penner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-caller-file@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/get-caller-file#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/get-caller-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/get-caller-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-func-name@2.0.0", + "author": "Jake Luer", + "name": "get-func-name", + "version": "2.0.0", + "description": "Utility for getting a function's name for node and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e6d22c58b5a499fd5ec2f0526bb5922e04123e89280bfb502af36cd2bbc550341e12dc693c7bb42cdd5c010c902199165c16a925ded42edfa83f1688792398a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Jake Luer (http://alogicalparadox.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-func-name@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/get-func-name#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/get-func-name/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/get-func-name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/getpass@0.1.7", + "author": "Alex Wilson", + "name": "getpass", + "version": "0.1.7", + "description": "getpass for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1fce3f49c4e2df27e5c62e147ccdedee9cdd0a642819c224920f3d7af151118caf1697c91549d72eda4b29778b38c2d01ad72feaad5462000d1672556cbb49e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/getpass@0.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arekinath/node-getpass#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/arekinath/node-getpass/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/arekinath/node-getpass.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globals@11.12.0", + "author": "Sindre Sorhus", + "name": "globals", + "version": "11.12.0", + "description": "Global identifiers from different JavaScript environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e069fc410652222c252a7bc1cbffcba30efa557d5289dc5aac6e15f9bc781c3358d8327c177a1b3f8878a43d8c29b28681fdf60d793374fe41a5471638b354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globals@11.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/growl@1.10.5", + "author": "TJ Holowaychuk", + "name": "growl", + "version": "1.10.5", + "description": "Growl unobtrusive notifications", + "hashes": [ + { + "alg": "SHA-512", + "content": "a81af83ae10b9213de9d6ea0a0a5578afe3b512ddc95bdff21bb9617d28d2848a3032f68787c54f488338ef2611e453385a8fbace503efe6065aa5232e9e6848" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/growl@1.10.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/node-growl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/node-growl/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tj/node-growl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/handlebars@4.7.7", + "author": "Yehuda Katz", + "name": "handlebars", + "version": "4.7.7", + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "hashes": [ + { + "alg": "SHA-512", + "content": "6807179b93807c4ffc21791c66f09ea4a5375735b5ff7f456f966ea8cb6023f853f17d9882832f058e5d2e1abf7293afc3b2e4d672bf505ef568b1bf66755844" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2019 by Yehuda Katz\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/handlebars@4.7.7", + "externalReferences": [ + { + "type": "website", + "url": "http://www.handlebarsjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wycats/handlebars.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wycats/handlebars.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/neo-async@2.6.2", + "name": "neo-async", + "version": "2.6.2", + "description": "Neo-Async is a drop-in replacement for Async, it almost fully covers its functionality and runs faster ", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Suguru Motegi\nBased on Async.js, Copyright Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/neo-async@2.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/suguru03/neo-async" + }, + { + "type": "issue-tracker", + "url": "https://github.com/suguru03/neo-async/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/suguru03/neo-async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.6.1", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.6.1", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "\nCopyright (c) 2009-2011, Mozilla Foundation and contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the names of the Mozilla Foundation nor the names of project\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-js@3.16.3", + "author": "Mihai Bazon", + "name": "uglify-js", + "version": "3.16.3", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8babfe32da98dc537be1961b1e5c6189ed56c53b8a4100dbb493097c5426bd28423457c55f648c76172df0d358924c0fe91b02994a6bbff88e1eb4b34376de7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2019 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/uglify-js@3.16.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mishoo/UglifyJS#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mishoo/UglifyJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mishoo/UglifyJS.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wordwrap@1.0.0", + "author": "James Halliday", + "name": "wordwrap", + "version": "1.0.0", + "description": "Wrap those words. Show them at what columns to start and stop.", + "hashes": [ + { + "alg": "SHA-512", + "content": "82f57324594fc9c29ce5d64de323e43fcc3b0dcdfb06d3f5c9ccc49de39be2eab7e295d972faed45399657c5be5267be5c2c4a81b8ccfa77af93214f3326dde1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wordwrap@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-wordwrap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-wordwrap/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/node-wordwrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/har-schema@2.0.0", + "author": "Ahmad Nassri", + "name": "har-schema", + "version": "2.0.0", + "description": "JSON Schema for HTTP Archive (HAR)", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aa96ecface1197f1cc9169342514c3f0f346d22551b6c7f7056fc64f85420b1a01e46bd4aca24082390829bde78f7abaa27593ab4f5e22a6a7c96fb20b716e5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Ahmad Nassri \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/har-schema@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ahmadnassri/har-schema" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ahmadnassri/har-schema/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ahmadnassri/har-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/har-validator@5.1.5", + "author": "Ahmad Nassri", + "name": "har-validator", + "version": "5.1.5", + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e64f64f49658dbc5d4197eca6c9e8f6182b1b7522afa2ace5a7e2b26eb6a68c6a04ceac0e7304b8f9b34eaf17374384c2a28b2dd8758d0237ab213ae8dcdbdf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Ahmad Nassri \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/har-validator@5.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ahmadnassri/node-har-validator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ahmadnassri/node-har-validator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ahmadnassri/node-har-validator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv@6.12.6", + "author": "Evgeny Poberezkin", + "name": "ajv", + "version": "6.12.6", + "description": "Another JSON Schema Validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "023af821c317abfd9098c904992bf1a9f2cde731a627dda01d701e397ab539e9281f6adf0cdb20743a0bd9fed06910b2ec6fc4e93a71055751b8dada333b461f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ajv@6.12.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ajv-validator/ajv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ajv-validator/ajv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ajv-validator/ajv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-deep-equal@3.1.3", + "author": "Evgeny Poberezkin", + "name": "fast-deep-equal", + "version": "3.1.3", + "description": "Fast deep equal", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ee797efced664a095d08b38fd3d9cc8074ce3ec754b73175ce0216af135cacfd6e3648700f69c2d3421b9c8dadb640162b7c6c39d0cdac4625cfb531aff589b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-deep-equal@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/fast-deep-equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/fast-deep-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-schema-traverse@0.4.1", + "author": "Evgeny Poberezkin", + "name": "json-schema-traverse", + "version": "0.4.1", + "description": "Traverse JSON Schema passing each schema object to callback", + "hashes": [ + { + "alg": "SHA-512", + "content": "e090ff22fce0ecfa16f0dcddac14abdd41700bd98782f23b67acf740606c48780a6914d40e6c99000289a3651b1b591455f4bd592f1b8b7e8de3d535c70e370c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-schema-traverse@0.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/json-schema-traverse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/json-schema-traverse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/json-schema-traverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uri-js@4.4.1", + "author": "Gary Court", + "name": "uri-js", + "version": "4.4.1", + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright 2011 Gary Court. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1.\tRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2.\tRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY GARY COURT \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Gary Court.\n" + } + } + } + ], + "purl": "pkg:npm/uri-js@4.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/garycourt/uri-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/garycourt/uri-js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/garycourt/uri-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/punycode@2.1.1", + "author": "Mathias Bynens", + "name": "punycode", + "version": "2.1.1", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e660d1255bbcaf3bb4d5df70a34a6bd2884db2728ddb576733bbf3b30ca74c35565059fc426e55112e17fee3bb32411067b637cb75dfc7d1e82bcc81bea1a15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/punycode@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/punycode" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bestiejs/punycode.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bestiejs/punycode.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/he@1.2.0", + "author": "Mathias Bynens", + "name": "he", + "version": "1.2.0", + "description": "A robust HTML entities encoder/decoder with full Unicode support.", + "hashes": [ + { + "alg": "SHA-512", + "content": "17fd439d418fa29391662d278be0afac28074391721001d12d2029b9858c9ab6d2c28376327ffb93e1a5dfc8099d1ef2c83664e962d7c221a877524e58d0ca1b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/he@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/he" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/he/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/he.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hosted-git-info@2.8.9", + "author": "Rebecca Turner", + "name": "hosted-git-info", + "version": "2.8.9", + "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b120301bf4bb26e83a0e27bc47fb9f97e32d4b53fe078b9d0bf42e6c22cc0adc9cd42d2e1bc24d45be374182f611e1bcd3e2db944220b5e451367f91db2ef63" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hosted-git-info@2.8.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/hosted-git-info" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/hosted-git-info/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/hosted-git-info.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-signature@1.3.6", + "author": "Joyent, Inc", + "name": "http-signature", + "version": "1.3.6", + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dda76bb03eb3aa8e06b13aad3bb172ade8c736ff8d82221f01fbfaf3e8d5945992afd386cbbcebc4e35c78544b2af9e7640e636f14015f5bbd3e907a5a2df61b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-signature@1.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-http-signature/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-http-signature/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-http-signature.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsprim@2.0.2", + "name": "jsprim", + "version": "2.0.2", + "description": "utilities for primitive JavaScript types", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f66d238c01cfdc88bcfa0f38235651893fdf81ac95aee540c62bbd02da2c1e0b940121e15fd195d1bc68c48f6b9882b63632400086c4961c35a516d12ba195b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/jsprim@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-jsprim#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-jsprim/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joyent/node-jsprim.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extsprintf@1.3.0", + "name": "extsprintf", + "version": "1.3.0", + "description": "extended POSIX-style sprintf", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ab937e5ef327422838ff02b0a5a3556b3d598df33a61e55e00b47c08b8786f317b0a7fbdd44f704e0fe6b30485bedf0389e058441fbcf2689085bc286362f30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/extsprintf@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davepacheco/node-extsprintf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davepacheco/node-extsprintf/issues" + }, + { + "type": "vcs", + "url": "git://github.com/davepacheco/node-extsprintf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-schema@0.4.0", + "author": "Kris Zyp", + "name": "json-schema", + "version": "0.4.0", + "description": "JSON Schema validation and specifications", + "hashes": [ + { + "alg": "SHA-512", + "content": "81624e59816b850f23ee9566d0433c4a5afe10f56ad4f85fea5bf3bc3fd609eaa4af1fdfdb1048d313ac4514bdc429f7238bcab4fe75f5dbecdd33f4f6bdb8c1" + } + ], + "licenses": [ + { + "license": { + "name": "(AFL-2.1 OR BSD-3-Clause)", + "text": { + "content": "Dojo is available under *either* the terms of the BSD 3-Clause \"New\" License *or* the\r\nAcademic Free License version 2.1. As a recipient of Dojo, you may choose which\r\nlicense to receive this code under (except as noted in per-module LICENSE\r\nfiles). Some modules may not be the copyright of the Dojo Foundation. These\r\nmodules contain explicit declarations of copyright in both the LICENSE files in\r\nthe directories in which they reside and in the code itself. No external\r\ncontributions are allowed under licenses which are fundamentally incompatible\r\nwith the AFL-2.1 OR and BSD-3-Clause licenses that Dojo is distributed under.\r\n\r\nThe text of the AFL-2.1 and BSD-3-Clause licenses is reproduced below. \r\n\r\n-------------------------------------------------------------------------------\r\nBSD 3-Clause \"New\" License:\r\n**********************\r\n\r\nCopyright (c) 2005-2015, The Dojo Foundation\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n * Redistributions of source code must retain the above copyright notice, this\r\n list of conditions and the following disclaimer.\r\n * Redistributions in binary form must reproduce the above copyright notice,\r\n this list of conditions and the following disclaimer in the documentation\r\n and/or other materials provided with the distribution.\r\n * Neither the name of the Dojo Foundation nor the names of its contributors\r\n may be used to endorse or promote products derived from this software\r\n without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\r\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\n-------------------------------------------------------------------------------\r\nThe Academic Free License, v. 2.1:\r\n**********************************\r\n\r\nThis Academic Free License (the \"License\") applies to any original work of\r\nauthorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the\r\nfollowing notice immediately following the copyright notice for the Original\r\nWork:\r\n\r\nLicensed under the Academic Free License version 2.1\r\n\r\n1) Grant of Copyright License. Licensor hereby grants You a world-wide,\r\nroyalty-free, non-exclusive, perpetual, sublicenseable license to do the\r\nfollowing:\r\n\r\na) to reproduce the Original Work in copies;\r\n\r\nb) to prepare derivative works (\"Derivative Works\") based upon the Original\r\nWork;\r\n\r\nc) to distribute copies of the Original Work and Derivative Works to the\r\npublic;\r\n\r\nd) to perform the Original Work publicly; and\r\n\r\ne) to display the Original Work publicly.\r\n\r\n2) Grant of Patent License. Licensor hereby grants You a world-wide,\r\nroyalty-free, non-exclusive, perpetual, sublicenseable license, under patent\r\nclaims owned or controlled by the Licensor that are embodied in the Original\r\nWork as furnished by the Licensor, to make, use, sell and offer for sale the\r\nOriginal Work and Derivative Works.\r\n\r\n3) Grant of Source Code License. The term \"Source Code\" means the preferred\r\nform of the Original Work for making modifications to it and all available\r\ndocumentation describing how to modify the Original Work. Licensor hereby\r\nagrees to provide a machine-readable copy of the Source Code of the Original\r\nWork along with each copy of the Original Work that Licensor distributes.\r\nLicensor reserves the right to satisfy this obligation by placing a\r\nmachine-readable copy of the Source Code in an information repository\r\nreasonably calculated to permit inexpensive and convenient access by You for as\r\nlong as Licensor continues to distribute the Original Work, and by publishing\r\nthe address of that information repository in a notice immediately following\r\nthe copyright notice that applies to the Original Work.\r\n\r\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names\r\nof any contributors to the Original Work, nor any of their trademarks or\r\nservice marks, may be used to endorse or promote products derived from this\r\nOriginal Work without express prior written permission of the Licensor. Nothing\r\nin this License shall be deemed to grant any rights to trademarks, copyrights,\r\npatents, trade secrets or any other intellectual property of Licensor except as\r\nexpressly stated herein. No patent license is granted to make, use, sell or\r\noffer to sell embodiments of any patent claims other than the licensed claims\r\ndefined in Section 2. No right is granted to the trademarks of Licensor even if\r\nsuch marks are included in the Original Work. Nothing in this License shall be\r\ninterpreted to prohibit Licensor from licensing under different terms from this\r\nLicense any Original Work that Licensor otherwise would have a right to\r\nlicense.\r\n\r\n5) This section intentionally omitted.\r\n\r\n6) Attribution Rights. You must retain, in the Source Code of any Derivative\r\nWorks that You create, all copyright, patent or trademark notices from the\r\nSource Code of the Original Work, as well as any notices of licensing and any\r\ndescriptive text identified therein as an \"Attribution Notice.\" You must cause\r\nthe Source Code for any Derivative Works that You create to carry a prominent\r\nAttribution Notice reasonably calculated to inform recipients that You have\r\nmodified the Original Work.\r\n\r\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that\r\nthe copyright in and to the Original Work and the patent rights granted herein\r\nby Licensor are owned by the Licensor or are sublicensed to You under the terms\r\nof this License with the permission of the contributor(s) of those copyrights\r\nand patent rights. Except as expressly stated in the immediately proceeding\r\nsentence, the Original Work is provided under this License on an \"AS IS\" BASIS\r\nand WITHOUT WARRANTY, either express or implied, including, without limitation,\r\nthe warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR\r\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU.\r\nThis DISCLAIMER OF WARRANTY constitutes an essential part of this License. No\r\nlicense to Original Work is granted hereunder except under this disclaimer.\r\n\r\n8) Limitation of Liability. Under no circumstances and under no legal theory,\r\nwhether in tort (including negligence), contract, or otherwise, shall the\r\nLicensor be liable to any person for any direct, indirect, special, incidental,\r\nor consequential damages of any character arising as a result of this License\r\nor the use of the Original Work including, without limitation, damages for loss\r\nof goodwill, work stoppage, computer failure or malfunction, or any and all\r\nother commercial damages or losses. This limitation of liability shall not\r\napply to liability for death or personal injury resulting from Licensor's\r\nnegligence to the extent applicable law prohibits such limitation. Some\r\njurisdictions do not allow the exclusion or limitation of incidental or\r\nconsequential damages, so this exclusion and limitation may not apply to You.\r\n\r\n9) Acceptance and Termination. If You distribute copies of the Original Work or\r\na Derivative Work, You must make a reasonable effort under the circumstances to\r\nobtain the express assent of recipients to the terms of this License. Nothing\r\nelse but this License (or another written agreement between Licensor and You)\r\ngrants You permission to create Derivative Works based upon the Original Work\r\nor to exercise any of the rights granted in Section 1 herein, and any attempt\r\nto do so except under the terms of this License (or another written agreement\r\nbetween Licensor and You) is expressly prohibited by U.S. copyright law, the\r\nequivalent laws of other countries, and by international treaty. Therefore, by\r\nexercising any of the rights granted to You in Section 1 herein, You indicate\r\nYour acceptance of this License and all of its terms and conditions.\r\n\r\n10) Termination for Patent Action. This License shall terminate automatically\r\nand You may no longer exercise any of the rights granted to You by this License\r\nas of the date You commence an action, including a cross-claim or counterclaim,\r\nagainst Licensor or any licensee alleging that the Original Work infringes a\r\npatent. This termination provision shall not apply for an action alleging\r\npatent infringement by combinations of the Original Work with other software or\r\nhardware.\r\n\r\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this\r\nLicense may be brought only in the courts of a jurisdiction wherein the\r\nLicensor resides or in which Licensor conducts its primary business, and under\r\nthe laws of that jurisdiction excluding its conflict-of-law provisions. The\r\napplication of the United Nations Convention on Contracts for the International\r\nSale of Goods is expressly excluded. Any use of the Original Work outside the\r\nscope of this License or after its termination shall be subject to the\r\nrequirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et\r\nseq., the equivalent laws of other countries, and international treaty. This\r\nsection shall survive the termination of this License.\r\n\r\n12) Attorneys Fees. In any action to enforce the terms of this License or\r\nseeking damages relating thereto, the prevailing party shall be entitled to\r\nrecover its costs and expenses, including, without limitation, reasonable\r\nattorneys' fees and costs incurred in connection with such action, including\r\nany appeal of such action. This section shall survive the termination of this\r\nLicense.\r\n\r\n13) Miscellaneous. This License represents the complete agreement concerning\r\nthe subject matter hereof. If any provision of this License is held to be\r\nunenforceable, such provision shall be reformed only to the extent necessary to\r\nmake it enforceable.\r\n\r\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether\r\nin upper or lower case, means an individual or a legal entity exercising rights\r\nunder, and complying with all of the terms of, this License. For legal\r\nentities, \"You\" includes any entity that controls, is controlled by, or is\r\nunder common control with you. For purposes of this definition, \"control\" means\r\n(i) the power, direct or indirect, to cause the direction or management of such\r\nentity, whether by contract or otherwise, or (ii) ownership of fifty percent\r\n(50%) or more of the outstanding shares, or (iii) beneficial ownership of such\r\nentity.\r\n\r\n15) Right to Use. You may use the Original Work in all ways not otherwise\r\nrestricted or conditioned by this License or by law, and Licensor promises not\r\nto interfere with or be responsible for such uses by You.\r\n\r\nThis license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved.\r\nPermission is hereby granted to copy and distribute this license without\r\nmodification. This license may not be modified without the express written\r\npermission of its copyright owner.\r\n" + } + } + } + ], + "purl": "pkg:npm/json-schema@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriszyp/json-schema#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kriszyp/json-schema/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kriszyp/json-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/verror@1.10.0", + "name": "verror", + "version": "1.10.0", + "description": "richer JavaScript errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdeb9f726c6b8b87b75d2ad3d31c1f511ee482e2246b105ea2c0e0d34c835a1938f7077091252bbefb26ee773be5ed4f532bc87998fa9d2f15411633dbf4b85e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2016, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/verror@1.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davepacheco/node-verror#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davepacheco/node-verror/issues" + }, + { + "type": "vcs", + "url": "git://github.com/davepacheco/node-verror.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-util-is@1.0.2", + "author": "Isaac Z. Schlueter", + "name": "core-util-is", + "version": "1.0.2", + "description": "The `util.is*` functions introduced in Node v0.12.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65006f8b50dca49e060ea6a78ee719d878f7c043b9a590d2f3d0566e472bbddc64b09a2bc140c365a997f65745929f5ac369660432e090e6c40380d6349f4561" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-util-is@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/core-util-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/core-util-is/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/core-util-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sshpk@1.17.0", + "author": "Joyent, Inc", + "name": "sshpk", + "version": "1.17.0", + "description": "A library for finding and using SSH public keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffd1c812cd595c68523c4f17e82726ecd6a6d73f0a7280aa3dd23b79c9b5377dc4cc07ad59a86f41656a2d9b5a650f880ca5f8232036a34801cea20c9006a01d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sshpk@1.17.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arekinath/node-sshpk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/arekinath/node-sshpk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joyent/node-sshpk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ignore@3.3.10", + "author": "kael", + "name": "ignore", + "version": "3.3.10", + "description": "Ignore is a manager and filter for .gitignore rules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e0b3de7591a326e465cfecc3afc4444835ede0b1a563516166f9464f4aaf7162b890024b32860d1cb274b429748d443e4d98d75aa571298f11b8f7e00a87fba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ignore@3.3.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kaelzhang/node-ignore#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kaelzhang/node-ignore/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kaelzhang/node-ignore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inquirer@3.3.0", + "author": "Simon Boudrias", + "name": "inquirer", + "version": "3.3.0", + "description": "A collection of common interactive command line user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ec6d9f29381302af1561eb518b1612b11547e8a02ad2dd721bbea3467544bed553f8d53056d88abd9ba7a6c08fc79f14dc56a875f4748b2ce9f250fbffaa79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/inquirer@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/Inquirer.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/Inquirer.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/Inquirer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash@4.17.21", + "author": "John-David Dalton", + "name": "lodash", + "version": "4.17.21", + "description": "Lodash modular utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright OpenJS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash@4.17.21", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mute-stream@0.0.7", + "author": "Isaac Z. Schlueter", + "name": "mute-stream", + "version": "0.0.7", + "description": "Bytes go in, but they don't come out (when muted).", + "hashes": [ + { + "alg": "SHA-512", + "content": "afae6709986b6d75dbe9d5ce0028a1600a47c3643aa55d0cdd5d0f4b177be0dd3e0fc9f301d100213ab6a008c0d63567288fad1af101529aa2321d3ead6eb30d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mute-stream@0.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/mute-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/mute-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/mute-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/run-async@2.4.1", + "author": "Simon Boudrias", + "name": "run-async", + "version": "2.4.1", + "description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6f56756fd356fc73546b03a129ec9912b63f391aebff62b31cc2a6109f08ec012d9c4e698f181063023a425bb46b4a874d4a8136fea83d3b86dc78dbd4b8381" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Simon Boudrias\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/run-async@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/run-async#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/run-async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/run-async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rx-lite@4.0.8", + "author": "Cloud Programmability Team", + "name": "rx-lite", + "version": "4.0.8", + "description": "Lightweight library for composing asynchronous and event-based operations in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ae9fd42e7302ba308ae9de6af2fd8ee1a83d6816a4d82d0e291b16874e321d6850d644618b8a4aa9eaef0b716267ce9a002e0f616a9f891a4f2c14852e10634" + } + ], + "purl": "pkg:npm/rx-lite@4.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Reactive-Extensions/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Reactive-Extensions/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Reactive-Extensions/RxJS.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rx-lite-aggregates@4.0.8", + "author": "Cloud Programmability Team", + "name": "rx-lite-aggregates", + "version": "4.0.8", + "description": "Lightweight library with aggregate functions for composing asynchronous and event-based operations in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "df13cd6465bdde80a388eecfb4ac512ba88e55805606fb5ff501c37d4db739cf9d2c8426015fff527c9757fca286ff35552fd4aa840f93835e812f04162e791e" + } + ], + "purl": "pkg:npm/rx-lite-aggregates@4.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Reactive-Extensions/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Reactive-Extensions/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Reactive-Extensions/RxJS.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/through@2.3.8", + "author": "Dominic Tarr", + "name": "through", + "version": "2.3.8", + "description": "simplified stream construction", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3cf6a83b3c8f3001dbd7eb46cc0cff9b1680f90ef866f682e1785a793b86b6405d1c4811ac057e2a66669d3ccbd5aa52c9041722f96a8618e00fbdc0de35256" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/through@2.3.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/through" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/through/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dominictarr/through.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/invariant@2.2.4", + "author": "Andres Suarez", + "name": "invariant", + "version": "2.2.4", + "description": "invariant", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6125f41506e689339ada3a926349f9220fa0696c213836cfff2da5e5eb0198b54058f379d64ba45ff6d5e6d9ef1568aeb42448d895d6cf89ffc0d81d42da034" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/invariant@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zertosh/invariant#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zertosh/invariant/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zertosh/invariant.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loose-envify@1.4.0", + "author": "Andres Suarez", + "name": "loose-envify", + "version": "1.4.0", + "description": "Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST", + "hashes": [ + { + "alg": "SHA-512", + "content": "972bb13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Andres Suarez \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loose-envify@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zertosh/loose-envify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zertosh/loose-envify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/zertosh/loose-envify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/invert-kv@1.0.0", + "author": "Sindre Sorhus", + "name": "invert-kv", + "version": "1.0.0", + "description": "Invert the key/value of an object. Example: {foo: 'bar'} → {bar: 'foo'}", + "hashes": [ + { + "alg": "SHA-512", + "content": "c60b36347f4013aeae712ab870d1b59e1485821af997ab5d2f5e4f93e8e5e3a6e69816a9828698fc069c5f2683ce702a9862fdf5388b49080efd76b315229879" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/invert-kv@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/invert-kv#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/invert-kv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/invert-kv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ip-regex@2.1.0", + "author": "Sindre Sorhus", + "name": "ip-regex", + "version": "2.1.0", + "description": "Regular expression for matching IP addresses (IPv4 & IPv6)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e7cc969a51e9a7b5587dc753c0c4efc0c9aac7f1257f18ddf515d30f232c6cbee52d69a133294b12a89854b2ae2f3399a958225970fd31f47ad95bfcf5547193" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ip-regex@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ip-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ip-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ip-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-builtin-module@1.0.0", + "author": "Sindre Sorhus", + "name": "is-builtin-module", + "version": "1.0.0", + "description": "Check if a string matches the name of a Node.js builtin module", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b6c33ec9ba8e695194c54157abf5cfbd6f8ab0dc8e53fc21d0c50ca156eec125e97a0b6d859ac2c85ac76c798c8ec3ac73f4fab2f5e2564a443bfb788dd4757" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-builtin-module@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-builtin-module#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-builtin-module/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-builtin-module.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-ip@2.0.0", + "author": "Sindre Sorhus", + "name": "is-ip", + "version": "2.0.0", + "description": "Check if a string is an IP address", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4c4e7d1db5e1c44edc94c7ca71a8cc20e613018b7a6f97282527e6fbf4a38271ad29a36df7dfb2db555d87978c6632f7f0fbe9639ced3ffb91ba1bed12ce1ea" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-ip@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-ip#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-ip/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-ip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-promise@2.2.2", + "author": "ForbesLindesay", + "name": "is-promise", + "version": "2.2.2", + "description": "Test whether an object looks like a promises-a+ promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa53f8ffa94a5017d08d9da97714e166f2d401a7e665bf0e03115bf175ed890992df920d82bf3985d386a04b35db87b3d450a7649b7a8dabbf4fe6a5879f1015" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-promise@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/then/is-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/then/is-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/then/is-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-resolvable@1.1.0", + "author": "Shinnosuke Watanabe", + "name": "is-resolvable", + "version": "1.1.0", + "description": "Check if a module ID is resolvable with require()", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa00d85c5491e56bc47ee4b974c8faa133046ebad268cd02ac5936622abf8179c1bc3f6931ada3197c728462dfbe1669b8c65ed7c089a45c40b77091b38d8d32" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright 2018 Shinnosuke Watanabe\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-resolvable@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shinnn/is-resolvable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shinnn/is-resolvable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shinnn/is-resolvable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-typedarray@1.0.0", + "author": "Hugh Kennedy", + "name": "is-typedarray", + "version": "1.0.0", + "description": "Detect whether or not an object is a Typed Array", + "hashes": [ + { + "alg": "SHA-512", + "content": "732039ea208c1c087909dce32486b86a8849c9e3b561bc0b8b725cdf9326454ea9a2ba058c8199cd4ceea468913ce8e01e0f532eee37c5ba705e4e76ddf33128" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-typedarray@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hughsk/is-typedarray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hughsk/is-typedarray/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hughsk/is-typedarray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-windows@1.0.2", + "author": "Jon Schlinkert", + "name": "is-windows", + "version": "1.0.2", + "description": "Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7972b55089ead9b3e68f25fa7b754723330ba1b73827de22e005a7f87a6adce5392a4ad10bde8e01c4773d127fa46bba9bc4d19c11cff5d917415b13fc239520" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-windows@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-windows" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-windows/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-windows.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isstream@0.1.2", + "author": "Rod Vagg", + "name": "isstream", + "version": "0.1.2", + "description": "Determine if an object is a Stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "6258f3edf7f23dbacba4b9e0accb59ecd76e52056f8bac06f5127d21473209de7d610f75d4f049a6138351c6ce55ba987f17b5c2e61ffcb27c3dab8c470b0cfe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2015 Rod Vagg\n---------------------------\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/isstream@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/isstream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/isstream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/isstream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-coverage@2.0.5", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-coverage", + "version": "2.0.5", + "description": "Data library for istanbul coverage objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1a5f39ee10f089bc69cc4917ede2e743443b5bd55de991090c308e4b23ee87b90cf9a10e09d94167d47f36ada037a89b7238b924c15a880814248e71ad9f998" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-coverage@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-hook@2.0.7", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-hook", + "version": "2.0.7", + "description": "Hooks for require, vm and script used in istanbul", + "hashes": [ + { + "alg": "SHA-512", + "content": "beb473b54f55451143c82f9a9257cba1e5f235d4df81ad84237b9d0c69f8719e9fa525e91cb57d5fa087bdfa0c08fb60820f33bc30e60b86fdc5fbb4cfafe594" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-hook@2.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-instrument@2.3.2", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-instrument", + "version": "2.3.2", + "description": "Core istanbul API for JS code coverage", + "hashes": [ + { + "alg": "SHA-512", + "content": "97b4c3fd59c1b08076389bd2cb168b5bf69bd7ef7677164d1fdc0b1fbb873cf8a8cb7259f2d9f1d945d474a99d92098fd8414fce0eb8093a143fa7404b7537d9" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-instrument@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/istanbuljs/istanbuljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/generator@7.0.0-beta.51", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "generator", + "version": "7.0.0-beta.51", + "description": "Turns an AST into code.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d0eec55434c733f5645011a8d64f4546965c434b1d2dc7450663c6f7801cb3830cc4e431c745f273d49e3da7d032a71fe43023dc8584b18a7ba29ce55000391" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/generator@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/types@7.0.0-beta.51", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "types", + "version": "7.0.0-beta.51", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "abe324b91c2d8c6ea1a2cdb2524072e0a4784513c08749e4f07e66d114909bed1bcf54f770d656171c4d9e9ec032b2b773df81f854563ecb3e79034d449cbb2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/types@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-types" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-fast-properties@2.0.0", + "author": "Sindre Sorhus", + "name": "to-fast-properties", + "version": "2.0.0", + "description": "Force V8 to use fast properties for an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "fce68a2b4c58aecdc39b1458a8bff20dcf85c455156210e55cc8519afdf3f75e70d87175b67375a26077e788fc55418efe16d1cf20fa637b00eefec64bf71ea2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014 Petka Antonov\n 2015 Sindre Sorhus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-fast-properties@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/to-fast-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/to-fast-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/to-fast-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsesc@2.5.2", + "author": "Mathias Bynens", + "name": "jsesc", + "version": "2.5.2", + "description": "Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.", + "hashes": [ + { + "alg": "SHA-512", + "content": "398bbb5c4ce39024370b93ecdd0219b107cda6aa09c99640f7dc1df5a59dd39342b42e6958e91284ada690be875d047afc2cb695b35d3e5641a6e4075c4eb780" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jsesc@2.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/jsesc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/jsesc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/jsesc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.5.7", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.5.7", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "\nCopyright (c) 2009-2011, Mozilla Foundation and contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the names of the Mozilla Foundation nor the names of project\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map@0.5.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/trim-right@1.0.1", + "author": "Sindre Sorhus", + "name": "trim-right", + "version": "1.0.1", + "description": "Similar to String#trim() but removes only whitespace on the right", + "hashes": [ + { + "alg": "SHA-512", + "content": "5991971acb6609681e7af8132f9e21ac2bb0d5dc8c408cd6cbb65fa9125f4a6259070925235e5e826432b453fa6cf89d9b0dccf1de72128c25d678aae2f9aa67" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/trim-right@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/trim-right#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/trim-right/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/trim-right.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/parser@7.0.0-beta.51", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "parser", + "version": "7.0.0-beta.51", + "description": "A JavaScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbad9b55605ee74ba5a89c53885eac8904663b9b170a61190c0bd4662bbcebb535d1453040523b423888fcc81f597917f7ae9aa7dacc8a6b35adf124d39af400" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/parser@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/template@7.0.0-beta.51", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "template", + "version": "7.0.0-beta.51", + "description": "Generate an AST from a string template.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc56aba295943e046b8c1c924a53b085304f0e228295b94fad7dd304fac39cbe33c8dd7b46be89c279a9b1accaf23b8bc2ff10b1fe9f74e74397a78d561d1e74" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/template@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/code-frame@7.0.0-beta.51", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "code-frame", + "version": "7.0.0-beta.51", + "description": "Generate errors that contain a code frame that point to source locations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1bfdbfdeea88e31cd09748daa5bce9df2e2d5e0dd228ec1204edfe228b03a68ceac4c74096c77cddd969f927fb5e21d08abe8e285d3e2f65e42a83682d2d39bf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/highlight@7.0.0-beta.51", + "author": "suchipi", + "group": "@babel", + "name": "highlight", + "version": "7.0.0-beta.51", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "hashes": [ + { + "alg": "SHA-512", + "content": "05775f4f8b3e76c44790e42f3b131925180a4f40791bc55c65d617a5cb9f166f8a948cd3e0c2962ae4a1e37886d549d93bf9cd0a365078332c4f3a67730b51ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/highlight@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-highlight" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/traverse@7.0.0-beta.51", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "traverse", + "version": "7.0.0-beta.51", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd7d07181f23bde426fd4e60564b5e477f572e74daa5cab47c7ac67d38d12122e5b1c81bbb8d3433e6b86897081deb2d4503c922888b643cc6ba4f7d9c95e2ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/traverse@7.0.0-beta.51", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-function-name@7.0.0-beta.51", + "group": "@babel", + "name": "helper-function-name", + "version": "7.0.0-beta.51", + "description": "Helper function to change the property 'name' of every function", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd0542fa4e9828e6be60e41ea57aa9614ddd199278c5d2a2b39d49b192cbac7d0d87dcd9e06b7dae2e6241eaf366fece7c694c03e69a1f7c586905f0af856401" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.0.0-beta.51", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-get-function-arity@7.0.0-beta.51", + "group": "@babel", + "name": "helper-get-function-arity", + "version": "7.0.0-beta.51", + "description": "Helper function to get function arity", + "hashes": [ + { + "alg": "SHA-512", + "content": "cabe1eb017a0dadd40e30d42f3ea85aadfcc5aa49e19569893f12a0a1f1c58bde254dcb933278532d579db84d253b867d2a713d6ea1fc0ecf592e453566c2a11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/helper-get-function-arity@7.0.0-beta.51", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-split-export-declaration@7.0.0-beta.51", + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.0.0-beta.51", + "description": ">", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfbac07b1a6250858be896b7a327dda166c4a6b3db60492afff7b62f16b63b40eecdb1f1ab843ec25bed4dacb9719879048f723f00be8fc220ec11bbd196a5cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.0.0-beta.51", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-report@2.0.8", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-report", + "version": "2.0.8", + "description": "Base reporting library for istanbul", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c705e1b9ef71088a18406e5c20c6b49e9e9d036f2ead24c151fc7be57ab06cac24c3e5b914ba836d9f7815876f59092f36e1c18604f9fb4a0edc364fb6c54b1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-report@2.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@6.1.0", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "6.1.0", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-color@6.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-source-maps@2.0.1", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-source-maps", + "version": "2.0.1", + "description": "Source maps support for istanbul", + "hashes": [ + { + "alg": "SHA-512", + "content": "df4978d324a0fa0bc12dcc53acbcd1e19d974d18f71e044203fa76ae76ecff73a24daa23d39e2001bb8fe4370b3adc2a9b2e175bca97047ceb98fdbf6d0f62dc" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-source-maps@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/istanbuljs/istanbuljs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-reports@2.2.7", + "author": "Krishnan Anantheswaran", + "name": "istanbul-reports", + "version": "2.2.7", + "description": "istanbul reports", + "hashes": [ + { + "alg": "SHA-512", + "content": "baed45fcbd68e58e8bccf5525595cd3a80ff297a49b9ef5a78b45dd2c33db8c5df66fce8981d16c556a659be6e7bc900daf5561265bb106f80e67ddfd64a872a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-reports@2.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-escaper@2.0.2", + "author": "Andrea Giammarchi", + "name": "html-escaper", + "version": "2.0.2", + "description": "fast and safe way to escape and unescape &<>'\" chars", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f688cb5dd08e0cb7979889aa517480e3a7e5f37a55d0d2d144e094bb605c057af5d73263a9f66c8dad4bc28340fac2cf22aa444f05f28781bc228354a694b7e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (C) 2017-present by Andrea Giammarchi - @WebReflection\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-escaper@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WebReflection/html-escaper" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WebReflection/html-escaper/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WebReflection/html-escaper.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-yaml@3.14.1", + "author": "Vladimir Zapparov", + "name": "js-yaml", + "version": "3.14.1", + "description": "YAML 1.2 parser and serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24307ece5d727b62b37d3a4dff497ae7bb8897f723a4fb6e67a97e22992da7a6ebd36039a8fd0119a2ac199186880e4de356f04e4ce20480485a2ceca7052f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2011-2015 by Vitaly Puzrin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-yaml@3.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/js-yaml" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/js-yaml/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/js-yaml.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-parse-better-errors@1.0.2", + "author": "Kat Marchán", + "name": "json-parse-better-errors", + "version": "1.0.2", + "description": "JSON.parse with context information on error", + "hashes": [ + { + "alg": "SHA-512", + "content": "9abab264a7d7e4484bee1bea715e961b5c988e78deb980f30e185c00052babc3e8f3934140124ff990d44fbe6a650f7c22452806a76413192e90e53b4ecdb0af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright 2017 Kat Marchán\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-parse-better-errors@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/json-parse-better-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/json-parse-better-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/json-parse-better-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-schema@0.2.5", + "author": "Kris Zyp", + "name": "json-schema", + "version": "0.2.5", + "description": "JSON Schema validation and specifications", + "hashes": [ + { + "alg": "SHA-512", + "content": "81624e59816b850f23ee9566d0433c4a5afe10f56ad4f85fea5bf3bc3fd609eaa4af1fdfdb1048d313ac4514bdc429f7238bcab4fe75f5dbecdd33f4f6bdb8c1" + } + ], + "licenses": [ + { + "license": { + "name": "(AFL-2.1 OR BSD-3-Clause)", + "text": { + "content": "Dojo is available under *either* the terms of the BSD 3-Clause \"New\" License *or* the\r\nAcademic Free License version 2.1. As a recipient of Dojo, you may choose which\r\nlicense to receive this code under (except as noted in per-module LICENSE\r\nfiles). Some modules may not be the copyright of the Dojo Foundation. These\r\nmodules contain explicit declarations of copyright in both the LICENSE files in\r\nthe directories in which they reside and in the code itself. No external\r\ncontributions are allowed under licenses which are fundamentally incompatible\r\nwith the AFL-2.1 OR and BSD-3-Clause licenses that Dojo is distributed under.\r\n\r\nThe text of the AFL-2.1 and BSD-3-Clause licenses is reproduced below. \r\n\r\n-------------------------------------------------------------------------------\r\nBSD 3-Clause \"New\" License:\r\n**********************\r\n\r\nCopyright (c) 2005-2015, The Dojo Foundation\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n * Redistributions of source code must retain the above copyright notice, this\r\n list of conditions and the following disclaimer.\r\n * Redistributions in binary form must reproduce the above copyright notice,\r\n this list of conditions and the following disclaimer in the documentation\r\n and/or other materials provided with the distribution.\r\n * Neither the name of the Dojo Foundation nor the names of its contributors\r\n may be used to endorse or promote products derived from this software\r\n without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\r\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\n-------------------------------------------------------------------------------\r\nThe Academic Free License, v. 2.1:\r\n**********************************\r\n\r\nThis Academic Free License (the \"License\") applies to any original work of\r\nauthorship (the \"Original Work\") whose owner (the \"Licensor\") has placed the\r\nfollowing notice immediately following the copyright notice for the Original\r\nWork:\r\n\r\nLicensed under the Academic Free License version 2.1\r\n\r\n1) Grant of Copyright License. Licensor hereby grants You a world-wide,\r\nroyalty-free, non-exclusive, perpetual, sublicenseable license to do the\r\nfollowing:\r\n\r\na) to reproduce the Original Work in copies;\r\n\r\nb) to prepare derivative works (\"Derivative Works\") based upon the Original\r\nWork;\r\n\r\nc) to distribute copies of the Original Work and Derivative Works to the\r\npublic;\r\n\r\nd) to perform the Original Work publicly; and\r\n\r\ne) to display the Original Work publicly.\r\n\r\n2) Grant of Patent License. Licensor hereby grants You a world-wide,\r\nroyalty-free, non-exclusive, perpetual, sublicenseable license, under patent\r\nclaims owned or controlled by the Licensor that are embodied in the Original\r\nWork as furnished by the Licensor, to make, use, sell and offer for sale the\r\nOriginal Work and Derivative Works.\r\n\r\n3) Grant of Source Code License. The term \"Source Code\" means the preferred\r\nform of the Original Work for making modifications to it and all available\r\ndocumentation describing how to modify the Original Work. Licensor hereby\r\nagrees to provide a machine-readable copy of the Source Code of the Original\r\nWork along with each copy of the Original Work that Licensor distributes.\r\nLicensor reserves the right to satisfy this obligation by placing a\r\nmachine-readable copy of the Source Code in an information repository\r\nreasonably calculated to permit inexpensive and convenient access by You for as\r\nlong as Licensor continues to distribute the Original Work, and by publishing\r\nthe address of that information repository in a notice immediately following\r\nthe copyright notice that applies to the Original Work.\r\n\r\n4) Exclusions From License Grant. Neither the names of Licensor, nor the names\r\nof any contributors to the Original Work, nor any of their trademarks or\r\nservice marks, may be used to endorse or promote products derived from this\r\nOriginal Work without express prior written permission of the Licensor. Nothing\r\nin this License shall be deemed to grant any rights to trademarks, copyrights,\r\npatents, trade secrets or any other intellectual property of Licensor except as\r\nexpressly stated herein. No patent license is granted to make, use, sell or\r\noffer to sell embodiments of any patent claims other than the licensed claims\r\ndefined in Section 2. No right is granted to the trademarks of Licensor even if\r\nsuch marks are included in the Original Work. Nothing in this License shall be\r\ninterpreted to prohibit Licensor from licensing under different terms from this\r\nLicense any Original Work that Licensor otherwise would have a right to\r\nlicense.\r\n\r\n5) This section intentionally omitted.\r\n\r\n6) Attribution Rights. You must retain, in the Source Code of any Derivative\r\nWorks that You create, all copyright, patent or trademark notices from the\r\nSource Code of the Original Work, as well as any notices of licensing and any\r\ndescriptive text identified therein as an \"Attribution Notice.\" You must cause\r\nthe Source Code for any Derivative Works that You create to carry a prominent\r\nAttribution Notice reasonably calculated to inform recipients that You have\r\nmodified the Original Work.\r\n\r\n7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that\r\nthe copyright in and to the Original Work and the patent rights granted herein\r\nby Licensor are owned by the Licensor or are sublicensed to You under the terms\r\nof this License with the permission of the contributor(s) of those copyrights\r\nand patent rights. Except as expressly stated in the immediately proceeding\r\nsentence, the Original Work is provided under this License on an \"AS IS\" BASIS\r\nand WITHOUT WARRANTY, either express or implied, including, without limitation,\r\nthe warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR\r\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU.\r\nThis DISCLAIMER OF WARRANTY constitutes an essential part of this License. No\r\nlicense to Original Work is granted hereunder except under this disclaimer.\r\n\r\n8) Limitation of Liability. Under no circumstances and under no legal theory,\r\nwhether in tort (including negligence), contract, or otherwise, shall the\r\nLicensor be liable to any person for any direct, indirect, special, incidental,\r\nor consequential damages of any character arising as a result of this License\r\nor the use of the Original Work including, without limitation, damages for loss\r\nof goodwill, work stoppage, computer failure or malfunction, or any and all\r\nother commercial damages or losses. This limitation of liability shall not\r\napply to liability for death or personal injury resulting from Licensor's\r\nnegligence to the extent applicable law prohibits such limitation. Some\r\njurisdictions do not allow the exclusion or limitation of incidental or\r\nconsequential damages, so this exclusion and limitation may not apply to You.\r\n\r\n9) Acceptance and Termination. If You distribute copies of the Original Work or\r\na Derivative Work, You must make a reasonable effort under the circumstances to\r\nobtain the express assent of recipients to the terms of this License. Nothing\r\nelse but this License (or another written agreement between Licensor and You)\r\ngrants You permission to create Derivative Works based upon the Original Work\r\nor to exercise any of the rights granted in Section 1 herein, and any attempt\r\nto do so except under the terms of this License (or another written agreement\r\nbetween Licensor and You) is expressly prohibited by U.S. copyright law, the\r\nequivalent laws of other countries, and by international treaty. Therefore, by\r\nexercising any of the rights granted to You in Section 1 herein, You indicate\r\nYour acceptance of this License and all of its terms and conditions.\r\n\r\n10) Termination for Patent Action. This License shall terminate automatically\r\nand You may no longer exercise any of the rights granted to You by this License\r\nas of the date You commence an action, including a cross-claim or counterclaim,\r\nagainst Licensor or any licensee alleging that the Original Work infringes a\r\npatent. This termination provision shall not apply for an action alleging\r\npatent infringement by combinations of the Original Work with other software or\r\nhardware.\r\n\r\n11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this\r\nLicense may be brought only in the courts of a jurisdiction wherein the\r\nLicensor resides or in which Licensor conducts its primary business, and under\r\nthe laws of that jurisdiction excluding its conflict-of-law provisions. The\r\napplication of the United Nations Convention on Contracts for the International\r\nSale of Goods is expressly excluded. Any use of the Original Work outside the\r\nscope of this License or after its termination shall be subject to the\r\nrequirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et\r\nseq., the equivalent laws of other countries, and international treaty. This\r\nsection shall survive the termination of this License.\r\n\r\n12) Attorneys Fees. In any action to enforce the terms of this License or\r\nseeking damages relating thereto, the prevailing party shall be entitled to\r\nrecover its costs and expenses, including, without limitation, reasonable\r\nattorneys' fees and costs incurred in connection with such action, including\r\nany appeal of such action. This section shall survive the termination of this\r\nLicense.\r\n\r\n13) Miscellaneous. This License represents the complete agreement concerning\r\nthe subject matter hereof. If any provision of this License is held to be\r\nunenforceable, such provision shall be reformed only to the extent necessary to\r\nmake it enforceable.\r\n\r\n14) Definition of \"You\" in This License. \"You\" throughout this License, whether\r\nin upper or lower case, means an individual or a legal entity exercising rights\r\nunder, and complying with all of the terms of, this License. For legal\r\nentities, \"You\" includes any entity that controls, is controlled by, or is\r\nunder common control with you. For purposes of this definition, \"control\" means\r\n(i) the power, direct or indirect, to cause the direction or management of such\r\nentity, whether by contract or otherwise, or (ii) ownership of fifty percent\r\n(50%) or more of the outstanding shares, or (iii) beneficial ownership of such\r\nentity.\r\n\r\n15) Right to Use. You may use the Original Work in all ways not otherwise\r\nrestricted or conditioned by this License or by law, and Licensor promises not\r\nto interfere with or be responsible for such uses by You.\r\n\r\nThis license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved.\r\nPermission is hereby granted to copy and distribute this license without\r\nmodification. This license may not be modified without the express written\r\npermission of its copyright owner.\r\n" + } + } + } + ], + "purl": "pkg:npm/json-schema@0.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriszyp/json-schema#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kriszyp/json-schema/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kriszyp/json-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "author": "James Halliday", + "name": "json-stable-stringify-without-jsonify", + "version": "1.0.1", + "description": "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results, with no public domain dependencies", + "hashes": [ + { + "alg": "SHA-512", + "content": "05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/samn/json-stable-stringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/samn/json-stable-stringify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/samn/json-stable-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-stringify-safe@5.0.1", + "author": "Isaac Z. Schlueter", + "name": "json-stringify-safe", + "version": "5.0.1", + "description": "Like JSON.stringify, but doesn't blow up on circular refs.", + "hashes": [ + { + "alg": "SHA-512", + "content": "642960e80698bda9af60413cd9ddc8c9ddef49222343ea1d823693cd1b8edeceeda0274529cce86f68b4cc287b244f245a7d7bcaf016854571bea1b051a96c44" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-stringify-safe@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/json-stringify-safe" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/json-stringify-safe/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/json-stringify-safe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsprim@1.4.2", + "name": "jsprim", + "version": "1.4.2", + "description": "utilities for primitive JavaScript types", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f66d238c01cfdc88bcfa0f38235651893fdf81ac95aee540c62bbd02da2c1e0b940121e15fd195d1bc68c48f6b9882b63632400086c4961c35a516d12ba195b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/jsprim@1.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-jsprim#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-jsprim/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-jsprim.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/just-extend@1.1.27", + "author": "Angus Croll", + "name": "just-extend", + "version": "1.1.27", + "description": "extend an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "989569d77231ea0168dd2040cbd53f90bfa8799ab39586182d00705d506557322c67006a1911273aba36e280bff2cf1aa31fab261b59d83890a1ffbe22b900fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/just-extend@1.1.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angus-c/just#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angus-c/just/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angus-c/just.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lcid@1.0.0", + "author": "Sindre Sorhus", + "name": "lcid", + "version": "1.0.0", + "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", + "hashes": [ + { + "alg": "SHA-512", + "content": "6221a41fa1271ab0c6a8b3084e71a35ed1a636d8e85f0f52554cdc6a8b3c4418bb3ecd15072964abebce718f50139a682dab0f091f38f6e7055249745335323b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lcid@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/lcid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/lcid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/lcid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lcov-parse@0.0.10", + "author": "Dav Glass", + "name": "lcov-parse", + "version": "0.0.10", + "description": "Parse lcov results files and return JSON", + "hashes": [ + { + "alg": "SHA-512", + "content": "62c2f40f8405fef36535c1cf5ccf37dac8bd77644eaf2150e2be09bdc7cc222518af57fa5942ee3bbe580adc4dbb83fe5cc447cf449f51ce76e3e73e5371b992" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n" + } + } + } + ], + "purl": "pkg:npm/lcov-parse@0.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davglass/lcov-parse#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/davglass/lcov-parse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/davglass/lcov-parse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/levn@0.3.0", + "author": "George Zahariev", + "name": "levn", + "version": "0.3.0", + "description": "Light ECMAScript (JavaScript) Value Notation - human written, concise, typed, flexible", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0e3b8cb688e1e2c765baba32026ca21a1105ef1501ee7bae6f506de96f9114a26ccf23dd33f61b00d55b0efdd6c82290b9dc9f20c4cf50e0e868d23ac233fc8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) George Zahariev\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/levn@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gkz/levn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gkz/levn/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gkz/levn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prelude-ls@1.1.2", + "author": "George Zahariev", + "name": "prelude-ls", + "version": "1.1.2", + "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6" + } + ], + "purl": "pkg:npm/prelude-ls@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "http://preludels.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gkz/prelude-ls/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gkz/prelude-ls.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type-check@0.3.2", + "author": "George Zahariev", + "name": "type-check", + "version": "0.3.2", + "description": "type-check allows you to check the types of JavaScript values at runtime with a Haskell like type syntax.", + "hashes": [ + { + "alg": "SHA-512", + "content": "64298e25dbce583058265cc0a05902f90d3e6d4c84392d65b60a75306534ddfa871be75b8bdb41154d9177d40a883645018ae13e1d8951feeb65122e1d12ad3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) George Zahariev\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/type-check@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gkz/type-check" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gkz/type-check/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gkz/type-check.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/load-json-file@2.0.0", + "author": "Sindre Sorhus", + "name": "load-json-file", + "version": "2.0.0", + "description": "Read and parse a JSON file", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9e9938635b897e0276f11dd55704eb28bbf14ac63698c73b7de7a06c070a74ffa367f29652437a9b26f3e98516ffc3bedc051e1b791c81d2c8ecb96be0a155" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/load-json-file@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/load-json-file#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/load-json-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/load-json-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-json@2.2.0", + "author": "Sindre Sorhus", + "name": "parse-json", + "version": "2.2.0", + "description": "Parse JSON with more helpful errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "411fc619a282921c24d5e3d03580d12986779b053dca9b0a841d17c859cb41da26c84aa4ddef30a56dd5e49a7cf336f12b89f9493d67aa8fa0f63b93a68c2785" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-json@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/parse-json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/parse-json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/parse-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.get@4.4.2", + "author": "John-David Dalton", + "name": "lodash.get", + "version": "4.4.2", + "description": "The lodash method `_.get` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfe530fef2eecba8107bc71f685583ee9d3056ff1f265de66f35e1df7452fb4a16db0bd4aa2457890ebd80b5922e9801e7feac53eafa065411d0c0482da76a4d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.get@4.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/log-driver@1.2.7", + "author": "Gregg Caines", + "name": "log-driver", + "version": "1.2.7", + "description": "log-driver is a simple logging framework for logging to stdout", + "hashes": [ + { + "alg": "SHA-512", + "content": "53b28298b76ab061c12de5aa625140d15d1297a3f4f0413566b980f5cc63504d1656a4fdaa7c950cfcf5933a4510fd23749b859dab1621f49dedfb1a3579296e" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014, Gregg Caines, gregg@caines.ca\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/log-driver@1.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cainus/logdriver" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cainus/logdriver/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cainus/logdriver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lolex@2.7.5", + "author": "Christian Johansen", + "name": "lolex", + "version": "2.7.5", + "description": "Fake JavaScript timers", + "hashes": [ + { + "alg": "SHA-512", + "content": "97dc74fb5a1f7e728a2336158f25d4d928b08570cb7a44732b28676f295d3c7bc2ec1bcb3d5a5d354351d8a78c02208dd83fe42cdb6d660403e568d2c6e071dd" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. " + } + } + } + ], + "purl": "pkg:npm/lolex@2.7.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/sinonjs/lolex" + }, + { + "type": "issue-tracker", + "url": "http://github.com/sinonjs/lolex/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/sinonjs/lolex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mem@1.1.0", + "author": "Sindre Sorhus", + "name": "mem", + "version": "1.1.0", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ce043adcff082991ddd7fc93a132a611fbf78baa57cb3f8a107e8040e90131231125f86534d68c849305b2b9ec8ef35d74a542a28ed8871a11266283a7f3ca1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mem@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/mem#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/mem/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/mem.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/merge-source-map@1.1.0", + "author": "keik", + "name": "merge-source-map", + "version": "1.1.0", + "description": "Merge old source map and new source map in multi-transform flow", + "hashes": [ + { + "alg": "SHA-512", + "content": "424729ecfdb2824b6930f87698241969fde384de83dd9fea5591d2756bd0fb611fe4781100f04ee7b03befe10d9b408fc76fb509efcc60a8b7ca6a9d7eeaa26f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) keik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/merge-source-map@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/keik/merge-source-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/keik/merge-source-map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/keik/merge-source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/methods@1.1.2", + "name": "methods", + "version": "1.1.2", + "description": "HTTP methods that node supports", + "hashes": [ + { + "alg": "SHA-512", + "content": "89c9401de36a366ebccc5b676747bed4bdb250876fccda1ab8a53858103756f1ffbcf162785eea7d197051953e0c0f4ff5b3d7212f74ba5c68528087db7b15db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013-2014 TJ Holowaychuk \nCopyright (c) 2015-2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/methods@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/methods#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/methods/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/methods.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime@1.6.0", + "author": "Robert Kieffer", + "name": "mime", + "version": "1.6.0", + "description": "A comprehensive library for mime-type mapping", + "hashes": [ + { + "alg": "SHA-512", + "content": "c74567f2ca48fb0b89d4ee92ee09db69083c3f187834d1dbeca4883661162a23c4e1128ea65be28e7f8d92662699180febc99cef48f611b793151b2bb306907a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 Benjamin Thomas, Robert Kieffer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broofa/node-mime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broofa/node-mime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broofa/node-mime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/natural-compare@1.4.0", + "author": "Lauri Rooden", + "name": "natural-compare", + "version": "1.4.0", + "description": "Compare strings containing a mix of letters and numbers in the way a human being would in sort order.", + "hashes": [ + { + "alg": "SHA-512", + "content": "396343f1e8b756d342f61ed5eb4a9f7f7495a1b1ebf7de824f0831b9b832418129836f7487d2746eec8408d3497b19059b9b0e6a38791b5d7a45803573c64c4b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/natural-compare@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/litejs/natural-compare-lite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/litejs/natural-compare-lite/issues" + }, + { + "type": "vcs", + "url": "git://github.com/litejs/natural-compare-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nice-try@1.0.5", + "name": "nice-try", + "version": "1.0.5", + "description": "Tries to execute a function and discards any error that occurs", + "hashes": [ + { + "alg": "SHA-512", + "content": "d67878e5d79e6f9a25358ede5fcd8190f3bb492c51e524982623d3ad3745515630025f0228c03937d3e34d89078918e2b15731710d475dd2e1c76ab1c49ccb35" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 Tobias Reich\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nice-try@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/electerious/nice-try" + }, + { + "type": "issue-tracker", + "url": "https://github.com/electerious/nice-try/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/electerious/nice-try.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nise@1.5.3", + "name": "nise", + "version": "1.5.3", + "description": "Fake XHR and server", + "hashes": [ + { + "alg": "SHA-512", + "content": "6266da73ff78c5e22b31fe7d44404f3afd2d86bf8225514c86b940916fe08c2204e7c04641d0a3d31eca4426f7cb3f866b6473dc4f575d2bd4cb2c6aaa18d001" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "(The BSD License)\n\nCopyright (c) 2010-2017, Christian Johansen, christian@cjohansen.no\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Christian Johansen nor the names of his contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/nise@1.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sinonjs/nise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sinonjs/nise/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/sinonjs/nise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sinonjs/formatio@3.2.2", + "author": "Christian Johansen", + "group": "@sinonjs", + "name": "formatio", + "version": "3.2.2", + "description": "Human-readable object formatting", + "hashes": [ + { + "alg": "SHA-512", + "content": "07c484b2077c800ac12cc0face9470de3b90d85552b2675deea95ebf20eacd2f564c2b6f179e7f8002fe87a82e7bc66f3d871d88f76fb9e33faa6ffff57cf24d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "(The BSD License)\n\nCopyright (c) 2010-2012, Christian Johansen (christian@cjohansen.no) and\nAugust Lilleaas (august.lilleaas@gmail.com). All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Christian Johansen nor the names of his contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40sinonjs/formatio@3.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://sinonjs.github.io/formatio/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sinonjs/formatio/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sinonjs/formatio.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sinonjs/commons@1.8.3", + "group": "@sinonjs", + "name": "commons", + "version": "1.8.3", + "description": "Simple functions shared among the sinon end user libraries", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6435c2c09ffc19697d7844f9708b370a89c0e4f46dc5f26da75372fb5249b9cc1813c224f4c2ca05007c7d26ae7a7c9035cffeee286b4246ed7ab0e5022c81d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD 3-Clause License\n\nCopyright (c) 2018, Sinon.JS\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40sinonjs/commons@1.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sinonjs/commons#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sinonjs/commons/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sinonjs/commons.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sinonjs/samsam@3.3.3", + "author": "Christian Johansen", + "group": "@sinonjs", + "name": "samsam", + "version": "3.3.3", + "description": "Value identification and comparison functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ca08c299bd6223603d012c69cdaf156ec3876458262c2ea14e516c3c560285ffee58fa613b2df1d63c86280d7a301feddaf4bb160cca34b803fc603a2c3ef1d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "(The BSD License)\n\nCopyright (c) 2010-2012, Christian Johansen, christian@cjohansen.no and\nAugust Lilleaas, august.lilleaas@gmail.com. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Christian Johansen nor the names of his contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40sinonjs/samsam@3.3.3", + "externalReferences": [ + { + "type": "website", + "url": "http://sinonjs.github.io/samsam/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sinonjs/samsam/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sinonjs/samsam.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-from@2.1.1", + "name": "array-from", + "version": "2.1.1", + "description": "A ponyfill for the ES 2015 (ES6) `Array.from()`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1904dce94ba9c751426af8b998fcc1bd54fb9c439e58c99403d3fde70a5fa56d57c0c48ab3e29aca60f90b6529eca0142a0fe66306ec518cdd6567286a394d66" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright © 2015-2016 Studio B12 GmbH\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-from@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/studio-b12/array-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/studio-b12/array-from/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/studio-b12/array-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sinonjs/text-encoding@0.7.2", + "author": "Joshua Bell", + "group": "@sinonjs", + "name": "text-encoding", + "version": "0.7.2", + "description": "Polyfill for the Encoding Living Standard's API.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b175ca1beb8bf48acaa95893b5aa365ace9dcb4ce7bbdb0e68fd5d8bf8ca196d4ce95b2c3bcbe5a5709072967e8e2b10d6d4c5002e49a3f10ecc56e08016a015" + } + ], + "licenses": [ + { + "license": { + "name": "(Unlicense OR Apache-2.0)", + "text": { + "contentType": "text/markdown", + "content": "The encoding indexes, algorithms, and many comments in the code\nderive from the Encoding Standard https://encoding.spec.whatwg.org/\n\nOtherwise, the code of this repository is released under the Unlicense\nlicense and is also dual-licensed under an Apache 2.0 license. Both\nare included below.\n\n# Unlicense\n\nThis is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \n\n# Apache 2.0 License\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/%40sinonjs/text-encoding@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sinonjs/text-encoding" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sinonjs/text-encoding/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sinonjs/text-encoding.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/just-extend@4.2.1", + "author": "Angus Croll", + "name": "just-extend", + "version": "4.2.1", + "description": "extend an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "989569d77231ea0168dd2040cbd53f90bfa8799ab39586182d00705d506557322c67006a1911273aba36e280bff2cf1aa31fab261b59d83890a1ffbe22b900fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 angus croll\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/just-extend@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angus-c/just#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angus-c/just/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angus-c/just.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lolex@5.1.2", + "author": "Christian Johansen", + "name": "lolex", + "version": "5.1.2", + "description": "Fake JavaScript timers", + "hashes": [ + { + "alg": "SHA-512", + "content": "97dc74fb5a1f7e728a2336158f25d4d928b08570cb7a44732b28676f295d3c7bc2ec1bcb3d5a5d354351d8a78c02208dd83fe42cdb6d660403e568d2c6e071dd" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2010-2014, Christian Johansen, christian@cjohansen.no. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. " + } + } + } + ], + "purl": "pkg:npm/lolex@5.1.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/sinonjs/lolex" + }, + { + "type": "issue-tracker", + "url": "http://github.com/sinonjs/lolex/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/sinonjs/lolex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-to-regexp@1.8.0", + "name": "path-to-regexp", + "version": "1.8.0", + "description": "Express style path to RegExp utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f8dc946195429402589b10984f7a2af59dc5080f5e909c48cda70ccd74edcb9b8cb0ac1a41679a0b0f423a6ebf5ebebd58f494eac11b4087b24ba0ecc041d54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-to-regexp@1.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/path-to-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/path-to-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/path-to-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isarray@0.0.1", + "author": "Julian Gruber", + "name": "isarray", + "version": "0.0.1", + "description": "Array#isArray for older browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "54b82121634ce842d0ce8ef3c26720d0d99357258a623bc878cf37ca3a74c110d39949eb33aefc7d06dc281a3a9f6089105d2cce81bfff2b60f932a56bcf402d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/isarray@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/isarray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/isarray/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/isarray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-package-data@2.5.0", + "author": "Meryn Stol", + "name": "normalize-package-data", + "version": "2.5.0", + "description": "Normalizes data that can be found in package.json files.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff908c3774f44785d38f80dc19a7b1a3eae8652752156ff400e39344eae3c73086d70ad65c4b066d129ebe39482fe643138b19949af9103e185b4caa9a42be78" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "This package contains code originally written by Isaac Z. Schlueter.\nUsed with permission.\n\nCopyright (c) Meryn Stol (\"Author\")\nAll rights reserved.\n\nThe BSD License\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-package-data@2.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/normalize-package-data#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/normalize-package-data/issues" + }, + { + "type": "vcs", + "url": "git://github.com/npm/normalize-package-data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/validate-npm-package-license@3.0.4", + "author": "Kyle E. Mitchell", + "name": "validate-npm-package-license", + "version": "3.0.4", + "description": "Give me a string and I'll tell you if it's a valid npm package license string", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/validate-npm-package-license@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kemitchell/validate-npm-package-license.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kemitchell/validate-npm-package-license.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kemitchell/validate-npm-package-license.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-correct@3.1.1", + "author": "Kyle E. Mitchell", + "name": "spdx-correct", + "version": "3.1.1", + "description": "correct invalid SPDX expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e61c516c210ae1c25e2e3d4611510b22442b788f8f5662cfd0e9562577b5b64ec170f8f50cc837732938b24dc61daac2ada524965a28c570f6a362e234c2d3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/spdx-correct@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jslicense/spdx-correct.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jslicense/spdx-correct.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jslicense/spdx-correct.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-expression-parse@3.0.1", + "author": "Kyle E. Mitchell", + "name": "spdx-expression-parse", + "version": "3.0.1", + "description": "parse SPDX license expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2015 Kyle E. Mitchell & other authors listed in AUTHORS\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/spdx-expression-parse@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jslicense/spdx-expression-parse.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jslicense/spdx-expression-parse.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jslicense/spdx-expression-parse.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-exceptions@2.3.0", + "author": "The Linux Foundation", + "name": "spdx-exceptions", + "version": "2.3.0", + "description": "list of SPDX standard license exceptions", + "hashes": [ + { + "alg": "SHA-512", + "content": "fed4eb60e0bb3cf2359d4020c77e21529a97bb2246f834c72539c850b1b8ac3ca08b8c6efed7e09aad5ed5c211c11cf0660a3834bc928beae270b919930e22e4" + } + ], + "licenses": [ + { + "license": { + "id": "CC-BY-3.0" + } + } + ], + "purl": "pkg:npm/spdx-exceptions@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kemitchell/spdx-exceptions.json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kemitchell/spdx-exceptions.json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kemitchell/spdx-exceptions.json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-license-ids@3.0.11", + "author": "Shinnosuke Watanabe", + "name": "spdx-license-ids", + "version": "3.0.11", + "description": "A list of SPDX license identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ad97606b1623345f7300358823dc29328318519abf668bac617a36dd3bdeb49c5e840c90294d8a67d014270ca96734150b2a208dd67df0f440641caf195a0fa" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + } + ], + "purl": "pkg:npm/spdx-license-ids@3.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jslicense/spdx-license-ids#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jslicense/spdx-license-ids/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jslicense/spdx-license-ids.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/oauth-sign@0.8.2", + "author": "Mikeal Rogers", + "name": "oauth-sign", + "version": "0.8.2", + "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "565174ee2bb7555dfe0535e3e37366a7a22bb7f1bb8ff36011cb544ba230787d511a15118e309cd8d5adcd714f5d75967dcee181b5d076d890bb62c6a7a33152" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/oauth-sign@0.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/oauth-sign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/oauth-sign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/oauth-sign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.entries@1.1.5", + "author": "Jordan Harband", + "name": "object.entries", + "version": "1.1.5", + "description": "ES2017 spec-compliant Object.entries shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f2c668d4a198207783abad4d56eba14c0c6e82baa271b05bf299ec97239d7ebd02cdebbcd87d9b1ea6d4607bbd3790a41da38b9c72000a79b5c57110b3938fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/object.entries@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Object.entries#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Object.entries/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Object.entries.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/optimist@0.6.1", + "author": "James Halliday", + "name": "optimist", + "version": "0.6.1", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b273783b84e48a0ba36698562cdd04fff9d09a6efbf74458684e770dd2fb658c1e7b60fc0c3a3dfc4c9888a51f377ae77965238499ee7a28dadc6f48da2d21de" + } + ], + "licenses": [ + { + "license": { + "name": "MIT/X11", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/optimist@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-optimist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-optimist/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-optimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist@0.0.10", + "author": "James Halliday", + "name": "minimist", + "version": "0.0.10", + "description": "parse argument options", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c8e79386f0dd826a6336ddc8188db0f5873df3bef94186ef8f42c6cea9782bb95e0e27ade9dae8e571398c6b413ab0c34266c2df9179ff2b820ba69132f3f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist@0.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/minimist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/minimist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/minimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wordwrap@0.0.3", + "author": "James Halliday", + "name": "wordwrap", + "version": "0.0.3", + "description": "Wrap those words. Show them at what columns to start and stop.", + "hashes": [ + { + "alg": "SHA-512", + "content": "82f57324594fc9c29ce5d64de323e43fcc3b0dcdfb06d3f5c9ccc49de39be2eab7e295d972faed45399657c5be5267be5c2c4a81b8ccfa77af93214f3326dde1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wordwrap@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-wordwrap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-wordwrap/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/node-wordwrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/optionator@0.8.3", + "author": "George Zahariev", + "name": "optionator", + "version": "0.8.3", + "description": "option parsing and help generation", + "hashes": [ + { + "alg": "SHA-512", + "content": "f885bda4009d9375d69a64d71bc9b7ba919426cb795d11b3c4c4635f302e2755e720536f7e18e322e6240efcac9cf43bab3a95ccbb7bf010abba7b6a4615906c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) George Zahariev\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/optionator@0.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gkz/optionator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gkz/optionator/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gkz/optionator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/word-wrap@1.2.3", + "author": "Jon Schlinkert", + "name": "word-wrap", + "version": "1.2.3", + "description": "Wrap words to a specified length.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f3fe6acdc22b4d461fc7500b4cfd54ffe551feca00fa0d5ee660a640b473ab6ecf14ee5bcf4bac5fec424a305d2e5b52890a5d07ef4d60dd91aeb3e9ae139bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/word-wrap@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/word-wrap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/word-wrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/word-wrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-homedir@1.0.2", + "author": "Sindre Sorhus", + "name": "os-homedir", + "version": "1.0.2", + "description": "Node.js 4 `os.homedir()` ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "079254ddc69bce4f1cebb99145ddc40a644e69f8d83176eece5c2da9d33c21b4bc92d9538b1f1a1466f66c018aad24489677cac28bc6514afbd8950fc8e6fa91" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-homedir@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/os-homedir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/os-homedir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/os-homedir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-locale@2.1.0", + "author": "Sindre Sorhus", + "name": "os-locale", + "version": "2.1.0", + "description": "Get the system locale", + "hashes": [ + { + "alg": "SHA-512", + "content": "decb251b7cc96c461c682e18540bc3a2b8c6c5ceedbfa2950139cb3d938d8a58ec52772f8a17bd050a15084b34459d6499fe0793d381aa565f259588e066a728" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-locale@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/os-locale#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/os-locale/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/os-locale.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-type@2.0.0", + "author": "Sindre Sorhus", + "name": "path-type", + "version": "2.0.0", + "description": "Check if a path is a file, directory, or symlink", + "hashes": [ + { + "alg": "SHA-512", + "content": "7549dbe5d5d47fe933842fd6fc5e1ee7f4a496e5c815fe55507a255b5120d62ae7d611968cf19db1172f609d670fa96193c22bed53346c724ab184f1f09c7d39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-type@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-type#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pathval@1.1.1", + "author": "Veselin Todorov", + "name": "pathval", + "version": "1.1.1", + "description": "Object value retrieval given a string path", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e9eb31aaa537444dd47ade57a12583de20eaa988d04db5cec1a5648bace8deed4688b04e5a63ddabfc0ba7400eebb17bdeb7796b277267657dbd50f4ca5f229" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2011-2013 Jake Luer jake@alogicalparadox.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\nTHE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pathval@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/pathval" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/pathval/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/pathval.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/performance-now@2.1.0", + "author": "Braveg1rl", + "name": "performance-now", + "version": "2.1.0", + "description": "Implements performance.now (based on process.hrtime).", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec40079722c7239e9510874ae7bbb01dd1ca21a0066e75cf8b0d3259b6ab41938a68aa6f508816d2359154b89ab6733e5d7952c2c6a72011ff87318c26e94ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2013 Braveg1rl\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/performance-now@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/braveg1rl/performance-now" + }, + { + "type": "issue-tracker", + "url": "https://github.com/braveg1rl/performance-now/issues" + }, + { + "type": "vcs", + "url": "git://github.com/braveg1rl/performance-now.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pkg-dir@1.0.0", + "author": "Sindre Sorhus", + "name": "pkg-dir", + "version": "1.0.0", + "description": "Find the root directory of a npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "73aa6fdce13bf26719f7672479b543aa0d1a592a0a84e4dbc0257aa9b096324e78ea600bf696659f4f90b0dff243b7e4b9c778fb224f2eb0815cdb7c46e93e12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pkg-dir@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pkg-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pkg-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pkg-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-up@1.1.2", + "author": "Sindre Sorhus", + "name": "find-up", + "version": "1.1.2", + "description": "Find a file by walking up parent directories", + "hashes": [ + { + "alg": "SHA-512", + "content": "d720fa4662c8d5705fc6e82f391c25724e9fef9b582fe891d23ab0b0eacec4c672198a94b83849d25e005dd3b5897fc54ecf5c040304935816484c759126f296" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-up@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/find-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/find-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/find-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-exists@2.1.0", + "author": "Sindre Sorhus", + "name": "path-exists", + "version": "2.1.0", + "description": "Check if a path exists", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e90bb198c220d8438c182def8503c96146385008c7101ae4a0186a83920fd07ab456c3d0a61914f4892395452649dbd34c2d9808cea6a58c9eb7a1a2f834825" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-exists@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-exists#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-exists.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pluralize@7.0.0", + "author": "Blake Embrey", + "name": "pluralize", + "version": "7.0.0", + "description": "Pluralize and singularize any word", + "hashes": [ + { + "alg": "SHA-512", + "content": "01184139dcd2ddee3515b916fd75ab4c4b6e92aa8ba0ae7e67fe1478368bb925bedfd24f78582ce20086aacac91d5657d1f52bc7fff8385d0ad42506c25205a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pluralize@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/pluralize#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/pluralize/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/blakeembrey/pluralize.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prelude-ls@1.2.1", + "author": "George Zahariev", + "name": "prelude-ls", + "version": "1.2.1", + "description": "prelude.ls is a functionally oriented utility library. It is powerful and flexible. Almost all of its functions are curried. It is written in, and is the recommended base library for, LiveScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) George Zahariev\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prelude-ls@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "http://preludels.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gkz/prelude-ls/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gkz/prelude-ls.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/progress@2.0.3", + "author": "TJ Holowaychuk", + "name": "progress", + "version": "2.0.3", + "description": "Flexible ascii progress bar", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecf887b4b965e4b767288330d74d08fbcc495d1e605b6430598913ea226f6b46d78ad64a6bf5ccad26dd9a0debd979da89dcfd42e99dd153da32b66517d57db0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2017 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/progress@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/node-progress#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/node-progress/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/node-progress.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/punycode@1.4.1", + "author": "Mathias Bynens", + "name": "punycode", + "version": "1.4.1", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e660d1255bbcaf3bb4d5df70a34a6bd2884db2728ddb576733bbf3b30ca74c35565059fc426e55112e17fee3bb32411067b637cb75dfc7d1e82bcc81bea1a15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/punycode@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/punycode" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bestiejs/punycode.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bestiejs/punycode.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.11.0", + "name": "qs", + "version": "6.11.0", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "BSD 3-Clause License\n\nCopyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg@2.0.0", + "author": "Sindre Sorhus", + "name": "read-pkg", + "version": "2.0.0", + "description": "Read a package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "78520138f5bb1468f306e93785d5c4b8d4a24d94bfc443251f8f47c4ccb36f48723dfbb81215634f60c7df62b58524a656ae2c79b0169d9bae6396ae21251318" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg-up@2.0.0", + "author": "Sindre Sorhus", + "name": "read-pkg-up", + "version": "2.0.0", + "description": "Read the closest package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "d68af141f6d61948939fd5ec3e50a1b3aacb89efc057d8f06531a6bb6359c3f0940c941c857245604d05ab98fbfa7e79f13d4984358b761c9dd598fec0b63fff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg-up@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpp@1.1.0", + "author": "Toru Nagashima", + "name": "regexpp", + "version": "1.1.0", + "description": "Regular expression parser for ECMAScript 2018.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ce3f0f05a6075017d7ad58c6807c6fd646d848757246629e262762609ffda5a646e877d8cf9f4b7d52a37b03104e28d7f345b63255f81ced5938b7f3299d783" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Toru Nagashima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regexpp@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mysticatea/regexpp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mysticatea/regexpp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mysticatea/regexpp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/request@2.88.2", + "author": "Mikeal Rogers", + "name": "request", + "version": "2.88.2", + "description": "Simplified HTTP request client.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32cbed3ab7c6f5972b3b0016f908be17a1db0f40965c487da2eefbb8e6fb14cd963e1c13eec98cf37dcfcda9e124bb205e337cf48afa5763dccd7367329c0a87" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/request@2.88.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/request/request#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/request/request/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/request/request.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/form-data@2.3.3", + "author": "Felix Geisendörfer", + "name": "form-data", + "version": "2.3.3", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b6d4ddd63a6104511824e81f462ce13846e58e15fdbc2e187da8661e3651aae150d7525272dad876b2504d53c1a9f04ce5a1864e89b649eede5e708ac54a354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/form-data@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/form-data/form-data#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/form-data/form-data/issues" + }, + { + "type": "vcs", + "url": "git://github.com/form-data/form-data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-signature@1.2.0", + "author": "Joyent, Inc", + "name": "http-signature", + "version": "1.2.0", + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dda76bb03eb3aa8e06b13aad3bb172ade8c736ff8d82221f01fbfaf3e8d5945992afd386cbbcebc4e35c78544b2af9e7640e636f14015f5bbd3e907a5a2df61b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-signature@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-http-signature/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-http-signature/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-http-signature.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/oauth-sign@0.9.0", + "author": "Mikeal Rogers", + "name": "oauth-sign", + "version": "0.9.0", + "description": "OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "565174ee2bb7555dfe0535e3e37366a7a22bb7f1bb8ff36011cb544ba230787d511a15118e309cd8d5adcd714f5d75967dcee181b5d076d890bb62c6a7a33152" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/oauth-sign@0.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/oauth-sign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/oauth-sign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/oauth-sign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.5.3", + "name": "qs", + "version": "6.5.3", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "BSD 3-Clause License\n\nCopyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.2.1", + "author": "Feross Aboukhadijeh", + "name": "safe-buffer", + "version": "5.2.1", + "description": "Safer Node.js Buffer API", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/safe-buffer@5.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/safe-buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/safe-buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/safe-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tough-cookie@2.5.0", + "author": "Jeremy Stashewsky", + "name": "tough-cookie", + "version": "2.5.0", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e52ec533826d647cb5d25df45931cd4a2c0ba077886a2470d3bdcda10c8c12de66407cc12e31b734dd2ba3305f8611ca5a5ffa9ba1ec9cc3a88ef09c15bf6fa" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2015, Salesforce.com, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/tough-cookie@2.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/salesforce/tough-cookie" + }, + { + "type": "issue-tracker", + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + { + "type": "vcs", + "url": "git://github.com/salesforce/tough-cookie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/psl@1.9.0", + "author": "Lupo Montero", + "name": "psl", + "version": "1.9.0", + "description": "Domain name parser based on the Public Suffix List", + "hashes": [ + { + "alg": "SHA-512", + "content": "13f66c754e072ecffaf206338064e43227164cb3dd01fb492df24594b50000a646912b4d53bdac6634fae929cc0d539f39663f600a220fb2716bd887be781c6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Lupo Montero lupomontero@gmail.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/psl@1.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lupomontero/psl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lupomontero/psl/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/lupomontero/psl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tunnel-agent@0.6.0", + "author": "Mikeal Rogers", + "name": "tunnel-agent", + "version": "0.6.0", + "description": "HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "31c9cd895d65f1161e63cb41804a6ea1d082d662d475b48df826012fb909b093489ce3fc5230c3130764e8cc3ad2f74b2ebaf934729984c00e4ab476359b90fb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/tunnel-agent@0.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/tunnel-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/tunnel-agent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/tunnel-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uuid@3.4.0", + "name": "uuid", + "version": "3.4.0", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3483470ea0644e4932081cb4705c8d56a4d3cf8a1158522220f31674fd4bd69e826a7ce52fdb45e0554dbe104c5691369b49f64b9868d8676cd10e91b29bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2010-2016 Robert Kieffer and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uuid@3.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/uuidjs/uuid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/uuidjs/uuid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/uuidjs/uuid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-directory@2.1.1", + "author": "Troy Goode", + "name": "require-directory", + "version": "2.1.1", + "description": "Recursively iterates over specified directory, require()'ing each file, and returning a nested hash structure containing those modules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c6c4423bfb0b06f71aef763b2b9662f6d8e3134e21d1c0032ba2211e320abc833a0b0bf3d0afb46c4434932d483f6d9019b45f9354890773aff84482abba2f9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Troy Goode \n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-directory@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/troygoode/node-require-directory/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/troygoode/node-require-directory/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/troygoode/node-require-directory.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-main-filename@1.0.1", + "author": "Ben Coe", + "name": "require-main-filename", + "version": "1.0.1", + "description": "shim for require.main.filename() that works in as many environments as possible", + "hashes": [ + { + "alg": "SHA-512", + "content": "22a494b4e54fe24b1dd42fde8f9cde121fc120fd9a8eaa67f1ce71faaf7d82f7081bf41fd1cb9de6b6959c4fc3c1dd2e6bd4d7603a03734444e61052773db652" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-main-filename@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/require-main-filename#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/require-main-filename/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/require-main-filename.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-uncached@1.0.3", + "author": "Sindre Sorhus", + "name": "require-uncached", + "version": "1.0.3", + "description": "Require a module bypassing the cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "5dcb7ee352b7b70adb047771020328392f9c35ca2a2237ccdbf571045e0b2f6855a61ed8b05f1548ac90dc10c56701156e893dc9e0e5da57bfaa8d12efb586db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-uncached@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/require-uncached#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/require-uncached/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/require-uncached.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-from@1.0.1", + "author": "Sindre Sorhus", + "name": "resolve-from", + "version": "1.0.1", + "description": "Resolve the path of a module like require.resolve() but from a given path", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-from@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/resolve-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/resolve-from/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/resolve-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-from@4.0.0", + "author": "Sindre Sorhus", + "name": "resolve-from", + "version": "4.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from a given path", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-from@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/resolve-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/resolve-from/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/resolve-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/right-align@0.1.3", + "author": "Jon Schlinkert", + "name": "right-align", + "version": "0.1.3", + "description": "Right-align the text in a string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "caa20db4bfc6eefb36bfe7452199855036e757215424529dea02b6d8a828e91e237c9185b62b0aca77160c350b8237ea7f801242e210ca327b5d9fb7696a6c02" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/right-align@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/right-align" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/right-align/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/right-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/samsam@1.3.0", + "author": "Christian Johansen", + "name": "samsam", + "version": "1.3.0", + "description": "Value identification and comparison functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d47c08603ffc5253ad152dd03b7c3b7b2f927520c51381d134b66865161541e7eb398de5d7b7a9b30226781d628e0245409a1d21a1dcc24a77aff9b20631556e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "(The BSD License)\n\nCopyright (c) 2010-2012, Christian Johansen, christian@cjohansen.no and\nAugust Lilleaas, august.lilleaas@gmail.com. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Christian Johansen nor the names of his contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/samsam@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "http://docs.busterjs.org/en/latest/modules/samsam/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/busterjs/samsam/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/busterjs/samsam.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/set-blocking@2.0.0", + "author": "Ben Coe", + "name": "set-blocking", + "version": "2.0.0", + "description": "set blocking stdio and stderr ensuring that terminal output does not truncate", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a22814bc0275861322f3a1f15f9af2b0a5d3f3aa2cb5e8bbd07cadf2bff7d51fb063d77ff097725247527eadf81113dabbc5424ae2abe04bcada48e78b51e87" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/set-blocking@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/set-blocking#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/set-blocking/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yargs/set-blocking.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/slice-ansi@1.0.0", + "author": "David Caccavella", + "name": "slice-ansi", + "version": "1.0.0", + "description": "Slice a string with ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ceab104ae8b6f7abab34e3b0ff5ec0d534f9c5f4397c2526aa7bd87d954465d0e74dab2fee8c3ace8881edb2a5cc19b5964c8a2647300c693c9ac0053ffd17a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) DC \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/slice-ansi@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/slice-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/slice-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/slice-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spawn-wrap@1.4.3", + "author": "Isaac Z. Schlueter", + "name": "spawn-wrap", + "version": "1.4.3", + "description": "Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.", + "hashes": [ + { + "alg": "SHA-512", + "content": "22007c99dd105bffad5aa71abee16029847fa8846f26444b3c90c56a85ed2cb51a55c0832b4f877854e49901e3ddea6b71885cfa03a5d1a100d70eea66561ecf" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/spawn-wrap@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/spawn-wrap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/spawn-wrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/spawn-wrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sprintf-js@1.1.2", + "author": "Alexandru Mărășteanu", + "name": "sprintf-js", + "version": "1.1.2", + "description": "JavaScript sprintf implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "544d123951070a4ed073cba5916c379ed0335eea9fed2da5bf041a0cb46751e20468a35027357a07098b2a13aa4fad5a1a17d432b5de68193ea03182cef85cba" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2007-present, Alexandru Mărășteanu \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n* Neither the name of this software nor the names of its contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/sprintf-js@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/alexei/sprintf.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/alexei/sprintf.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/alexei/sprintf.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string_decoder@1.3.0", + "name": "string_decoder", + "version": "1.3.0", + "description": "The string_decoder module from Node core", + "hashes": [ + { + "alg": "SHA-512", + "content": "864457f14d568c915df0bb03276c90ff0596c5aa2912c0015355df90cf00fa3d3ef392401a9a6dd7a72bd56860e8a21b6f8a2453a32a97a04e8febaea7fc0a78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\n" + } + } + } + ], + "purl": "pkg:npm/string_decoder@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/string_decoder" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/string_decoder/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/string_decoder.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-json-comments@2.0.1", + "author": "Sindre Sorhus", + "name": "strip-json-comments", + "version": "2.0.1", + "description": "Strip comments from JSON. Lets you use comments in your JSON files!", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2007c9dad3b7de715564388e91b387bb4fa34e4e48b91262fb4d476e4ece9bbb711d9d2c9c9ed549e2b7bc920640fb0c7d22e788d98d756df6e0c2dcee13429" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-json-comments@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-json-comments#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-json-comments/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-json-comments.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/superagent@3.8.3", + "author": "TJ Holowaychuk", + "name": "superagent", + "version": "3.8.3", + "description": "elegant & feature rich browser / node HTTP with a fluent API", + "hashes": [ + { + "alg": "SHA-512", + "content": "18b42d2cc0a81082b8783bfa386b643a848cb770fea2ad32dddb3132e62e0ef68d52fb93f1e141b8b99f4748986331c2d5ef21a730ba66cc5bb8fe8321a94c14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/superagent@3.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/superagent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/superagent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/superagent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/table@4.0.3", + "author": "Gajus Kuizinas", + "name": "table", + "version": "4.0.3", + "description": "Formats data into a string table.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bbae71484e6047d449f229cbf1061d4b8d87903269d9b425d211b1dc1fa4b43682a2b76e19b853bf4f5bc370b758b0b424335f3c3d5561426cca22e4e13642a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2016, Gajus Kuizinas (http://gajus.com/)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/table@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/table#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/table/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@3.5.2", + "author": "Evgeny Poberezkin", + "name": "ajv-keywords", + "version": "3.5.2", + "description": "Custom JSON-Schema keywords for Ajv validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "645ced1f35517462c0cc99a9513f4b3452ded58895384ca571a36912eb4cdba3d54c2b4e0fdd7d20c7c3d350a06d1a2e078d8377d6ad8f1d47b1e0b5e4380e64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ajv-keywords@3.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv-keywords#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv-keywords/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv-keywords.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/test-exclude@5.2.3", + "author": "Ben Coe", + "name": "test-exclude", + "version": "5.2.3", + "description": "test for inclusion or exclusion of paths using pkg-conf and globs", + "hashes": [ + { + "alg": "SHA-512", + "content": "33ea31b6c78214edc40ed01a187ee289e8f70819335ea14c6f3a9800009dccaba2e1e640fa9ab7b591300a1bce74d7daef1c72f017db9a025222be37702ffeda" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/test-exclude@5.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg-up@4.0.0", + "author": "Sindre Sorhus", + "name": "read-pkg-up", + "version": "4.0.0", + "description": "Read the closest package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "d68af141f6d61948939fd5ec3e50a1b3aacb89efc057d8f06531a6bb6359c3f0940c941c857245604d05ab98fbfa7e79f13d4984358b761c9dd598fec0b63fff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg-up@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg@3.0.0", + "author": "Sindre Sorhus", + "name": "read-pkg", + "version": "3.0.0", + "description": "Read a package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "78520138f5bb1468f306e93785d5c4b8d4a24d94bfc443251f8f47c4ccb36f48723dfbb81215634f60c7df62b58524a656ae2c79b0169d9bae6396ae21251318" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/load-json-file@4.0.0", + "author": "Sindre Sorhus", + "name": "load-json-file", + "version": "4.0.0", + "description": "Read and parse a JSON file", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9e9938635b897e0276f11dd55704eb28bbf14ac63698c73b7de7a06c070a74ffa367f29652437a9b26f3e98516ffc3bedc051e1b791c81d2c8ecb96be0a155" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/load-json-file@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/load-json-file#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/load-json-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/load-json-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-json@4.0.0", + "author": "Sindre Sorhus", + "name": "parse-json", + "version": "4.0.0", + "description": "Parse JSON with more helpful errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "411fc619a282921c24d5e3d03580d12986779b053dca9b0a841d17c859cb41da26c84aa4ddef30a56dd5e49a7cf336f12b89f9493d67aa8fa0f63b93a68c2785" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-json@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/parse-json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/parse-json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/parse-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-type@3.0.0", + "author": "Sindre Sorhus", + "name": "path-type", + "version": "3.0.0", + "description": "Check if a path is a file, directory, or symlink", + "hashes": [ + { + "alg": "SHA-512", + "content": "7549dbe5d5d47fe933842fd6fc5e1ee7f4a496e5c815fe55507a255b5120d62ae7d611968cf19db1172f609d670fa96193c22bed53346c724ab184f1f09c7d39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-type@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-type#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-main-filename@2.0.0", + "author": "Ben Coe", + "name": "require-main-filename", + "version": "2.0.0", + "description": "shim for require.main.filename() that works in as many environments as possible", + "hashes": [ + { + "alg": "SHA-512", + "content": "22a494b4e54fe24b1dd42fde8f9cde121fc120fd9a8eaa67f1ce71faaf7d82f7081bf41fd1cb9de6b6959c4fc3c1dd2e6bd4d7603a03734444e61052773db652" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-main-filename@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/require-main-filename#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/require-main-filename/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/require-main-filename.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/text-encoding@0.6.4", + "author": "Joshua Bell", + "name": "text-encoding", + "version": "0.6.4", + "description": "Polyfill for the Encoding Living Standard's API.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8499dce90837756a0e324a8fe7717477344882d9ac0207b4f64c5422a1ab1144b8aabe6b58b724198690015afea2906b20c444ac6832e9fe5a3e7c8fa721917e" + } + ], + "licenses": [ + { + "license": { + "id": "Unlicense", + "text": { + "contentType": "text/markdown", + "content": "The encoding indexes, algorithms, and many comments in the code\nderive from the Encoding Standard https://encoding.spec.whatwg.org/\n\nOtherwise...\n\nThis is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \n" + } + } + } + ], + "purl": "pkg:npm/text-encoding@0.6.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inexorabletash/text-encoding" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inexorabletash/text-encoding/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inexorabletash/text-encoding.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/text-table@0.2.0", + "author": "James Halliday", + "name": "text-table", + "version": "0.2.0", + "description": "borderless text tables with alignment", + "hashes": [ + { + "alg": "SHA-512", + "content": "37ef148ac0170c693c3c55cfe07033551f676df995277cd82c05a24c8a2a0b9bf98ac8a786bfabe6e68ef3eeebdc131fb8d22e7c8b00ed176956069c0b6712a7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/text-table@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/text-table" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/text-table/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/text-table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-js@2.8.29", + "author": "Mihai Bazon", + "name": "uglify-js", + "version": "2.8.29", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8babfe32da98dc537be1961b1e5c6189ed56c53b8a4100dbb493097c5426bd28423457c55f648c76172df0d358924c0fe91b02994a6bbff88e1eb4b34376de7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2013 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/uglify-js@2.8.29", + "externalReferences": [ + { + "type": "website", + "url": "http://lisperator.net/uglifyjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mishoo/UglifyJS2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mishoo/UglifyJS2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@3.10.0", + "author": "Alex Ford", + "name": "yargs", + "version": "3.10.0", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bcoe/yargs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcoe/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/bcoe/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase@1.2.1", + "author": "Sindre Sorhus", + "name": "camelcase", + "version": "1.2.1", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "hashes": [ + { + "alg": "SHA-512", + "content": "17102fec7a47ad76e1dda3e8e28daac476b2da590b637c79330dca784e0a404f32b157f3896791643c1c8dabafc01486102fe75d43f3672f337a1e07a24a8e9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cliui@2.1.0", + "author": "Ben Coe", + "name": "cliui", + "version": "2.1.0", + "description": "easily create complex multi-column command-line-interfaces", + "hashes": [ + { + "alg": "SHA-512", + "content": "e051be4521bd0cbeee130454657667dd24b7e038833dfccfd153a2130b545a513e011d84220fa14b2beb2205147e176047f52401e5b640781e3fe856ad7b3b8d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cliui@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bcoe/cliui#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcoe/cliui/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/bcoe/cliui.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wordwrap@0.0.2", + "author": "James Halliday", + "name": "wordwrap", + "version": "0.0.2", + "description": "Wrap those words. Show them at what columns to start and stop.", + "hashes": [ + { + "alg": "SHA-512", + "content": "82f57324594fc9c29ce5d64de323e43fcc3b0dcdfb06d3f5c9ccc49de39be2eab7e295d972faed45399657c5be5267be5c2c4a81b8ccfa77af93214f3326dde1" + } + ], + "licenses": [ + { + "license": { + "name": "MIT/X11" + } + } + ], + "purl": "pkg:npm/wordwrap@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-wordwrap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-wordwrap/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/node-wordwrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/window-size@0.1.0", + "author": "Jon Schlinkert", + "name": "window-size", + "version": "0.1.0", + "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dad871e29074715de1f81c3b4263177046dd98eceff6dd071699491ff2f3eb2bbad215d8cb9453f2b52efb0948ade5715ac18ddb49a8f8c1de0927d4a500703f" + } + ], + "purl": "pkg:npm/window-size@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/window-size" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/window-size/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/window-size.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-to-browserify@1.0.2", + "author": "ForbesLindesay", + "name": "uglify-to-browserify", + "version": "1.0.2", + "description": "A transform to make UglifyJS work in browserify.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdbdacd65631db106d520cbeb5af9bd89fc62d5511fb09a920dc0778f98f4613ac215086db00f3289d27d781ac947d4189fb2a57348ec1085168202c67f9c8e1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Forbes Lindesay\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/uglify-to-browserify@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/uglify-to-browserify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/uglify-to-browserify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/uglify-to-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/verror@1.10.1", + "name": "verror", + "version": "1.10.1", + "description": "richer JavaScript errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdeb9f726c6b8b87b75d2ad3d31c1f511ee482e2246b105ea2c0e0d34c835a1938f7077091252bbefb26ee773be5ed4f532bc87998fa9d2f15411633dbf4b85e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2016, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/verror@1.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-verror#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-verror/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joyent/node-verror.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/which-module@2.0.0", + "author": "nexdrew", + "name": "which-module", + "version": "2.0.0", + "description": "Find the module object for something that was require()d", + "hashes": [ + { + "alg": "SHA-512", + "content": "07e7a75a19b0e9c8df542ee44bc3e3f690ab292739b7102b47269819ed3cf2c86ffc51961fed118f1ff13e0b6c59fb14b52dbb1643faf7b1380c3860ae0a1cd1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/which-module@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nexdrew/which-module#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nexdrew/which-module/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nexdrew/which-module.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/window-size@0.1.4", + "author": "Jon Schlinkert", + "name": "window-size", + "version": "0.1.4", + "description": "Reliable way to to get the height and width of the terminal/console in a node.js environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dad871e29074715de1f81c3b4263177046dd98eceff6dd071699491ff2f3eb2bbad215d8cb9453f2b52efb0948ade5715ac18ddb49a8f8c1de0927d4a500703f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/window-size@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/window-size" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/window-size/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/window-size.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/y18n@3.2.2", + "author": "Ben Coe", + "name": "y18n", + "version": "3.2.2", + "description": "the bare-bones internationalization library used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "b866475e41e7845d1779e00f82729f3efd5b80a018c95be634bd7194ab0f6193da207c46b62da11eabce090bfbd5732c2f1bb54237ab824aa88149e6b390f761" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/y18n@3.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/y18n" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/y18n/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/y18n.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@11.1.1", + "name": "yargs", + "version": "11.1.1", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@11.1.1", + "externalReferences": [ + { + "type": "website", + "url": "http://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-locale@3.1.0", + "author": "Sindre Sorhus", + "name": "os-locale", + "version": "3.1.0", + "description": "Get the system locale", + "hashes": [ + { + "alg": "SHA-512", + "content": "decb251b7cc96c461c682e18540bc3a2b8c6c5ceedbfa2950139cb3d938d8a58ec52772f8a17bd050a15084b34459d6499fe0793d381aa565f259588e066a728" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-locale@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/os-locale#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/os-locale/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/os-locale.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/execa@1.0.0", + "author": "Sindre Sorhus", + "name": "execa", + "version": "1.0.0", + "description": "A better `child_process`", + "hashes": [ + { + "alg": "SHA-512", + "content": "473b4dd3d5e0969608eda041ac908f5bde63107ed81755043cea17f720e15133dda7b98af8242f9cb4ee0f5d013576776f22d3bb6b9e859f0470a4ffe021a217" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/execa@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/execa#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/execa/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/execa.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cross-spawn@6.0.5", + "author": "André Cruz", + "name": "cross-spawn", + "version": "6.0.5", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "hashes": [ + { + "alg": "SHA-512", + "content": "a53810279282d1dda1718f1ec8bd48ce504f6234e4c87ef65d164f9cbc8abacda605f36342cde496a6c95365482ea66bc80654b7d24e6f787f996332db7fdfe4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 Made With MOXY Lda \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cross-spawn@6.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/moxystudio/node-cross-spawn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/moxystudio/node-cross-spawn/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/moxystudio/node-cross-spawn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-stream@4.1.0", + "author": "Sindre Sorhus", + "name": "get-stream", + "version": "4.1.0", + "description": "Get a stream as a string, buffer, or array", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a585d214b956a473c489ea42b4cc015b886cd11733676388d4b846d5f5444ea3863ed0dcb87e3bdc645553783038a1da45c8e4336b0ea15ee9094aafdfdbcb1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-stream@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/get-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/get-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/get-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pump@3.0.0", + "author": "Mathias Buus Madsen", + "name": "pump", + "version": "3.0.0", + "description": "pipe streams together and close all of them if one of them closes", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f0672fa9dd216cd4fcad77f8d872de30a6fe3d1e2602a9df5195ce5955d93457ef18cefea34790659374d198f2f57edebd4f13f420c64627e58f154d81161c3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pump@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/pump#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/pump/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/pump.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/end-of-stream@1.4.4", + "author": "Mathias Buus", + "name": "end-of-stream", + "version": "1.4.4", + "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "faec358a720754f428695b87cd1c97776d6270cf9c9ede02cc3e6b5be342d708ce5124ceb3e4deec53afec084deef4bdc7fa08ca12cfe4f4751fea614001eee5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/end-of-stream@1.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/end-of-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/end-of-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/end-of-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lcid@2.0.0", + "author": "Sindre Sorhus", + "name": "lcid", + "version": "2.0.0", + "description": "Mapping between standard locale identifiers and Windows locale identifiers (LCID)", + "hashes": [ + { + "alg": "SHA-512", + "content": "6221a41fa1271ab0c6a8b3084e71a35ed1a636d8e85f0f52554cdc6a8b3c4418bb3ecd15072964abebce718f50139a682dab0f091f38f6e7055249745335323b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lcid@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/lcid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/lcid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/lcid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/invert-kv@2.0.0", + "author": "Sindre Sorhus", + "name": "invert-kv", + "version": "2.0.0", + "description": "Invert the key/value of an object. Example: `{foo: 'bar'}` → `{bar: 'foo'}`", + "hashes": [ + { + "alg": "SHA-512", + "content": "c60b36347f4013aeae712ab870d1b59e1485821af997ab5d2f5e4f93e8e5e3a6e69816a9828698fc069c5f2683ce702a9862fdf5388b49080efd76b315229879" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/invert-kv@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/invert-kv#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/invert-kv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/invert-kv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mem@4.3.0", + "author": "Sindre Sorhus", + "name": "mem", + "version": "4.3.0", + "description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ce043adcff082991ddd7fc93a132a611fbf78baa57cb3f8a107e8040e90131231125f86534d68c849305b2b9ec8ef35d74a542a28ed8871a11266283a7f3ca1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mem@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/mem#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/mem/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/mem.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-age-cleaner@0.1.3", + "author": "Sam Verschueren", + "name": "map-age-cleaner", + "version": "0.1.3", + "description": "Automatically cleanup expired items in a Map", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c9cf1ea73283fa3c32cf0459a0efec5129e159bc56e832b1a5c66363f4296f5f9dcaae6bcce5b5c55c45a36f3e1ccf50059fe8d627dcff0c94b3ee1aecd30df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sam Verschueren (github.com/SamVerschueren)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-age-cleaner@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SamVerschueren/map-age-cleaner#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SamVerschueren/map-age-cleaner/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SamVerschueren/map-age-cleaner.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-defer@1.0.0", + "author": "Sindre Sorhus", + "name": "p-defer", + "version": "1.0.0", + "description": "Create a deferred promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "c01df07c0c59a64d80cce7d430934bf9ddfac68b61452ca3f045ce6b87fa18ca980cdf4125a6922126ec93ec12f5a6e69de6d5c3de42d8a6f9b7ce549a90b1bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-defer@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-defer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-defer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-defer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mimic-fn@2.1.0", + "author": "Sindre Sorhus", + "name": "mimic-fn", + "version": "2.1.0", + "description": "Make a function mimic another one", + "hashes": [ + { + "alg": "SHA-512", + "content": "8dff38bb1cf08ae88854a88e2e97d893b378e934b2f2e6d3a279a7798f6fae91cd027a74401b76071595f5d3b7fe3f81a1501bf9ae46e980cf5b73391ce74c59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mimic-fn@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/mimic-fn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/mimic-fn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/mimic-fn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-is-promise@2.1.0", + "author": "Sindre Sorhus", + "name": "p-is-promise", + "version": "2.1.0", + "description": "Check if something is a promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "6375b4c2544f2bc64c45b36af7b978339a2d8a8780e659b5cfb6e4364c4291af0748f8d1d314569a90a673dbad89a2cff496f5783f0181e2314d6e00205e393e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-is-promise@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-is-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-is-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-is-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@9.0.2", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "9.0.2", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@9.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40boundless-inc/mobiledoc-dom-renderer@0.6.5", + "author": "Cory Forsyth", + "group": "@boundless-inc", + "name": "mobiledoc-dom-renderer", + "version": "0.6.5", + "description": "Renders Mobiledoc input to DOM output", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c91dade0cc9bbf1952a8c4523b91186158a16ac7fb9b94c68e380ea9d785213ec1285b09ff1fc90688badebee1d9e5ad3cacdc81167c7309963200f8d6d9c8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40boundless-inc/mobiledoc-dom-renderer@0.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/boundless-inc/mobiledoc-dom-renderer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/boundless-inc/mobiledoc-dom-renderer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/boundless-inc/mobiledoc-dom-renderer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/JSONStream@1.3.5", + "author": "Dominic Tarr", + "name": "JSONStream", + "version": "1.3.5", + "description": "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)", + "hashes": [ + { + "alg": "SHA-512", + "content": "13e8abb8d398f1557db382446ded5a3449ba322b333d1aff51f707333d13421d415d2c472be01257547a5b81e98c1852792fb9e0f22c00c0819b00f4e8b2eca9" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT OR Apache-2.0)" + } + } + ], + "purl": "pkg:npm/JSONStream@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/JSONStream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/JSONStream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/JSONStream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonparse@1.3.1", + "author": "Tim Caswell", + "name": "jsonparse", + "version": "1.3.1", + "description": "This is a pure-js JSON streaming parser for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ce417be974bebdf8296e62c8a5949ed25212afcad6235bdbc6fc62a99dffb13fc51681810cfd168ccc71e87db00b0e229b6cfd56f141189a01a5dfd5a43d9b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2012 Tim Caswell\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonparse@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/creationix/jsonparse#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/creationix/jsonparse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/creationix/jsonparse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/accepts@1.3.8", + "name": "accepts", + "version": "1.3.8", + "description": "Higher-level content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d802d8536b69b654ac6ebd20f70cf0bf1b2f94fac380d4b02e4fc9a4991bafc3e34009269e5c443e34771517bace365eaa71ac55dd4b9e9b06b093eefe4892f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/accepts@1.3.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/accepts#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/accepts/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/accepts.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/negotiator@0.6.3", + "name": "negotiator", + "version": "0.6.3", + "description": "HTTP content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8452ca863cbb0cfa3ff37428598ec9d7e758385eb1c53885f07e70953c695093f9398226a470ab2ec4239b051bba0d29bda29c3f3bab2559b25d82140ce1b06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 Federico Romero\nCopyright (c) 2012-2014 Isaac Z. Schlueter\nCopyright (c) 2014-2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/negotiator@0.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/negotiator#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/negotiator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/negotiator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/add-stream@1.0.0", + "author": "Majid Burney", + "name": "add-stream", + "version": "1.0.0", + "description": "Append the contents of one stream onto another.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a902ccafef28d160b81591904dc262281542e7d27295c3d2ad3b64eaeb2f9880c550e08a7a06a9cb554743045b14c385c9bfe29f3515a87b3e78c60a0ccd5879" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/add-stream@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wilsonjackson/add-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wilsonjackson/add-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wilsonjackson/add-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/after@0.8.2", + "author": "Raynos", + "name": "after", + "version": "0.8.2", + "description": "after - tiny flow control", + "hashes": [ + { + "alg": "SHA-512", + "content": "41b27435343f23d0c8dee48903871b7b18b041e4407e33d272a21b4a350377d4ceadc83aa5391d83389eb0eab104c0738adf2f1424f0acfdbbb75def14e39144" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Raynos.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/after@0.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/after#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/after/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/after.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/alter@0.2.0", + "author": "Olov Lassus", + "name": "alter", + "version": "0.2.0", + "description": "alters a string by replacing multiple range fragments in one fast pass", + "hashes": [ + { + "alg": "SHA-512", + "content": "5aeb2ce89219ea1e23dbe360536b7ef664b04bb80149925b5380e0f3111382e003daf789512b82aef4c8882efc420644effcd7ee1e8e9d7c363e2882062ac41b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/alter@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/alter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/alter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/alter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stable@0.1.8", + "author": "Angry Bytes", + "name": "stable", + "version": "0.1.8", + "description": "A stable array sort for JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e2f6ac519ce55f72e2c3c928fdab3846484155a1bcadd6420e4a48f5a99cd82f3abb4e8b3fa14516be8b543d02e5aec89daac2bab411fcf4173d90be731c0eb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/stable@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Two-Screen/stable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Two-Screen/stable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Two-Screen/stable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@0.2.1", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "0.2.1", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ansi-regex@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@1.1.0", + "author": "Sindre Sorhus", + "name": "ansi-styles", + "version": "1.1.0", + "description": "ANSI escape codes for styling strings in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "553d1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ansi-styles@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ansi-styles#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ansi-styles/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ansi-styles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/applause@0.4.3", + "author": "outaTiME", + "name": "applause", + "version": "0.4.3", + "description": "Replace text patterns with a given replacement.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c070f973709cfa523fbfcab5553d7b48283256d5aaff41b8590e95da446876d37547842d989993432b7cb362fb88bc3a203c0aef5a7435c5c19e3b36c80d5fc6" + } + ], + "purl": "pkg:npm/applause@0.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/outaTiME/applause" + }, + { + "type": "issue-tracker", + "url": "https://github.com/outaTiME/applause/issues" + }, + { + "type": "vcs", + "url": "git://github.com/outaTiME/applause.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cson-parser@1.3.5", + "author": "Groupon", + "name": "cson-parser", + "version": "1.3.5", + "description": "Safe parsing of CSON files", + "hashes": [ + { + "alg": "SHA-512", + "content": "3dc873e1d0e4c9a7d42f8577c41b8ff4eb3c1eef5553de91f8cc6e4ca87b351f83f3ae94896ae106248b6dfbafc00a44689ce95e15d3af788f7b8945b572f371" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014, Groupon, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\nRedistributions of source code must retain the above copyright notice,\nthis list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright\nnotice, this list of conditions and the following disclaimer in the\ndocumentation and/or other materials provided with the distribution.\n\nNeither the name of GROUPON nor the names of its contributors may be\nused to endorse or promote products derived from this software without\nspecific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/cson-parser@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/groupon/cson-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/groupon/cson-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/groupon/cson-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/coffee-script@1.12.7", + "author": "Jeremy Ashkenas", + "name": "coffee-script", + "version": "1.12.7", + "description": "Unfancy JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "7cb78486ac329986adfcca533d48d2287558625d1e73698ec802c430b9b3af98b58acb86fba8df2368f6779a013b7548ce051780154870e4fdb87d5317105c93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2009-2017 Jeremy Ashkenas\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/coffee-script@1.12.7", + "externalReferences": [ + { + "type": "website", + "url": "http://coffeescript.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jashkenas/coffeescript/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jashkenas/coffeescript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash@3.10.1", + "author": "John-David Dalton", + "name": "lodash", + "version": "3.10.1", + "description": "The modern build of lodash modular utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aproba@1.2.0", + "author": "Rebecca Turner", + "name": "aproba", + "version": "1.2.0", + "description": "A ridiculously light-weight argument validator (now browser friendly)", + "hashes": [ + { + "alg": "SHA-512", + "content": "63d27a6635eda1887c4675d508c394fedb439a4d5a063ba7abdbced2d6b9c7ce560d08907d417db083c121375b8a2215701a34dc78b78ccc62801b6c75d95747" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/aproba@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/aproba" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/aproba/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/aproba.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/are-we-there-yet@1.1.7", + "author": "Rebecca Turner", + "name": "are-we-there-yet", + "version": "1.1.7", + "description": "Keep track of the overall completion of many disparate processes", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f1c32e344ee322506a8cc911e0092599f45338540a113f8c546124efe48991a20fa1f722123db547ec7f1f012088cd89fdc2512fe33bc52fbb8a0cc085426de" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/are-we-there-yet@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/are-we-there-yet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/are-we-there-yet/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/are-we-there-yet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/delegates@1.0.0", + "name": "delegates", + "version": "1.0.0", + "description": "delegate methods and accessors to another property", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ddd8bebbf2e89601333a9b967557334212b2378e21b3b7a1c663c395202b38d0942afc700b7dbc8d266a745036a4118e2930c68dd0bcb9a26fc1d5523ffb17d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/delegates@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/node-delegates#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/node-delegates/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/node-delegates.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-equal@1.0.0", + "author": "Jonathan Ong", + "name": "array-equal", + "version": "1.0.0", + "description": "check if two arrays are equal", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f72d4e512e24ac1973e137e362a5aaf4891d08a1f1fef2bf3d1b6cb5b412b143f6a06a02b20238640050d105fa1d3f671a3eb34a1e901634833f73dc9e2fbb8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-equal@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/array-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/array-equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/array-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-find-index@1.0.2", + "author": "Sindre Sorhus", + "name": "array-find-index", + "version": "1.0.2", + "description": "ES2015 `Array#findIndex()` ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "3351d0c885dc046b55cb006df1655d8a6fa5acd68aed51e9f7d42de6948dce25f39ca1d588805b5d6b5f453a4416917f73815d7f1340b020b03e9e69841609b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-find-index@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/array-find-index#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/array-find-index/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/array-find-index.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-flatten@1.1.1", + "author": "Blake Embrey", + "name": "array-flatten", + "version": "1.1.1", + "description": "Flatten an array of nested arrays into a single flat array", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c254042cc167a6bba51dc6c0c5157ffe815798a8a0287770f75159bdd631f0ca782e3b002f60f871f2736533ef8da9170ae82c71a5469f8e684874a88789baa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-flatten@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/array-flatten" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/array-flatten/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/array-flatten.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-ify@1.0.0", + "author": "Steve Mao", + "name": "array-ify", + "version": "1.0.0", + "description": "Turn anything into an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "73900c7f7e1b29dbcf850eed04686a92028d53332be1652cf960ed0b665418e52771bc4a313beac5872d8ac796dfe2f86c0f1e73e19c67afc0fc55b89bcba49e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/array-ify@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/array-ify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/array-ify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/array-ify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arraybuffer.slice@0.0.6", + "name": "arraybuffer.slice", + "version": "0.0.6", + "description": "Exports a function for slicing ArrayBuffers (no polyfilling)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e998df41a052cba0ae207d3e07436bc4c7c31395483823ffe603aa4a9108b1a019c7dfe08accf3ad783a3d9ec6e7553f9fcf149a502060b350f70027208ecf24" + } + ], + "purl": "pkg:npm/arraybuffer.slice@0.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rase-/arraybuffer.slice" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rase-/arraybuffer.slice/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/rase-/arraybuffer.slice.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ast-traverse@0.1.1", + "author": "Olov Lassus", + "name": "ast-traverse", + "version": "0.1.1", + "description": "simple but flexible AST traversal with pre and post visitors", + "hashes": [ + { + "alg": "SHA-512", + "content": "08fb84e015888498ec34cbc592bce388180e979e8d253b813c1901ab24727eafe766dc756757f923eab1ec6fd9b7e140392f80061821904b9626b7d6f4d8e3a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ast-traverse@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/ast-traverse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/ast-traverse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/ast-traverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ast-types@0.8.18", + "author": "Ben Newman", + "name": "ast-types", + "version": "0.8.18", + "description": "Esprima-compatible implementation of the Mozilla JS Parser API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1913365ff18c8946ab66d6c33d4de257350867864b84859092fd824b2bdfd565be389f9038346efcfda46e868d741e4b079400ed3e7926c17dd9aff25f8961c4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ast-types@0.8.18", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/ast-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/ast-types/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/ast-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async@0.2.10", + "author": "Caolan McMahon", + "name": "async", + "version": "0.2.10", + "description": "Higher-order functions and common patterns for asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d2560a1b938aefeb547d3d4483b58b7b98f541da8971351e51589700b07ebbebf79fd756d4670beeefe44662b61ab957433dc3b9d7dbfaf304615d0b71b15f7" + } + ], + "purl": "pkg:npm/async@0.2.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/caolan/async#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/caolan/async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/caolan/async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-disk-cache@1.3.5", + "author": "Stefan Penner", + "name": "async-disk-cache", + "version": "1.3.5", + "description": "Async disk cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "559a6a7d1d11ec210e259ff414e4e05aaef4942ad9c92d6b908f0f5ee8035244cacb2014819db3434f602e1324127fb037c2d87944cfc59757b655ff9266d729" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/async-disk-cache@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/async-disk-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/async-disk-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/async-disk-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@2.6.9", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "2.6.9", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, \nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial \nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@2.6.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@2.0.0", + "name": "ms", + "version": "2.0.0", + "description": "Tiny milisecond conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Zeit, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ms@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zeit/ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zeit/ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zeit/ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/heimdalljs@0.2.6", + "name": "heimdalljs", + "version": "0.2.6", + "description": "Structured instrumentation library", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3d6dddf4fb9bcb06f06dcc23f0c06aa9af2dbe9f41e2e87d7eab0b7acbed24c111c6185f131488493e69ee334c4ef7bcda2ab0d93303bf579e9f0279fc9bfb4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/heimdalljs@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hjdivad/heimdalljs-lib#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hjdivad/heimdalljs-lib/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/heimdalljs/heimdalljs-lib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rsvp@3.2.1", + "author": "Tilde, Inc. & Stefan Penner", + "name": "rsvp", + "version": "3.2.1", + "description": "A lightweight library that provides tools for organizing asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "39f5864136fdbe7c118f0b40d90c291b62027251c2de981764ee71b7c1f611f803aae3b4a957526f94fcf0be2a255004ba06d2e7aa40b95e1764ce7c517f2e97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rsvp@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tildeio/rsvp.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tildeio/rsvp.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tildeio/rsvp.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istextorbinary@2.1.0", + "author": "2012+ Bevry Pty Ltd", + "name": "istextorbinary", + "version": "2.1.0", + "description": "Determines if a buffer is comprised of text or binary", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9746516c793f01dcbf4aca3c712e37d748b32e12b283b1df0304daec6b1a1588004c11994e482b2dc26c34aa9a055f7f94eb2594d7284bb9d01eebf9444c618" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/istextorbinary@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/istextorbinary" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/istextorbinary/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/bevry/istextorbinary.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/binaryextensions@2.3.0", + "author": "2013+ Bevry Pty Ltd", + "name": "binaryextensions", + "version": "2.3.0", + "description": "A package that contains an array of every single file extension there is for binary files", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c08a1950b181b2739070abaf84b2e6ef00d6061317892870cedd18e7bf0534e367dac104d07ccdcac67ec81d45d03b3e1bcdfc2c198607192bd7c96e333862e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/binaryextensions@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/binaryextensions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/binaryextensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/binaryextensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/editions@1.3.4", + "author": "2016+ Bevry Pty Ltd", + "name": "editions", + "version": "1.3.4", + "description": "Publish multiple editions for your JavaScript packages consistently and easily (e.g. source edition, esnext edition, es2015 edition)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8336a8fa6c67603cc8cac5ca3108bff8cd668f2feb8deb2d8e0e8e3e8613b48fb7233a76de8886662b6c97d94f0cf8931976dc4889358895a196249a825c6752" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/editions@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/editions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/editions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/editions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/textextensions@2.6.0", + "author": "2013+ Bevry Pty Ltd", + "name": "textextensions", + "version": "2.6.0", + "description": "A package that contains an array of every single file extension there is for text files", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3d5ad0164beb5cb32f77751b7a3f43f700c0f69b93ef5d186e100d24697a2ce592e5ba3b589a9985b01f90bd6512c44d59b2cb666177d0ecbe34f8471082901" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/textextensions@2.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/textextensions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/textextensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/textextensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rsvp@3.6.2", + "author": "Tilde, Inc. & Stefan Penner", + "name": "rsvp", + "version": "3.6.2", + "description": "A lightweight library that provides tools for organizing asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "39f5864136fdbe7c118f0b40d90c291b62027251c2de981764ee71b7c1f611f803aae3b4a957526f94fcf0be2a255004ba06d2e7aa40b95e1764ce7c517f2e97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rsvp@3.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tildeio/rsvp.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tildeio/rsvp.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tildeio/rsvp.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/username-sync@1.0.3", + "author": "Stefan Penner", + "name": "username-sync", + "version": "1.0.3", + "description": "username but only sync and for node 0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bfeff152aa324d0331762dae38f1cfda1289b4809cbb1d8ed8e74f61ea5d1e3ef12416272d006a6dc166a3d66b16277f096df103394a04f24a8579ef441ca74" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/username-sync@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/username-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/username-sync/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/stefanpenner/username-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-core@5.8.38", + "author": "Sebastian McKenzie", + "name": "babel-core", + "version": "5.8.38", + "description": "A compiler for writing next generation JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "695a0fb9a122249fefa85a58b86a779073ab29e29c8829230c4fdef6f6b756848f01edfb41cd3ef4067e801808313bbc57cade0adda55bcd3d7bc93528941d69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-core@5.8.38", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-constant-folding@1.0.1", + "name": "babel-plugin-constant-folding", + "version": "1.0.1", + "description": "Compile static constants (ie. code that we can statically determine to be constant at runtime)", + "hashes": [ + { + "alg": "SHA-512", + "content": "46f873f7ea3cfc16eaabaa9308eec550f63186bcea77f5e4218e3cd83758ad7a456e186a0eeff165951de7fbd81d5de8104d69a16f8cd74a6345910b0dea70c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-constant-folding@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-constant-folding#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-constant-folding/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-constant-folding.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-dead-code-elimination@1.0.2", + "name": "babel-plugin-dead-code-elimination", + "version": "1.0.2", + "description": "Eliminate dead code", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1b557041c8aa9a6882f7fb76bd6d148b00bd066214166264025936864d73acaaa7b52618bea9a8fcfc7fb243918c88986f6044226b0cce0a3092d5d9a3bc4e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-dead-code-elimination@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-dead-code-elimination#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-dead-code-elimination/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-dead-code-elimination.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-eval@1.0.1", + "name": "babel-plugin-eval", + "version": "1.0.1", + "description": "Compile eval calls with string literals", + "hashes": [ + { + "alg": "SHA-512", + "content": "62ef47e4f6d0286569fcefc11575146c754853305e66d10bf9893e228f0d0f83686d0616f1e83fced4e83249fed7f750ad08da39e16d8812ad91807058bbc587" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-eval@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-eval#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-eval/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-eval.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-inline-environment-variables@1.0.1", + "name": "babel-plugin-inline-environment-variables", + "version": "1.0.1", + "description": "Inline environment variables", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba9365b7618c98f90b32d244404a8907e63539e36cefc5b9fada0b4d80ffce8b72a4f8342b6c3bf5f15f9a279edf87a1bcbc0e64bee4871b643d4e78212d4abf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-inline-environment-variables@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-inline-environment-variables#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-inline-environment-variables/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-inline-environment-variables.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-jscript@1.0.4", + "name": "babel-plugin-jscript", + "version": "1.0.4", + "description": "Babel plugin to fix buggy JScript named function expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "78c4f5d22956a96bc1b462fbd1f1557227b139c8df3da78e1ecc9fa793aeba64c53d2c656b69094d9b83cc8a536cab291d5172cc21b163a369189a257d5cb081" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-jscript@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-jscript#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-jscript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-jscript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-member-expression-literals@1.0.1", + "name": "babel-plugin-member-expression-literals", + "version": "1.0.1", + "description": "Turn valid member expression property literals into plain identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "425fd408639a0349d03fff47d0c7e11529f65359b698bb09168efa34354142bcb9b820db17cfbe52fe15c80b7243cb3a50772820ac5ea7345b64697ffd7e7af7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-member-expression-literals@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-member-expression-literals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-member-expression-literals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-member-expression-literals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-property-literals@1.0.1", + "name": "babel-plugin-property-literals", + "version": "1.0.1", + "description": "Turn valid property key literals to plain identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "652d49b9526ea348fc216d91464f3103a311fe2d78288021983347922a459f9d6e5ded52fe1087eaef95ed3c1e17d6aba13d3b17d3e8c6d10d9ae8457d5beae2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-property-literals@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-property-literals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-property-literals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-property-literals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-proto-to-assign@1.0.4", + "name": "babel-plugin-proto-to-assign", + "version": "1.0.4", + "description": "Babel plugin for turning __proto__ into a shallow property clone", + "hashes": [ + { + "alg": "SHA-512", + "content": "558d159ce0cfd799f93916c9345210d25cdec217fe5ea91cc1b03952979e27debfc081666ef1caf1f34026875d1d4bb197a6f9859b72815752b37ab03c06bfd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-proto-to-assign@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-proto-to-assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-proto-to-assign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-proto-to-assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-react-constant-elements@1.0.3", + "name": "babel-plugin-react-constant-elements", + "version": "1.0.3", + "description": "Treat React JSX elements as value types and hoist them to the highest scope", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6fbf90c9f0d07990ace30f9b6a9e46e6d339e6281cc30ca173f36cc92a7e21171b355709375a894b37c472a51ce50ec75d3503cbb834bfd311eafeefc9ea2ef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-react-constant-elements@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-react-constant-elements#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-react-constant-elements/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-react-constant-elements.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-react-display-name@1.0.3", + "name": "babel-plugin-react-display-name", + "version": "1.0.3", + "description": "Add displayName to React.createClass calls", + "hashes": [ + { + "alg": "SHA-512", + "content": "20c3be204bc52b36602db98efa519ca0f29e0fea41838f13f69f9980c6ca917c85bc7935a4a787b27863578e46471541402f922d89261bb1076d70d6c5f4e138" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-react-display-name@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-react-display-name#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-react-display-name/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-react-display-name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-remove-console@1.0.1", + "name": "babel-plugin-remove-console", + "version": "1.0.1", + "description": "Remove console.* calls", + "hashes": [ + { + "alg": "SHA-512", + "content": "74d36aa987916b41e925b2fe6d78125de3679201dba4bb94f68df4e348b2423cc7a13ac8454c25b515b2d5966096ebb0fcfd23d6e914399b22b9d2cb5510a62b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-remove-console@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-remove-console#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-remove-console/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-remove-console.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-remove-debugger@1.0.1", + "name": "babel-plugin-remove-debugger", + "version": "1.0.1", + "description": "Remove debugger statements", + "hashes": [ + { + "alg": "SHA-512", + "content": "feb19073cb20095a5311e59084765287342300da96c69c313e56374641bd91e2b9f8d29d03653aba47c2fdcc92a126b55e617033a3413baed05ae38647f0c7ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-remove-debugger@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-remove-debugger#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-remove-debugger/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-remove-debugger.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-runtime@1.0.7", + "name": "babel-plugin-runtime", + "version": "1.0.7", + "description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4356c4889a122638f22ccceffa3b8161196fa8f8f8ab32de777e4b8143fa654f8d62d924734d29c6be2b2b2ad57fda36805524670a217084deeff1d4356266a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-runtime@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-runtime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-runtime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-runtime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-undeclared-variables-check@1.0.2", + "name": "babel-plugin-undeclared-variables-check", + "version": "1.0.2", + "description": "Throw a compile-time error on references to undeclared variables", + "hashes": [ + { + "alg": "SHA-512", + "content": "372b518ef7e1d0332c8d435ac4e2113a7b5fe5cd373e4b480509532bab5ec5d41947b2a1a5e1717365bcc067c5e4ba09635ddb1ebd969d1639c4b669e895ca3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-undeclared-variables-check@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-undeclared-variables-check#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-undeclared-variables-check/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-undeclared-variables-check.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/leven@1.0.2", + "author": "Sindre Sorhus", + "name": "leven", + "version": "1.0.2", + "description": "Measure the difference between two strings using the fastest JS implementation of the Levenshtein distance algorithm", + "hashes": [ + { + "alg": "SHA-512", + "content": "537788cc2da630038c3aea09db9b00ddecab6a80709dda50c98801ab9772aab313a6f320f65f57fee7051f1bfadb661c0a0d7bf565aa95ea05eeb4b37d8ad5f9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/leven@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/leven#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/leven/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/leven.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-undefined-to-void@1.1.6", + "name": "babel-plugin-undefined-to-void", + "version": "1.1.6", + "description": "Replace references to `undefined` with `void 0`", + "hashes": [ + { + "alg": "SHA-512", + "content": "6008be9965fe025d3c7ba22c6eff20d948a0654a159d9bae17f245986e6e019290fba11820b0421664b6f0179d33b4ece106c02294aac1774c0737a3fbdb4752" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-undefined-to-void@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel-plugins/babel-plugin-undefined-to-void#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel-plugins/babel-plugin-undefined-to-void/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel-plugins/babel-plugin-undefined-to-void.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babylon@5.8.38", + "author": "Sebastian McKenzie", + "name": "babylon", + "version": "5.8.38", + "description": "

\"babylon\"

", + "hashes": [ + { + "alg": "SHA-512", + "content": "fabab672be060e1b53a04cca143e8a659303057863140afd2633f0f69029a590027845aa34cdbde23f8d741ce4487617c33cc19958d9de71152653a16d1da039" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babylon@5.8.38", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bluebird@2.11.0", + "author": "Petka Antonov", + "name": "bluebird", + "version": "2.11.0", + "description": "Full featured Promises/A+ implementation with exceptionally good performance", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e9363e860d0cdd7d6fabd969e7ef189201ded33378f39311970464ed58ab925efd71515f9acf1026f2375664dd3a413424fb63765c1f6344392f6e6426711b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2015 Petka Antonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bluebird@2.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/petkaantonov/bluebird" + }, + { + "type": "issue-tracker", + "url": "http://github.com/petkaantonov/bluebird/issues" + }, + { + "type": "vcs", + "url": "git://github.com/petkaantonov/bluebird.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js@1.2.7", + "name": "core-js", + "version": "1.2.7", + "description": "Standard library", + "hashes": [ + { + "alg": "SHA-512", + "content": "6623e9f69665831a5646ed0cf9859b9baf9a43ce1711f1f52515ef7ce73f7c82d623454a84b0b62d7d775f5358ab87d42f32ccabb1df878dc24a8dbf6886943c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js@1.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-indent@3.0.1", + "author": "Sindre Sorhus", + "name": "detect-indent", + "version": "3.0.1", + "description": "Detect the indentation of code", + "hashes": [ + { + "alg": "SHA-512", + "content": "c68dd63fae9235baf51229bce6cfeac87d192fc3d0530a7ce875a6d12d65f169c9ff38d3e93df0d67c0d034c8e65ebaf39e9aea4462fa6f17a04875846e11125" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/detect-indent@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/detect-indent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/detect-indent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/detect-indent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-stdin@4.0.1", + "author": "Sindre Sorhus", + "name": "get-stdin", + "version": "4.0.1", + "description": "Easier stdin", + "hashes": [ + { + "alg": "SHA-512", + "content": "179690332c302769fce6ce2124f4d3f513f11a6b9ba27b81d7430d628d7bff1a61d7be27d8c211df71d182e87355a835d0efe7a4ced23e4ef72cc64d3fe15a5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/get-stdin@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/get-stdin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/get-stdin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/get-stdin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/repeating@1.1.3", + "author": "Sindre Sorhus", + "name": "repeating", + "version": "1.1.3", + "description": "Repeat a string - fast", + "hashes": [ + { + "alg": "SHA-512", + "content": "361df424b78c1dda08f80b10e5e6e5859ed8953b0cf7088941efc01c8ba794adca5b3bd78576f7e8827b2b520e7918c83adccc8dd5078f05d4171289a0f4d23a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/repeating@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/repeating#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/repeating/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/repeating.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-finite@1.1.0", + "author": "Sindre Sorhus", + "name": "is-finite", + "version": "1.1.0", + "description": "ES2015 Number.isFinite() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "71dc8cb6a5ff04eaaa3410622a5215932b4d1e6e3d32d3256329f5cf1cef24a5a614c946ce6fabcb90417d8c9e63d62634a6d14a8fe8ece5fdc3d6a57b4c20df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-finite@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-finite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-finite/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-finite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-readdir-recursive@0.1.2", + "author": "Jonathan Ong", + "name": "fs-readdir-recursive", + "version": "0.1.2", + "description": "Recursively read a directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "fffc9fc666006b3aecc9bfeb81e6033455c54ee3d84c6622ae9e501c5487f21fcb68d5283f96d001ada292cb5d2b53d1fdb15dd4222540ba54abafeee9455f4b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-readdir-recursive@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fs-utils/fs-readdir-recursive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fs-utils/fs-readdir-recursive/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fs-utils/fs-readdir-recursive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globals@6.4.1", + "author": "Sindre Sorhus", + "name": "globals", + "version": "6.4.1", + "description": "Global identifiers from different JavaScript environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e069fc410652222c252a7bc1cbffcba30efa557d5289dc5aac6e15f9bc781c3358d8327c177a1b3f8878a43d8c29b28681fdf60d793374fe41a5471638b354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globals@6.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/home-or-tmp@1.0.0", + "author": "Sindre Sorhus", + "name": "home-or-tmp", + "version": "1.0.0", + "description": "Get the user home directory with fallback to the system temp directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8b29066947a824f2e2779976c19323ae9ac036e01524f421ffefd8af67c2a4d6eaf3957346641a0032e89e0bf633c02c86055aaafae08d529035252ea096bc6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/home-or-tmp@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/home-or-tmp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/home-or-tmp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/home-or-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/user-home@1.1.1", + "author": "Sindre Sorhus", + "name": "user-home", + "version": "1.1.1", + "description": "Get the path to the user home directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a082229f104b9bbf753044da93ccb22766900e98acf0747a840665bf84103f9adf7d7a0f9be15ad7ea2f8844bc54f3e58961f6b7deb1b046c7a0e1e125520b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/user-home@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/user-home#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/user-home/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/user-home.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-integer@1.0.7", + "author": "Parsha Pourkhomami", + "name": "is-integer", + "version": "1.0.7", + "description": "ES2015 (ES6) Number.isInteger polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "44f41cfecf720474afa62fa1b3d758889d9cb85794eb1dd3cb2229f0ed87e9228496d22f24ecd18fd4e8caf712b43bcf47fa52e2bc60af5a0115a8d08d9d92ce" + } + ], + "licenses": [ + { + "license": { + "name": "WTFPL OR ISC", + "text": { + "contentType": "text/markdown", + "content": "This project is licensed under the [WTFPL][] and [ISC][] licenses.\n\n[WTFPL]: https://en.wikipedia.org/wiki/WTFPL\n[ISC]: https://opensource.org/licenses/ISC\n\n## WTFPL\n\nDO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\nVersion 2, December 2004\n\nCopyright (C) 2004 Sam Hocevar \\\n\nEveryone is permitted to copy and distribute verbatim or modified copies\nof this license document, and changing it is allowed as long as the name\nis changed.\n\nDO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR\nCOPYING, DISTRIBUTION AND MODIFICATION\n\n0. You just DO WHAT THE FUCK YOU WANT TO.\n\n## ISC\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-integer@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/parshap/js-is-integer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/parshap/js-is-integer/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/parshap/js-is-integer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-tokens@1.0.1", + "author": "Simon Lydell", + "name": "js-tokens", + "version": "1.0.1", + "description": "A regex that tokenizes JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4634dcb83e318edb614246961fb745947f392fe41a56d4a83b219d67783a1c5852f5d14d0df2f2aa09b63457b65fa710a5e166b74e39d85263146e546a6784c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-tokens@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/js-tokens#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/js-tokens/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/js-tokens.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json5@0.4.0", + "author": "Aseem Kishore", + "name": "json5", + "version": "0.4.0", + "description": "JSON for the ES5 era.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4412eb88ee869dd1de9cd8f72b4d12e82c7d8936e23f689c47b154f685514ae9f287bbe31738d761cf3ccd0256f725731eb8dd68fa40d4efc7d5d581fa56629" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/json5@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "http://json5.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aseemk/json5/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aseemk/json5.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimatch@2.0.10", + "author": "Isaac Z. Schlueter", + "name": "minimatch", + "version": "2.0.10", + "description": "a glob matcher in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimatch@2.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minimatch/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/minimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/output-file-sync@1.1.2", + "author": "Shinnosuke Watanabe", + "name": "output-file-sync", + "version": "1.1.2", + "description": "Synchronously write a file and create its ancestor directories if needed", + "hashes": [ + { + "alg": "SHA-512", + "content": "b902e5725aeee31a428beb5fb3cd25dd0176e0a2fcd57e7b10b34ccbb5bf768c7e253b7151fd5b2f243cf7af1f142992aaa6e89235b4927f9604894efab4a436" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 - 2016 Shinnosuke Watanabe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/output-file-sync@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shinnn/output-file-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shinnn/output-file-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shinnn/output-file-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-exists@1.0.0", + "author": "Sindre Sorhus", + "name": "path-exists", + "version": "1.0.0", + "description": "Check if a path exists", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e90bb198c220d8438c182def8503c96146385008c7101ae4a0186a83920fd07ab456c3d0a61914f4892395452649dbd34c2d9808cea6a58c9eb7a1a2f834825" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-exists@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-exists#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-exists/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-exists.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/private@0.1.8", + "author": "Ben Newman", + "name": "private", + "version": "0.1.8", + "description": "Utility for associating truly private state with any JavaScript object", + "hashes": [ + { + "alg": "SHA-512", + "content": "56f8af32b6ef7769ca9221b7f2a8d42f395cfb8571e309bfc2123da500f7e58ac044d9e1c5e89192d48e852ba444b14d97383a06bfdc24f7ade49feed7daff9a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/private@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/private" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/private/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/private.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator@0.8.40", + "author": "Ben Newman", + "name": "regenerator", + "version": "0.8.40", + "description": "Source transformer enabling ECMAScript 6 generator functions (yield) in JavaScript-of-today (ES5)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c58403ec3a727f5086421b5fa22122a27338e72d6690e116ad3e483905921c833d26dc2fadc58dbc5341fb8a3f9f2d2003998fa41e3f4765f7fa08babd86b54" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "content": "BSD License\n\nFor \"regenerator\" software\n\nCopyright (c) 2014, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n\t*\tRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n\t*\tRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/regenerator@0.8.40", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/facebook/regenerator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/regenerator/issues" + }, + { + "type": "vcs", + "url": "git://github.com/facebook/regenerator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commoner@0.10.8", + "author": "Ben Newman", + "name": "commoner", + "version": "0.10.8", + "description": "Flexible tool for translating any dialect of JavaScript into Node-readable CommonJS modules", + "hashes": [ + { + "alg": "SHA-512", + "content": "dffa8790d30cea8fca1971c84c0d78cbbf0f71f997878f803822694a817bde1e15635269746bf7087312e7e256e92c0b85f26de1184d98b01aefe4515ffeb611" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commoner@0.10.8", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/commoner" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/commoner/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/commoner.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detective@4.7.1", + "author": "James Halliday", + "name": "detective", + "version": "4.7.1", + "description": "find all require() calls by walking the AST", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fa3e679e51c665a16b5db780c0905cb314bf786aba47af734ec3099520b162cbef50778253c715ebcdfc8693f96672ddaa5460704d2c125da82abb60719968a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/detective@4.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/detective#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/detective/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/detective.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/defined@1.0.0", + "author": "James Halliday", + "name": "defined", + "version": "1.0.0", + "description": "return the first argument that is `!== undefined`", + "hashes": [ + { + "alg": "SHA-512", + "content": "63671a239f99c12e5cdd188d0c9eaee77561407bfe8472b0864235887bdc78a507c3d0dfe842b6cd12df8de8d180cb82bb12bb3df49620cc1679c71e56f4e18d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/defined@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/defined" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/defined/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/defined.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@5.0.15", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "5.0.15", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@5.0.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/q@1.5.1", + "author": "Kris Kowal", + "name": "q", + "version": "1.5.1", + "description": "A library for promises (CommonJS/Promises/A,B,D)", + "hashes": [ + { + "alg": "SHA-512", + "content": "915fc24e1917a3ac72144654ba0c3ffa920ecb05dc0db15881272de5c4f782a95b901135489770cba510a19be8762585fdc9102d9c8313f06ed4cea056ee6557" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2009–2017 Kristopher Michael Kowal. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/q@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriskowal/q" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kriskowal/q/issues" + }, + { + "type": "vcs", + "url": "git://github.com/kriskowal/q.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/recast@0.11.23", + "author": "Ben Newman", + "name": "recast", + "version": "0.11.23", + "description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "182d60e0fdf7eadf163a9cd51853a8f379b5e3141f1db56a7be783bacfb8a2e6e86e459bfe438dc0c5921baf8adc152d04ea1475453e193f6498d092381bfdfa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/recast@0.11.23", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/recast" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/recast/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/recast.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ast-types@0.9.6", + "author": "Ben Newman", + "name": "ast-types", + "version": "0.9.6", + "description": "Esprima-compatible implementation of the Mozilla JS Parser API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1913365ff18c8946ab66d6c33d4de257350867864b84859092fd824b2bdfd565be389f9038346efcfda46e868d741e4b079400ed3e7926c17dd9aff25f8961c4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ast-types@0.9.6", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/ast-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/ast-types/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/ast-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima@3.1.3", + "author": "Ariya Hidayat", + "name": "esprima", + "version": "3.1.3", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esprima@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "http://esprima.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/esprima/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/defs@1.1.1", + "author": "Olov Lassus", + "name": "defs", + "version": "1.1.1", + "description": "Static scope analysis and transpilation of ES6 block scoped const and let variables, to ES3.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a0195d6f9926b650f29e0d76961391625e38b1f013ad60c8223c6a5885dff8db0c620ba606c2db1c8ffcd4f600f9ff19382b688b0e9c86846039a6e67169e32" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/defs@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/defs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/defs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/defs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/breakable@1.0.0", + "author": "Olov Lassus", + "name": "breakable", + "version": "1.0.0", + "description": "Break out of functions, recursive or not, in a more composable way than by using exceptions explicitly. Non-local return.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa2b7226a723868cd036b7b3cd377676d1ff964217984e761cbf85a212b64ce2d00e5dd05114cd9229bed82d3172ca3865e86afc73385a4ba671dcfb51ef9798" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/breakable@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/breakable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/breakable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/breakable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima-fb@15001.1001.0-dev-harmony-fb", + "author": "Ariya Hidayat", + "name": "esprima-fb", + "version": "15001.1001.0-dev-harmony-fb", + "description": "Facebook-specific fork of the esprima project", + "purl": "pkg:npm/esprima-fb@15001.1001.0-dev-harmony-fb", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/esprima/tree/fb-harmony" + }, + { + "type": "issue-tracker", + "url": "http://issues.esprima.org" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/facebook/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/simple-fmt@0.1.0", + "author": "Olov Lassus", + "name": "simple-fmt", + "version": "0.1.0", + "description": "maximally minimal string formatting library", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5adf34c30e1f4b5db4d1dfba81840096210fe63ffaf2e71b666c4f7c04933c191d36b1a9c291f333a7b01d093a988640598202bfc3b849b5cf0f6fd9e6a35e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/simple-fmt@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/simple-fmt#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/simple-fmt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/simple-fmt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/simple-is@0.2.0", + "author": "Olov Lassus", + "name": "simple-is", + "version": "0.2.0", + "description": "maximally minimal type-testing library", + "hashes": [ + { + "alg": "SHA-512", + "content": "1895e1bf7af9bdd8f9b4658efab72b5a08d4d9accb07e7dbec4861dd2999a57134a382abac52ed8b4c3899d0c26d1dbd5ffcf42ecdb40298d98ad9690178407a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/simple-is@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/simple-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/simple-is/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/simple-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stringmap@0.2.2", + "author": "Olov Lassus", + "name": "stringmap", + "version": "0.2.2", + "description": "fast and robust stringmap", + "hashes": [ + { + "alg": "SHA-512", + "content": "991d4b1070f0e93b076be2f025e78173d66a66a10e9bb6c789d8313260e0f0707fadb0351e10de4f4f204baec20821bfc6b8087d0c79b56e36a5df2f1692d4a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stringmap@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/stringmap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/stringmap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/stringmap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stringset@0.2.1", + "author": "Olov Lassus", + "name": "stringset", + "version": "0.2.1", + "description": "fast and robust stringset", + "hashes": [ + { + "alg": "SHA-512", + "content": "926de37a24699b2482865d682e2044d8449d1b993fe3eead8c43552fa041de67662818948a423992ce2969a7765802acc73a4d881a8105b5c20b5d90aa5a4b58" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stringset@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/stringset#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/stringset/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/stringset.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tryor@0.1.2", + "author": "Olov Lassus", + "name": "tryor", + "version": "0.1.2", + "description": "return fn() or default value (in case of exception)", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbe8a5340d340c6bdb51861b46b9b7bb1fac9dba3b23ab8f5ccc3c238a7f40c97b1d43960416456e4f8ca6bf3f2003c3404f8b43cbce76523ac44ce373e7bf05" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Olov Lassus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tryor@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olov/tryor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olov/tryor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olov/tryor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@3.27.0", + "author": "Alex Ford", + "name": "yargs", + "version": "3.27.0", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@3.27.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bcoe/yargs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcoe/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/bcoe/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-locale@1.4.0", + "author": "Sindre Sorhus", + "name": "os-locale", + "version": "1.4.0", + "description": "Get the system locale", + "hashes": [ + { + "alg": "SHA-512", + "content": "decb251b7cc96c461c682e18540bc3a2b8c6c5ceedbfa2950139cb3d938d8a58ec52772f8a17bd050a15084b34459d6499fe0793d381aa565f259588e066a728" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-locale@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/os-locale#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/os-locale/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/os-locale.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/recast@0.10.33", + "author": "Ben Newman", + "name": "recast", + "version": "0.10.33", + "description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "182d60e0fdf7eadf163a9cd51853a8f379b5e3141f1db56a7be783bacfb8a2e6e86e459bfe438dc0c5921baf8adc152d04ea1475453e193f6498d092381bfdfa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/recast@0.10.33", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/recast" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/recast/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/recast.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ast-types@0.8.12", + "author": "Ben Newman", + "name": "ast-types", + "version": "0.8.12", + "description": "Esprima-compatible implementation of the Mozilla JS Parser API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1913365ff18c8946ab66d6c33d4de257350867864b84859092fd824b2bdfd565be389f9038346efcfda46e868d741e4b079400ed3e7926c17dd9aff25f8961c4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ast-types@0.8.12", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/ast-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/ast-types/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/ast-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpu@1.3.0", + "author": "Mathias Bynens", + "name": "regexpu", + "version": "1.3.0", + "description": "A source code transpiler that enables the use of ES6 Unicode regular expressions in ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aaa5009309c54cea4f486f3c4b8cd37a4d18f7355eea1782fccd4aac3687809a6219a7cc07d6d7599e7d2f357136b46354e21a34c536569371666a13adc8c44" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regexpu@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regexpu" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regexpu/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regexpu.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima@2.7.3", + "author": "Ariya Hidayat", + "name": "esprima", + "version": "2.7.3", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esprima@2.7.3", + "externalReferences": [ + { + "type": "website", + "url": "http://esprima.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/esprima/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/recast@0.10.43", + "author": "Ben Newman", + "name": "recast", + "version": "0.10.43", + "description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "182d60e0fdf7eadf163a9cd51853a8f379b5e3141f1db56a7be783bacfb8a2e6e86e459bfe438dc0c5921baf8adc152d04ea1475453e193f6498d092381bfdfa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/recast@0.10.43", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/recast" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/recast/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/recast.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ast-types@0.8.15", + "author": "Ben Newman", + "name": "ast-types", + "version": "0.8.15", + "description": "Esprima-compatible implementation of the Mozilla JS Parser API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1913365ff18c8946ab66d6c33d4de257350867864b84859092fd824b2bdfd565be389f9038346efcfda46e868d741e4b079400ed3e7926c17dd9aff25f8961c4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ast-types@0.8.15", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/benjamn/ast-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/ast-types/issues" + }, + { + "type": "vcs", + "url": "git://github.com/benjamn/ast-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerate@1.4.2", + "author": "Mathias Bynens", + "name": "regenerate", + "version": "1.4.2", + "description": "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb71e47f5e119853f77fa29af610a3bb6911d47a2048f2a8ed7c7a800d3c1977a4b37f2d7a95aea4a83d0c214b39cf9871e8068a6be3e2c693eb476f3df88d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerate@1.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regenerate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regenerate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regenerate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regjsgen@0.2.0", + "author": "Benjamin Tan", + "name": "regjsgen", + "version": "0.2.0", + "description": "Generate `RegExp`s from RegJSParser’s AST", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7e637c80db8b85ebc9b9180fad0636c6628eb8c57549a5b4e805a582a1235273585d93a75f72d6915ab3454d525920884be46c56f33c23a22c5b9e27e72b9f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2014 Benjamin Tan (https://d10.github.io/)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/regjsgen@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/d10/regjsgen" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d10/regjsgen/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d10/regjsgen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regjsparser@0.1.5", + "author": "'Julian Viereck'", + "name": "regjsparser", + "version": "0.1.5", + "description": "Parsing the JavaScript's RegExp in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e543d8182df936a77579020e5f62103b7efece1f37752941f43d13f8eb17374e0c23c2044e216e7bd807d883f5fd91a36afcb267bbaa09705457948ac6a1347" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "content": "Redistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/regjsparser@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jviereck/regjsparser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jviereck/regjsparser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jviereck/regjsparser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsesc@0.5.0", + "author": "Mathias Bynens", + "name": "jsesc", + "version": "0.5.0", + "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", + "hashes": [ + { + "alg": "SHA-512", + "content": "398bbb5c4ce39024370b93ecdd0219b107cda6aa09c99640f7dc1df5a59dd39342b42e6958e91284ada690be875d047afc2cb695b35d3e5641a6e4075c4eb780" + } + ], + "purl": "pkg:npm/jsesc@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "http://mths.be/jsesc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/jsesc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/jsesc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/slash@1.0.0", + "author": "Sindre Sorhus", + "name": "slash", + "version": "1.0.0", + "description": "Convert Windows backslash paths to slash paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd360347bc56b78748a95d896ae26bf8425e5b7e7a4578a31de5253bef1d8c9fae0573e7f3fd9da7305cf32421879f37b15bdcf42bc501e4158228ec1fe3cd36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/slash@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/slash#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/slash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/slash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.2.10", + "name": "source-map-support", + "version": "0.2.10", + "description": "Fixes stack traces for files with source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "80628e49ab7bdf3d15f3004aa3d006c596727a4733062ade87584792d6edfa46fd69cb0207939f5421760c25a5ced710debe6834dedfd812f4076c4e72827f0d" + } + ], + "purl": "pkg:npm/source-map-support@0.2.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/evanw/node-source-map-support#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/evanw/node-source-map-support/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/evanw/node-source-map-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.1.32", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.1.32", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "purl": "pkg:npm/source-map@0.1.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-fast-properties@1.0.3", + "author": "Sindre Sorhus", + "name": "to-fast-properties", + "version": "1.0.3", + "description": "Force V8 to use fast properties for an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "fce68a2b4c58aecdc39b1458a8bff20dcf85c455156210e55cc8519afdf3f75e70d87175b67375a26077e788fc55418efe16d1cf20fa637b00eefec64bf71ea2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Petka Antonov\n 2015 Sindre Sorhus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-fast-properties@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/to-fast-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/to-fast-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/to-fast-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/try-resolve@1.0.1", + "author": "Sebastian McKenzie", + "name": "try-resolve", + "version": "1.0.1", + "description": "Try and resolve a filename", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8779a3e3081cd5697c1697920c51aa536930b6ae7fde0588367ec1b62fe0af25dfadb456e4d329439e94cedf0561a2c984d6d404bdc79b6c178a2c2c1271049" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/try-resolve@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sebmck/try-resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sebmck/try-resolve/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sebmck/try-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/backbone@1.4.1", + "author": "Jeremy Ashkenas", + "name": "backbone", + "version": "1.4.1", + "description": "Give your JS App some Backbone with Models, Views, Collections, and Events.", + "hashes": [ + { + "alg": "SHA-512", + "content": "003cb5ced374ef862459b1e2f288c95457b7bc06a73bf96bccc1995940a520fee80c3fcf8f2dafac04ab6943fed845427c8893b425b8142855a30d355e77a2bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2022 Jeremy Ashkenas, DocumentCloud\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/backbone@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jashkenas/backbone#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jashkenas/backbone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jashkenas/backbone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/underscore@1.13.4", + "author": "Jeremy Ashkenas", + "name": "underscore", + "version": "1.13.4", + "description": "JavaScript's functional programming helper library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "050167503b8043861ffdc618e4b36b2bd3422452ab89a45b0fdb91d5f4de5e705ea1af7b5b48b8d6a9197c63bda52a3c2392b38c07126365d8b5d7f4a0a77b29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/underscore@1.13.4", + "externalReferences": [ + { + "type": "website", + "url": "https://underscorejs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jashkenas/underscore/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jashkenas/underscore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/backo2@1.0.2", + "name": "backo2", + "version": "1.0.2", + "description": "simple backoff based on segmentio/backo", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce3e99e8cec4abe3c167b3d0c65e4d4faeb932f25d024ce9d1feb49c027eb0b6920813ccc156a4e597a015b8150b315c0894ca168322cef3392ddefe26b4491c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/backo2@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mokesmokes/backo#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mokesmokes/backo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mokesmokes/backo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/balanced-match@0.4.2", + "author": "Julian Gruber", + "name": "balanced-match", + "version": "0.4.2", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "hashes": [ + { + "alg": "SHA-512", + "content": "de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/balanced-match@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/balanced-match" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/balanced-match.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base64-arraybuffer@0.1.5", + "author": "Niklas von Hertzen", + "name": "base64-arraybuffer", + "version": "0.1.5", + "description": "Encode/decode base64 data into ArrayBuffers", + "hashes": [ + { + "alg": "SHA-512", + "content": "e37ee800d4fdb4fe7cdb364cc12bd91b2da79927806fc0d6da67b7cbe52fd56a7646e96bf0caa5cabbf713b30bc66b2268f48c3039a20d5ce013e7bcce5331f6" + } + ], + "purl": "pkg:npm/base64-arraybuffer@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/niklasvh/base64-arraybuffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/niklasvh/base64-arraybuffer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/niklasvh/base64-arraybuffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base64id@0.1.0", + "author": "Kristian Faeldt", + "name": "base64id", + "version": "0.1.0", + "description": "Generates a base64 id", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d28ed7e3840b0797d2783898fb7b8fada15db3ab126b1b055ddc22e5b02a7c42689cbce9fb8ab1b431bf1bace73f9eeaf749d3bc9486cd958d6cd590c975429" + } + ], + "purl": "pkg:npm/base64id@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faeldt/base64id#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faeldt/base64id/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/faeldt/base64id.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/better-assert@1.0.2", + "author": "TJ Holowaychuk", + "name": "better-assert", + "version": "1.0.2", + "description": "Better assertions for node, reporting the expr, filename, lineno etc", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d87a98760c59692b55e61ace9fbe52d150ddbd40848cdc606e530485b0c6365d1c7802f0b458d092e7b8f873fc46acad914b6e02d70dd8a013acc3d7d3e3ab5" + } + ], + "purl": "pkg:npm/better-assert@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/better-assert#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/better-assert/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/better-assert.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/callsite@1.0.0", + "author": "TJ Holowaychuk", + "name": "callsite", + "version": "1.0.0", + "description": "access to v8's CallSites", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2f74d4455e7e6af9db4eaa37c5b66b6523d37679567b2ccc8457688a0b9984105bd283febd325e9bfd6536a85f16d672d16b4c224ab0d3dd8e63387642c0a3d" + } + ], + "purl": "pkg:npm/callsite@1.0.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/blank-object@1.0.2", + "author": "Stefan Penner", + "name": "blank-object", + "version": "1.0.2", + "description": "A faster alternative to Object.create(null)", + "hashes": [ + { + "alg": "SHA-512", + "content": "917435f578688218b2c3ae825221b2a67b91a5695b1c0cd8ffe372bea4c47537e17d0187d7f75b10c6225e3bbb7d828815e3e9ce9ff2f5db2ee42bbf3e499ac1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/blank-object@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/blank-object#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/blank-object/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/blank-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/blob@0.0.4", + "name": "blob", + "version": "0.0.4", + "description": "Abstracts out Blob and uses BlobBulder in cases where it is supported with any vendor prefix.", + "hashes": [ + { + "alg": "SHA-512", + "content": "61173dcef573e3035ac5c5e689281bf4b020ed8630a90db17744a3ea8b1f03b93f3ca988195967398b37c0e15d9110bdfc9a50bbcb06b7fcc780957bc737ab7e" + } + ], + "purl": "pkg:npm/blob@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rase-/blob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rase-/blob/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/rase-/blob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bluebird@3.7.2", + "author": "Petka Antonov", + "name": "bluebird", + "version": "3.7.2", + "description": "Full featured Promises/A+ implementation with exceptionally good performance", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e9363e860d0cdd7d6fabd969e7ef189201ded33378f39311970464ed58ab925efd71515f9acf1026f2375664dd3a413424fb63765c1f6344392f6e6426711b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018 Petka Antonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bluebird@3.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/petkaantonov/bluebird" + }, + { + "type": "issue-tracker", + "url": "http://github.com/petkaantonov/bluebird/issues" + }, + { + "type": "vcs", + "url": "git://github.com/petkaantonov/bluebird.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-amd-loader@0.1.0", + "author": "Cory Forsyth", + "name": "broccoli-amd-loader", + "version": "0.1.0", + "description": "provides a broccoli tree with a loader.js in it", + "hashes": [ + { + "alg": "SHA-512", + "content": "e92b584d68ee00f83ab462dd2a13534460920862a7db1a2fb98df0c58b9ac766edd0887c64b3b4221c73a1face0d7e8b14b6ef66ce7f915a449351857dac81c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/broccoli-amd-loader@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/201-created/broccoli-amd-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/201-created/broccoli-amd-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/201-created/broccoli-amd-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-funnel@0.2.15", + "author": "Robert Jackson", + "name": "broccoli-funnel", + "version": "0.2.15", + "description": "Broccoli plugin that allows you to filter files selected from an input node down based on regular expressions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ba264363d8cfc50ca6b66d4020c3fb067e960ac65f89c74922bddcf9fc9652113e52afa35f26a830a7d8f4fa681c7cd91eb569da55a2b1f6b2eb2cf5b01e8b8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Robert Jackson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-funnel@0.2.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-funnel#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-funnel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-funnel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-plugin@1.3.1", + "author": "Jo Liss", + "name": "broccoli-plugin", + "version": "1.3.1", + "description": "Base class for all Broccoli plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d6f170126649a8ae9faaec9e04783119cfe2e8c8a2c07765d950b5f20fd9789bdfe100a577be31e607592252c85c58060c8133f59b68b8367a8213fdb787a01" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-plugin@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/promise-map-series@0.2.3", + "author": "Jo Liss", + "name": "promise-map-series", + "version": "0.2.3", + "description": "Map over array avoiding parallel execution, using promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "c31f4286bbadbeabb537f347cd36b2663135060230b7a489ca442808e89ce0867dc940e32b2558ae92daff860236c57ad5e44435fb36f61ac4aae56e075dd997" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/promise-map-series@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/promise-map-series#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/promise-map-series/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/promise-map-series.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/quick-temp@0.1.8", + "author": "Jo Liss", + "name": "quick-temp", + "version": "0.1.8", + "description": "Create and remove temporary directories with minimal effort", + "hashes": [ + { + "alg": "SHA-512", + "content": "62c98815f0fd8f6cda170264cc8e9e306ef2d2540fed8796ce0b4580d977f29196641497268a196ce5b091c468b7b56dd0583d2f6de95f4b6a594dd5bcb0ec88" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/quick-temp@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/node-quick-temp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/node-quick-temp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/node-quick-temp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mktemp@0.4.0", + "author": "sasa+1", + "name": "mktemp", + "version": "0.4.0", + "description": "mktemp command for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "2179cc709e99c93ba14662528f3bc749186554f88df49c1ce9ee7d5746c42746dae8e05e5f62f413e99137542c79e385e2633e175462b7a361ee8fab976627fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT LICENSE)\n\nCopyright (c) 2013-2014 sasa+1 \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mktemp@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sasaplus1/mktemp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sasaplus1/mktemp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/sasaplus1/mktemp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/underscore.string@3.3.6", + "name": "underscore.string", + "version": "3.3.6", + "description": "String manipulation extensions for Underscore.js javascript library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb191a6ee09a2019f37c8bd7de407142a0acd1aaff6df2700e71441c9526fd9ad15614f7208b5d445e5c6630112f3127c9062d21486c6762c6da3dc789d14e15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/underscore.string@3.3.6", + "externalReferences": [ + { + "type": "website", + "url": "http://epeli.github.com/underscore.string/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epeli/underscore.string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epeli/underscore.string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/symlink-or-copy@1.3.1", + "author": "Jo Liss", + "name": "symlink-or-copy", + "version": "1.3.1", + "description": "Symlink files or directories, falling back to copying on Windows", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0af753045c5a4151acb08b04929262a39c671ab06feb5415c52c9cf90eb80669ba580fa37edf266b7c3eae5087e9b93bbae4364b1e2ecdf028b31dcd3b04f64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Robert Jackson, Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/symlink-or-copy@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/node-symlink-or-copy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/node-symlink-or-copy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/node-symlink-or-copy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-ordered-set@1.0.3", + "name": "fast-ordered-set", + "version": "1.0.3", + "description": "quick and dirty ordered-set", + "hashes": [ + { + "alg": "SHA-512", + "content": "331056e144726c5b333b1d58940084a0ae763fa944df188570f68609467b410399eae2572a8fbe49ef306b7d528dc67e342fdf740597ed4b4a11f6868074b656" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/fast-ordered-set@1.0.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-tree-diff@0.3.1", + "author": "Stefan Penner, David J. Hamilton, Chad Hietala", + "name": "fs-tree-diff", + "version": "0.3.1", + "description": "Backs out file tree changes", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3bd86f1ac74907874d66f67ff6283ce0630a2e2b36b401df62165b41a4dca4bd13af7f6006b683b33c9806c75db96a89463c447726e0bbb9916b43b6c6d4067" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/fs-tree-diff@0.3.1" + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-posix@1.0.0", + "author": "jden", + "name": "path-posix", + "version": "1.0.0", + "description": "posix-specific core path module", + "hashes": [ + { + "alg": "SHA-512", + "content": "d602745a9348898710c9d820dc477c2b3bc8a93b03a4dc2af9c8c10acb2f06db935a312a635016fa2f8e7a988432a0c2cf2ae8f41dac2c07b84413da8cc60588" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "Node's license follows:\n\n====\n\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\n====\n" + } + } + } + ], + "purl": "pkg:npm/path-posix@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jden/node-path-posix#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jden/node-path-posix/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jden/node-path-posix.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/walk-sync@0.2.7", + "author": "Jo Liss", + "name": "walk-sync", + "version": "0.2.7", + "description": "Get an array of recursive directory contents", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6d19cb8703f3819cdda970cea3a21a589449aced7a4ee7f7f2288af8f39e35c5779d6a7e2ba0ef1c4b54364bfcdb6e3187fc16ab60300c792d8c8bd1c4e538a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/walk-sync@0.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/node-walk-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/node-walk-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/node-walk-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ensure-posix-path@1.1.1", + "author": "Stefan Penner", + "name": "ensure-posix-path", + "version": "1.1.1", + "description": "[![Build Status](https://travis-ci.org/stefanpenner/ensure-posix-path.svg)](https://travis-ci.org/stefanpenner/ensure-posix-path) [![Build status](https://ci.appveyor.com/api/projects/status/bt015k54b2ohk1oi?svg=true)](https://ci.appveyor.com/project/embercli/ensure-posix-path)", + "hashes": [ + { + "alg": "SHA-512", + "content": "556534ff35f355b789357bcc13fe4498bb848f64dabafa1a4f3e9a1582b567dd89081943959dc6bb4b6e191e369295b5ef9e32c13b3e401d20e533f4a23f596b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/ensure-posix-path@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/ensure-posix-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/ensure-posix-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/ensure-posix-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/matcher-collection@1.1.2", + "author": "Stefan Penner", + "name": "matcher-collection", + "version": "1.1.2", + "description": "Minimatch but for collections of minimatcher matchers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "610fed7aa68e2087d41de7516a6d3c3c1dcd2bb32372de81bf3467266a460e6f2e157a4daf5b1b638cae7e523925c12ce823a9600d05a5142148305fd6d4fde6" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/matcher-collection@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/matcher-collection#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/matcher-collection/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/matcher-collection.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-merge-trees@0.2.4", + "author": "Jo Liss", + "name": "broccoli-merge-trees", + "version": "0.2.4", + "description": "Broccoli plugin to merge multiple trees into one", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd3cf3cfb9ea5f3ccf7b99d4c8938f58b77b4c1c92d691d940d94cacc82bfcc2a95a0017853ccb3a93b098de1ef111007ccfa84343d86aad0656f7aadb8eaf5f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-merge-trees@0.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-merge-trees#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-merge-trees/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-merge-trees.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader.js@3.6.0", + "name": "loader.js", + "version": "3.6.0", + "description": "loader.js =========", + "hashes": [ + { + "alg": "SHA-512", + "content": "31d9e7cafa2824f1ae031d763c6d953e70b5bd210042e6ea0e747ccf3a16fe25c6d1148500ff53dfb5105a00d5f78e8313cebcb5b621f98de71745721ff24c9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Yehuda Katz, Stefan Penner, and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader.js@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ember-cli/loader.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ember-cli/loader.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ember-cli/loader.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-babel-transpiler@5.7.4", + "author": "nightire", + "name": "broccoli-babel-transpiler", + "version": "5.7.4", + "description": "A Broccoli plugin which transpile ES6 to readable ES5 by using babel.", + "hashes": [ + { + "alg": "SHA-512", + "content": "808d783ea738a9b9a7e515b84ae026c9b2e23a8616e7d0fe1f3432858e9675a18c0238a4281c09374a75ee9872bda7d0fa4bc6d2652231df379601cb7804e710" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Albert Yu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-babel-transpiler@5.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/broccoli-babel-transpiler" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/broccoli-babel-transpiler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/broccoli-babel-transpiler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-funnel@1.2.0", + "author": "Robert Jackson", + "name": "broccoli-funnel", + "version": "1.2.0", + "description": "Broccoli plugin that allows you to filter files selected from an input node down based on regular expressions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ba264363d8cfc50ca6b66d4020c3fb067e960ac65f89c74922bddcf9fc9652113e52afa35f26a830a7d8f4fa681c7cd91eb569da55a2b1f6b2eb2cf5b01e8b8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Robert Jackson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-funnel@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-funnel#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-funnel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-funnel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/exists-sync@0.0.4", + "author": "Jake Bixby", + "name": "exists-sync", + "version": "0.0.4", + "description": "existsSync that also checks for symlinks", + "hashes": [ + { + "alg": "SHA-512", + "content": "732e73ecafb4e511711c0598dfb7520e43d69ae4e2f95ceb03fc4bc0f0c79b040f3273bf91586eea385e19a22d967351a0e13a7f93008f1cb7544ba97eb1e281" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/exists-sync@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ember-cli/exists-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ember-cli/exists-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ember-cli/exists-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-tree-diff@0.5.9", + "author": "Stefan Penner, David J. Hamilton, Chad Hietala", + "name": "fs-tree-diff", + "version": "0.5.9", + "description": "Backs out file tree changes", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3bd86f1ac74907874d66f67ff6283ce0630a2e2b36b401df62165b41a4dca4bd13af7f6006b683b33c9806c75db96a89463c447726e0bbb9916b43b6c6d4067" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/fs-tree-diff@0.5.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/fs-tree-diff#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/fs-tree-diff/issues" + }, + { + "type": "vcs", + "url": "git://github.com/stefanpenner/fs-tree-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/heimdalljs-logger@0.1.10", + "author": "David J. Hamilton", + "name": "heimdalljs-logger", + "version": "0.1.10", + "description": "Structured logging via heimdalljs", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4efbe7096e122e7d523f7e607fbb662dcb72890f44ea34f79c7a115a7b4fdea6cd21919ddbe1973f3decd430ea58b871506c0ec5c476716b7d391219a32e3e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2016 Stefan Penner, Robert Jackson and ember-cli contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/heimdalljs-logger@0.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/heimdalljs/heimdalljs-logger#README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/heimdalljs/heimdalljs-logger/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/heimdalljs/heimdalljs-logger.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/walk-sync@0.3.4", + "author": "Jo Liss", + "name": "walk-sync", + "version": "0.3.4", + "description": "Get an array of recursive directory contents", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6d19cb8703f3819cdda970cea3a21a589449aced7a4ee7f7f2288af8f39e35c5779d6a7e2ba0ef1c4b54364bfcdb6e3187fc16ab60300c792d8c8bd1c4e538a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/walk-sync@0.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/node-walk-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/node-walk-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/node-walk-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-merge-trees@1.2.4", + "author": "Jo Liss", + "name": "broccoli-merge-trees", + "version": "1.2.4", + "description": "Broccoli plugin to merge multiple trees into one", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd3cf3cfb9ea5f3ccf7b99d4c8938f58b77b4c1c92d691d940d94cacc82bfcc2a95a0017853ccb3a93b098de1ef111007ccfa84343d86aad0656f7aadb8eaf5f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-merge-trees@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-merge-trees#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-merge-trees/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-merge-trees.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/can-symlink@1.0.0", + "author": "raytiley", + "name": "can-symlink", + "version": "1.0.0", + "description": "Utility module to determine if fs.symlink commands will succeed. Useful for win32 enviornments where special permission is required for symlinking.", + "hashes": [ + { + "alg": "SHA-512", + "content": "45bb0dac5ca1c24c7eea9b24ff47cafd0f68ace52bf55331a2119df2f4dae1d8dfe1318b7db9418147ea64286b66e5b443e9b3d9e04f14bbacc3d25fba4ce686" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/can-symlink@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/raytiley/can-symlink#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/raytiley/can-symlink/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/raytiley/can-symlink.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tmp@0.0.28", + "author": "KARASZI István", + "name": "tmp", + "version": "0.0.28", + "description": "Temporary file and directory creator", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d10899688ca9d9dda75db533a3748aa846e3c4281bcd5dc198ab33bacd6657f0a7ca1299c66398df820250dc48cabaef03e1b251af4cbe7182459986c89971b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 KARASZI István\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tmp@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/raszi/node-tmp" + }, + { + "type": "issue-tracker", + "url": "http://github.com/raszi/node-tmp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/raszi/node-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-persistent-filter@1.4.6", + "author": "Stefan Penner", + "name": "broccoli-persistent-filter", + "version": "1.4.6", + "description": "broccoli filter but with a persistent cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "d117a32f0a02f7992fe24b5af0a01af8598408908aefc4209bc4910c42bb63253437d0b1e8aa58dd4083cbd5842e5de60972cdf13a2437173bfe1a7794be257f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jo Liss\nCopyright (c) 2015 Caitlin Potter & Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-persistent-filter@1.4.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/broccoli-persistent-filter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/broccoli-persistent-filter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/broccoli-persistent-filter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-promise-queue@1.0.5", + "author": "Stefan Penner", + "name": "async-promise-queue", + "version": "1.0.5", + "description": "wrapper around async.queue to make some common usages simpler", + "hashes": [ + { + "alg": "SHA-512", + "content": "c62d1a435aeb8cf5989aa6f0af5f2bad229b49a5c8788c127752782808157e4abcbad35b759a21b7b19fbdf63ab3015400c27da1b91ce163c99ad1b097e07c77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/async-promise-queue@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/async-promise-queue#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/async-promise-queue/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/async-promise-queue.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async@2.6.4", + "author": "Caolan McMahon", + "name": "async", + "version": "2.6.4", + "description": "Higher-order functions and common patterns for asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d2560a1b938aefeb547d3d4483b58b7b98f541da8971351e51589700b07ebbebf79fd756d4670beeefe44662b61ab957433dc3b9d7dbfaf304615d0b71b15f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2018 Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async@2.6.4", + "externalReferences": [ + { + "type": "website", + "url": "https://caolan.github.io/async/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/caolan/async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/caolan/async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hash-for-dep@1.5.1", + "author": "Stefan Penner", + "name": "hash-for-dep", + "version": "1.5.1", + "description": "generates a hash that represents a module and its depenencies uniqueness", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdd43f036725ec504f236a4ed0200d92fbae562fc8152e684f22743ec39bea35ba59b556d63b39a895cc25335b5875c120f7454d615b69b8c1fa613477e81e97" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/hash-for-dep@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/hash-for-dep#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/hash-for-dep/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/hash-for-dep.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-kitchen-sink-helpers@0.3.1", + "author": "Jo Liss", + "name": "broccoli-kitchen-sink-helpers", + "version": "0.3.1", + "description": "Collection of helpers that need to be extracted into separate packages", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bea04aa2bc3a1f66ffe1f34ae037858991b6646dfc24ac87aef2f167e1b6f89b88cf77720234da658645c6977a6ce37f69cdcdb28d9d6a230cf4cb2f2e1dc42" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-kitchen-sink-helpers@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-kitchen-sink-helpers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-kitchen-sink-helpers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-kitchen-sink-helpers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-root@0.1.1", + "author": "Jon Schlinkert", + "name": "path-root", + "version": "0.1.1", + "description": "Get the root of a posix or windows filepath.", + "hashes": [ + { + "alg": "SHA-512", + "content": "40b70f7a04c7175d5ac637e88c12280f28264b61372dffbcfa323ac0e5663557a7aca4a8de615d48688881d4877a7733c37c0fb6554c41a155c0698cec125db6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-root@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/path-root" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/path-root/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/path-root.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-root-regex@0.1.2", + "author": "Jon Schlinkert", + "name": "path-root-regex", + "version": "0.1.2", + "description": "Regular expression for getting the root of a posix or windows filepath.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e06949eab6438506451340cf54a8747bd8e66797a065fc53929edb7110ee3e52576c0c21c5c97674834f500b232dd7a3a9a2ec09e83c6b170b8c86ef063378a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-root-regex@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexhq/path-root-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexhq/path-root-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexhq/path-root-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-package-path@1.2.7", + "name": "resolve-package-path", + "version": "1.2.7", + "description": "a special purpose fast memoizing way to resolve a node modules package.json", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d510a1c678af396c66d516ec0ef68d5a5349f7bea406adeccf739d491aef544d7a4541f5aae6a09e2b1c9a4544af7a986cfb4e9ce63e6b3eafddcc7184a3cf9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/resolve-package-path@1.2.7" + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone@0.2.0", + "author": "Paul Vorbach", + "name": "clone", + "version": "0.2.0", + "description": "deep cloning of objects and arrays", + "hashes": [ + { + "alg": "SHA-512", + "content": "83ada7dca6fd72ccde66f9af054a8ffddb04243ffef34a4303cbbc2aa1e700fad59d0d897bdad557aa29c6486e5827759029f680e89bcc32b10ad06f0f7ab990" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright © 2011-2014 Paul Vorbach \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the “Software”), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pvorb/node-clone#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pvorb/node-clone/issues" + }, + { + "type": "vcs", + "url": "git://github.com/pvorb/node-clone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-stable-stringify@1.0.1", + "author": "James Halliday", + "name": "json-stable-stringify", + "version": "1.0.1", + "description": "deterministic JSON.stringify() with custom sorting to get deterministic hashes from stringified results", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bf276f7b4d6eb1ca3eec0c56bb02604f910bcb2315abda428f588dbab57c9d9d9af3540a1c36a9f90cc353d4cce4d2f8add55e5491133b0b529d54da7b2e672" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-stable-stringify@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/json-stable-stringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/json-stable-stringify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/json-stable-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonify@0.0.0", + "author": "Douglas Crockford", + "name": "jsonify", + "version": "0.0.0", + "description": "JSON without touching any globals", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6bbc1935922e37559a6d741239ac8946e183b3c9e1ff59e7d0b79ae3d60adab0f9f88a265629eb7c9e481ce0696c03295aced9f4a997d460e893b0048915d34" + } + ], + "licenses": [ + { + "license": { + "name": "Public Domain" + } + } + ], + "purl": "pkg:npm/jsonify@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/jsonify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/jsonify/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/jsonify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/workerpool@2.3.4", + "author": "Jos de Jong", + "name": "workerpool", + "version": "2.3.4", + "description": "Offload tasks to a pool of workers on node.js and in the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "736116ae007d20a1e2d636dfe0b1bdb312a01d8398f848f9962eac8841ad15e7025d61bb7903aa0133c4274ae0d4a1444d744e12412b735b795e236b2c6ebae9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + } + } + } + ], + "purl": "pkg:npm/workerpool@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/josdejong/workerpool" + }, + { + "type": "issue-tracker", + "url": "https://github.com/josdejong/workerpool/issues" + }, + { + "type": "vcs", + "url": "git://github.com/josdejong/workerpool.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-caching-writer@2.3.1", + "author": "Robert Jackson", + "name": "broccoli-caching-writer", + "version": "2.3.1", + "description": "Broccoli plugin that allows simple caching (while still allowing N:N) based on the input tree hash.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95fa03c7df15694f2d1b89945c2c4a74acb0d8bafe8922065230a057cdca0b6cd10b4ed2cd84c6b92b0caa95c588e425386ba82711b7351a329e205ad4158ea8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Robert Jackson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-caching-writer@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ember-cli/broccoli-caching-writer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ember-cli/broccoli-caching-writer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ember-cli/broccoli-caching-writer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-kitchen-sink-helpers@0.2.9", + "author": "Jo Liss", + "name": "broccoli-kitchen-sink-helpers", + "version": "0.2.9", + "description": "Collection of helpers that need to be extracted into separate packages", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bea04aa2bc3a1f66ffe1f34ae037858991b6646dfc24ac87aef2f167e1b6f89b88cf77720234da658645c6977a6ce37f69cdcdb28d9d6a230cf4cb2f2e1dc42" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-kitchen-sink-helpers@0.2.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-kitchen-sink-helpers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-kitchen-sink-helpers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-kitchen-sink-helpers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-plugin@1.1.0", + "author": "Jo Liss", + "name": "broccoli-plugin", + "version": "1.1.0", + "description": "Base class for all Broccoli plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d6f170126649a8ae9faaec9e04783119cfe2e8c8a2c07765d950b5f20fd9789bdfe100a577be31e607592252c85c58060c8133f59b68b8367a8213fdb787a01" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-plugin@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-concat@0.0.13", + "author": "Richard Livsey", + "name": "broccoli-concat", + "version": "0.0.13", + "description": "Concatenate broccoli trees", + "hashes": [ + { + "alg": "SHA-512", + "content": "caa56fcd0556d768d1afed89efc2e1aeed4ec0cd2f51026c8a5f4248616b3ba26d57525e17ca455b7e123ab0552e4c2b0449ce696a45c4d69abacb5497b3d898" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Richard Livsey\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-concat@0.0.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rlivsey/broccoli-concat#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rlivsey/broccoli-concat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rlivsey/broccoli-concat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-writer@0.1.1", + "author": "Jo Liss", + "name": "broccoli-writer", + "version": "0.1.1", + "description": "Helper base class for Broccoli plugins that write output files", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d40375464cc74d9e32253d9503d9bbdeb2eb23595fa1999b05e8b83c166a21dac7f7280e993dad5e562362f5df53e29625dc25aafd41f05b26853df27f1904a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-writer@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/broccoli-writer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/broccoli-writer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/broccoli-writer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@4.5.3", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "4.5.3", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@4.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-string-escape@1.0.1", + "author": "Jo Liss", + "name": "js-string-escape", + "version": "1.0.1", + "description": "Escape strings for use as JavaScript string literals", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a6c38c5c7c84392d58c03ae242bcdff322877303f0414ac96eba84b290ffa552f49c222e14e9124b7f01deb797311670acc148c8495f280176aa6890d8ddc86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-string-escape@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/js-string-escape#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/js-string-escape/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/js-string-escape.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-filter@1.3.0", + "name": "broccoli-filter", + "version": "1.3.0", + "description": "Helper base class for Broccoli plugins that map input files into output files one-to-one", + "hashes": [ + { + "alg": "SHA-512", + "content": "557257c3b7817c6f36085c5a0438d89b237b57bd83e089f6cf02d540977f8779817c5dc231d453b2fd8bdb4966453b42bf5b001dc07e2e032ca3dd1efca6222f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jo Liss\nCopyright (c) 2015 Caitlin Potter & Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-filter@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-filter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-filter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-filter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/copy-dereference@1.0.0", + "author": "Jo Liss", + "name": "copy-dereference", + "version": "1.0.0", + "description": "Copy files and directories, dereferencing symlinks and preserving last-modified times", + "hashes": [ + { + "alg": "SHA-512", + "content": "e344d22ee8616e229eb336612bd2df35d6b30baed47b892afe01b0379b1dc445163d74c83262a61a6803f663df34a54079e7045be35f108a41699a0008240b2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/copy-dereference@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/node-copy-dereference#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/node-copy-dereference/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/node-copy-dereference.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-jshint@0.5.8", + "author": "Robert Jackson", + "name": "broccoli-jshint", + "version": "0.5.8", + "description": "Broccoli plugin to run JSHint", + "hashes": [ + { + "alg": "SHA-512", + "content": "e022d7cd8bb331ea61a080f6f6c5abcc8efd2d6e6f994bb58e30337ec8ba005a98a1c7125ae51042c1cc4fef678867d7ebe994627a64f12ab12cc246915fcfa6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Robert Jackson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-jshint@0.5.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rwjblue/broccoli-jshint#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rwjblue/broccoli-jshint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rwjblue/broccoli-jshint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chalk@0.4.0", + "author": "Sindre Sorhus", + "name": "chalk", + "version": "0.4.0", + "description": "Terminal string styling done right. Created because the `colors` module does some really horrible things.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chalk@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/chalk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/chalk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/chalk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@1.0.0", + "author": "Sindre Sorhus", + "name": "ansi-styles", + "version": "1.0.0", + "description": "ANSI escape codes for colorizing strings in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "553d1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ansi-styles@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ansi-styles" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ansi-styles/issues" + }, + { + "type": "vcs", + "url": "git://github.com/sindresorhus/ansi-styles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-color@0.1.7", + "author": "Sindre Sorhus", + "name": "has-color", + "version": "0.1.7", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "91a373e4e4c06189adeb8e8792ac39d3fab2c4fdaf1674d5bb9010d599a4db62a4e7ee10c7a0693bcfaeec82ac30be5f3ac164d194f401c089358c1cbda2c1bf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/has-color@0.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@0.1.1", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "0.1.1", + "description": "Strip ANSI escape codes (used for colorizing strings in the terminal)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/strip-ansi@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/findup-sync@0.1.3", + "author": "\"Cowboy\" Ben Alman", + "name": "findup-sync", + "version": "0.1.3", + "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "baff1ad1ecec8c04fdf7391226c26dc75b1cc9e7ba8d2da20b84f9d27e8c700b9da590f9ac7b06b1dbe03be91def7852877bff6625bff1d0df2dbda9f72c69b7" + } + ], + "purl": "pkg:npm/findup-sync@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cowboy/node-findup-sync" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cowboy/node-findup-sync/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cowboy/node-findup-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@3.2.11", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "3.2.11", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "content": "Copyright (c) Isaac Z. Schlueter (\"Author\")\nAll rights reserved.\n\nThe BSD License\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@3.2.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimatch@0.3.0", + "author": "Isaac Z. Schlueter", + "name": "minimatch", + "version": "0.3.0", + "description": "a glob matcher in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2009, 2010, 2011 Isaac Z. Schlueter.\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimatch@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minimatch/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/minimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lru-cache@2.7.3", + "author": "Isaac Z. Schlueter", + "name": "lru-cache", + "version": "2.7.3", + "description": "A cache object that deletes the least-recently-used items.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b166656c43f63ac1cd917acc97919893f8ca93bd0c06783a514e1823fa860d86e07fa61b3f812f9aa2126d70a826244ab3ed5b4a9147560431bc9d7b176962e6" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lru-cache@2.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-lru-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-lru-cache/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-lru-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sigmund@1.0.1", + "author": "Isaac Z. Schlueter", + "name": "sigmund", + "version": "1.0.1", + "description": "Quick and dirty signatures for Objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c2bc45df87a356a66f984ae6366e95dbfd522286a580ea12ec81ba02fb49e5ef543b37ba3679a096f2625afcd2ef421b3a8e9777559578522510955ebe95cf2" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sigmund@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/sigmund#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/sigmund/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/sigmund.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash@2.4.2", + "author": "John-David Dalton", + "name": "lodash", + "version": "2.4.2", + "description": "A utility library delivering consistency, customization, performance, & extras.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2013 The Dojo Foundation \nBased on Underscore.js 1.5.2, copyright 2009-2013 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/lodash@2.4.2", + "externalReferences": [ + { + "type": "website", + "url": "http://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jshint@2.13.5", + "author": "Anton Kovalyov", + "name": "jshint", + "version": "2.13.5", + "description": "Static analysis tool for JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "741da7d70dce690df93cb70118859796cce36cf670b20668c6c83a1bc3ed35fd9c14c0b59747ce6e460b52e5ea4d3762ead2b0e2c0237d4b1e4dd98330741172" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Anton Kovalyov (http://jshint.com)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jshint@2.13.5", + "externalReferences": [ + { + "type": "website", + "url": "http://jshint.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshint/jshint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshint/jshint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli@1.0.1", + "author": "Chris O'Hara", + "name": "cli", + "version": "1.0.1", + "description": "A tool for rapidly building command line apps", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3553bd8c079e937d43069dd00a2bcbc9efc7a8a0e0f867934e2f8c447e3734736decfba118297957b260020557252cfd7239f58280481a9d5cdd755ad23684e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cli@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/node-js-libs/cli" + }, + { + "type": "issue-tracker", + "url": "http://github.com/node-js-libs/cli/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/node-js-libs/cli.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/exit@0.1.2", + "author": "\"Cowboy\" Ben Alman", + "name": "exit", + "version": "0.1.2", + "description": "A replacement for process.exit that ensures stdio are fully drained before exiting.", + "hashes": [ + { + "alg": "SHA-512", + "content": "664fde34a576cdb8e92b3aec43e9f51baa6855b12b4312742c13895da299d445622f31fe86b2eef5c757238cf0f5d05026c970044a5b4363f5a12ee70f1b3a8d" + } + ], + "purl": "pkg:npm/exit@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cowboy/node-exit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cowboy/node-exit/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cowboy/node-exit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/console-browserify@1.1.0", + "author": "Raynos", + "name": "console-browserify", + "version": "1.1.0", + "description": "Emulate console for all the browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "64c9183bf2e4175ed0bc23ea334831c3cc94ce28003993925921e0f75147ea8ad2eef7048f975565389d3767d0d78c8149d83ded1aa148dc0b517227779d8e4c" + } + ], + "purl": "pkg:npm/console-browserify@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/console-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/console-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/console-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/date-now@0.1.4", + "author": "Raynos", + "name": "date-now", + "version": "0.1.4", + "description": "A requirable version of Date.now()", + "hashes": [ + { + "alg": "SHA-512", + "content": "02c125be8bf72e8341eed7f9937ec7da361207e6593cc4f9b06d908c909c76557972122fea1b4150152e8b620a46382d2802ad08137b65bc1af8cb702e349e37" + } + ], + "purl": "pkg:npm/date-now@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Colingo/date-now" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Colingo/date-now/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Colingo/date-now.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@3.8.3", + "author": "Felix Boehm", + "name": "htmlparser2", + "version": "3.8.3", + "description": "Fast & forgiving HTML/XML/RSS parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "22089e3628d431b903a2fca828e6d4d435219b58b035813f7ee89f1281077ddd6864a64368e3414a46a5ed8d35b21c6c338f51e1768c7467b3dd69c5f547e209" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, Chris Winberry . All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/htmlparser2@3.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/htmlparser2#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/fb55/htmlparser2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/htmlparser2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domelementtype@1.3.1", + "author": "Felix Boehm", + "name": "domelementtype", + "version": "1.3.1", + "description": "all the types of nodes in htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "052281f934a9329148fc73b108daf53bc68c39367c853de9337190d30fe65919a48440d2149924cb3cf85d0b01578e010a1c0692b0df3328d50f4780d9a155df" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domelementtype@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/domelementtype#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/domelementtype/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/domelementtype.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domhandler@2.3.0", + "author": "Felix Boehm", + "name": "domhandler", + "version": "2.3.0", + "description": "handler for htmlparser2 that turns pages into a dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2622b4e21d07b79bbff347dd2cc084995e3390d87605ca0c141999ffdd56b5867ca955d22a38b0edf5cc8053e71dc49980ea375dd8a71ef9a70d478c7f9478c0" + } + ], + "purl": "pkg:npm/domhandler@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/DomHandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/DomHandler/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/DomHandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domutils@1.5.1", + "author": "Felix Boehm", + "name": "domutils", + "version": "1.5.1", + "description": "utilities for working with htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e07765dc27f363130fbbb45bdf2b13b3098299b1d72de6573343665a418f038f3ee97c00f719ba7cc92256b6b78823fbc394c566c706baa4799dc48620b6d0e" + } + ], + "purl": "pkg:npm/domutils@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FB55/domutils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FB55/domutils/issues" + }, + { + "type": "vcs", + "url": "git://github.com/FB55/domutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@0.1.1", + "author": "Felix Boehm", + "name": "dom-serializer", + "version": "0.1.1", + "description": "render dom nodes to string", + "hashes": [ + { + "alg": "SHA-512", + "content": "974214d293f32d648705c89e65ba4e2a09089f7b6cdef021ed9b85c9737027125793f7381b08fdc5a4c9c080d54025dac160f4a9bdc8ccc187e6b82541a3b45c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License\n\n(The MIT License)\n\nCopyright (c) 2014 The cheeriojs contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-serializer@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cheeriojs/dom-renderer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cheeriojs/dom-renderer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cheeriojs/dom-renderer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/entities@1.1.2", + "author": "Felix Boehm", + "name": "entities", + "version": "1.1.2", + "description": "Encode & decode XML/HTML entities with ease", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f62d9318975173bbb61204a83e46844e7a5a4e68dadc1a613d019b9b7837eb08489ae3cde85b8308e15c8577954d1c8810ffbaa6d48d305072b57899e7db2db" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/entities@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/entities#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/entities/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/entities.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/entities@1.0.0", + "author": "Felix Boehm", + "name": "entities", + "version": "1.0.0", + "description": "Encode & decode XML/HTML entities with ease", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f62d9318975173bbb61204a83e46844e7a5a4e68dadc1a613d019b9b7837eb08489ae3cde85b8308e15c8577954d1c8810ffbaa6d48d305072b57899e7db2db" + } + ], + "licenses": [ + { + "license": { + "name": "BSD-like", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/entities@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/node-entities#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/node-entities/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/node-entities.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@1.1.14", + "author": "Isaac Z. Schlueter", + "name": "readable-stream", + "version": "1.1.14", + "description": "Streams3, a user-land copy of the stream library from Node.js v0.11.x", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@1.1.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string_decoder@0.10.31", + "name": "string_decoder", + "version": "0.10.31", + "description": "The string_decoder module from Node core", + "hashes": [ + { + "alg": "SHA-512", + "content": "864457f14d568c915df0bb03276c90ff0596c5aa2912c0015355df90cf00fa3d3ef392401a9a6dd7a72bd56860e8a21b6f8a2453a32a97a04e8febaea7fc0a78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/string_decoder@0.10.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/string_decoder" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/string_decoder/issues" + }, + { + "type": "vcs", + "url": "git://github.com/rvagg/string_decoder.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.0.8", + "author": "Isaac Z. Schlueter", + "name": "minimatch", + "version": "3.0.8", + "description": "a glob matcher in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimatch@3.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minimatch/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/minimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-json-comments@1.0.4", + "author": "Sindre Sorhus", + "name": "strip-json-comments", + "version": "1.0.4", + "description": "Strip comments from JSON. Lets you use comments in your JSON files!", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2007c9dad3b7de715564388e91b387bb4fa34e4e48b91262fb4d476e4ece9bbb711d9d2c9c9ed549e2b7bc920640fb0c7d22e788d98d756df6e0c2dcee13429" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-json-comments@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-json-comments#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-json-comments/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-json-comments.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mkdirp@0.4.2", + "author": "James Halliday", + "name": "mkdirp", + "version": "0.4.2", + "description": "Recursively mkdir, like `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mkdirp@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-mkdirp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-mkdirp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/substack/node-mkdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist@0.0.8", + "author": "James Halliday", + "name": "minimist", + "version": "0.0.8", + "description": "parse argument options", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c8e79386f0dd826a6336ddc8188db0f5873df3bef94186ef8f42c6cea9782bb95e0e27ade9dae8e571398c6b413ab0c34266c2df9179ff2b820ba69132f3f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist@0.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/minimist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/minimist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/minimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-replace@0.3.3", + "author": "outaTiME", + "name": "broccoli-replace", + "version": "0.3.3", + "description": "Replace text patterns with applause.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fb67eeccaa18868a5503f889423eb23a7af105ef7071caf5100e6fc66225f9e3b73bfc77dc5c13e0c5c24435c7621e5a330109b9796d098bf58db75207b8de6" + } + ], + "purl": "pkg:npm/broccoli-replace@0.3.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/outaTiME/broccoli-replace" + }, + { + "type": "issue-tracker", + "url": "http://github.com/outaTiME/broccoli-replace/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/outaTiME/broccoli-replace.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-filter@0.2.0", + "author": "Jo Liss", + "name": "broccoli-filter", + "version": "0.2.0", + "description": "Helper base class for Broccoli plugins that map input files into output files one-to-one", + "hashes": [ + { + "alg": "SHA-512", + "content": "557257c3b7817c6f36085c5a0438d89b237b57bd83e089f6cf02d540977f8779817c5dc231d453b2fd8bdb4966453b42bf5b001dc07e2e032ca3dd1efca6222f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-filter@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broccolijs/broccoli-filter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broccolijs/broccoli-filter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broccolijs/broccoli-filter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mkdirp@0.3.5", + "author": "James Halliday", + "name": "mkdirp", + "version": "0.3.5", + "description": "Recursively mkdir, like `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mkdirp@0.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-mkdirp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-mkdirp/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-mkdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/walk-sync@0.1.3", + "author": "Jo Liss", + "name": "walk-sync", + "version": "0.1.3", + "description": "Get an array of recursive directory contents", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6d19cb8703f3819cdda970cea3a21a589449aced7a4ee7f7f2288af8f39e35c5779d6a7e2ba0ef1c4b54364bfcdb6e3187fc16ab60300c792d8c8bd1c4e538a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jo Liss\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/walk-sync@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joliss/node-walk-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joliss/node-walk-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joliss/node-walk-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-slow-trees@1.1.0", + "author": "Robert Jackson", + "name": "broccoli-slow-trees", + "version": "1.1.0", + "description": "Print out of slowest trees for Broccoli.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a30c070f93cf01655946151196f66b75851fedd5e7d252e64dfee34347bc4af0f5e6be3daef313a51d7b1c8bce8330a0a8777a107af05da8484918432ef7f00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/broccoli-slow-trees@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rwjblue/broccoli-slow-trees" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rwjblue/broccoli-slow-trees/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rwjblue/broccoli-slow-trees.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-sourcemap-concat@2.0.2", + "author": "Edward Faulkner", + "name": "broccoli-sourcemap-concat", + "version": "2.0.2", + "description": "Fast, good-enough concatenation with source maps.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c8538544a70560f0885d75bf387d6e8c892f386232950319928bb4cad27450d18cd7e6f642cf82e898fe4bc5eb421a114129167d0d8fd27fd67890327647a01" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Edward Faulkner \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/broccoli-sourcemap-concat@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ef4/broccoli-sourcemap-concat#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ef4/broccoli-sourcemap-concat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ef4/broccoli-sourcemap-concat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-sourcemap-concat@0.2.7", + "author": "Edward Faulkner", + "name": "fast-sourcemap-concat", + "version": "0.2.7", + "description": "Concatenate files while generating or propagating sourcemaps.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4feebc1d35b11ef4f2602ec5a27d7c4432e48f878ba58973710fbd6e08ffa6bf194573fc631c2858e8acb026c78ba67202600b0c56fe6cbcb4e5db2650517475" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/fast-sourcemap-concat@0.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ef4/fast-sourcemap-concat#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ef4/fast-sourcemap-concat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ef4/fast-sourcemap-concat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chalk@0.5.1", + "name": "chalk", + "version": "0.5.1", + "description": "Terminal string styling done right. Created because the `colors` module does some really horrible things.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chalk@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/chalk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/chalk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/chalk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-ansi@0.1.0", + "author": "Sindre Sorhus", + "name": "has-ansi", + "version": "0.1.0", + "description": "Check if a string has ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bcbc127c0f0502c75f6f866eeeae14ee52caf8fc8c8fea5e15ccd403bfeaf21d039b5b74d34e9f7207af16a588117b66db686b99fec7bbe08a857959cc9cb66" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/has-ansi@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@0.3.0", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "0.3.0", + "description": "Strip ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/strip-ansi@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@0.2.0", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "0.2.0", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/supports-color@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.4.4", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.4.4", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "purl": "pkg:npm/source-map@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-url@0.3.0", + "author": "Simon Lydell", + "name": "source-map-url", + "version": "0.3.0", + "description": "Tools for working with sourceMappingURL comments.", + "hashes": [ + { + "alg": "SHA-512", + "content": "414e1f6b40fa6923a6ad3fbb387a545f0fa34bce13d0c2da40db45b3cc732cd7ba02b8f8e0c6a077b5846f2556e4b358a003d5577e5a2ace1acf121f549ad3a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/source-map-url@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/source-map-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/source-map-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/source-map-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash-node@2.4.1", + "author": "John-David Dalton", + "name": "lodash-node", + "version": "2.4.1", + "description": "A collection of Lo-Dash methods as Node.js modules generated by lodash-cli.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a012df1e350a769195919a781a862a8ca0308308436fdee335f3c4bb11de6de24defe91acb10b5c2f85a8b34c527842a3b82f417dc6d55f28a4afcb72c95a86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2013 The Dojo Foundation \nBased on Underscore.js 1.5.2, copyright 2009-2013 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/lodash-node@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "http://lodash.com/custom-builds" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash-cli/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.uniq@3.2.2", + "author": "John-David Dalton", + "name": "lodash.uniq", + "version": "3.2.2", + "description": "The modern build of lodash’s `_.uniq` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7737fd7e38de9a4c68ad0b74dfa98a258868930f2f0df684d4a44ef930743ca37d7acc581d287f5bf5cc6b5058df1a723cabb05b271113d4586ea1ef4baf3780" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.uniq@3.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._basecallback@3.3.1", + "author": "John-David Dalton", + "name": "lodash._basecallback", + "version": "3.3.1", + "description": "The modern build of lodash’s internal `baseCallback` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d07df821b8eeb7b9f0d8df728a3b57b318a6dc1592b79e0615ec9a71694a26a0ce5a71fd187975373e6f1cb15134822ad5b39d135f37cd89b97af42a3782024" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._basecallback@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._baseisequal@3.0.7", + "author": "John-David Dalton", + "name": "lodash._baseisequal", + "version": "3.0.7", + "description": "The modern build of lodash’s internal `baseIsEqual` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "53edc6b0d1198fd79b234de770b0b6a4b99856382d61913076400f3bb50682d1af033dfa25514f01052e7e949a54bf770b3e5aadce8919129946168e87254960" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._baseisequal@3.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.isarray@3.0.4", + "author": "John-David Dalton", + "name": "lodash.isarray", + "version": "3.0.4", + "description": "The modern build of lodash’s `_.isArray` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "27039b0ab349b93d0d9dbb9e726aabe4382db81a69b82bc60fd9718c5a40cf09d5b5d1a80d0d738a0fb95bc939ffa19c9f4819dfddfa1c302519ddbc8bbb0e19" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.isarray@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.istypedarray@3.0.6", + "author": "John-David Dalton", + "name": "lodash.istypedarray", + "version": "3.0.6", + "description": "The lodash method `_.isTypedArray` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "946589e8df00037292bfe659c654dd9f87fa03b90c7e925ba1ecaf6c5744ec853d60083078e0ea98e81d507380f9cea55567952f2b1d6b17221578be7e856c5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.istypedarray@3.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.keys@3.1.2", + "author": "John-David Dalton", + "name": "lodash.keys", + "version": "3.1.2", + "description": "The modern build of lodash’s `_.keys` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ae06c6a916372e6ce18c9f7543fb6e073803f133bf6d1fe57a8af24bdc21d88edadac1ab83247524fff61ec3d1ef73a7bdadb0ab5111a4f33e8f0bef162417d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.keys@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._getnative@3.9.1", + "author": "John-David Dalton", + "name": "lodash._getnative", + "version": "3.9.1", + "description": "The modern build of lodash’s internal `getNative` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "46b2fd5713043f20cc1ce77db856ef31ef17e795f5ebf70633922038a811125419bada57f3d892eafc25eb876e4d5d7fd7ac39258eedb85357aa87a49a1d4498" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._getnative@3.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.isarguments@3.1.0", + "author": "John-David Dalton", + "name": "lodash.isarguments", + "version": "3.1.0", + "description": "The lodash method `_.isArguments` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7218b834766566a643d7c6b48a60c79d93eb0de05b4ed54dec65ccc2e19d447f6aa2dc408d8b376952ca73bccd386f5e75d4792ac77caef14405cf52b2080fa6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.isarguments@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._bindcallback@3.0.1", + "author": "John-David Dalton", + "name": "lodash._bindcallback", + "version": "3.0.1", + "description": "The modern build of lodash’s internal `bindCallback` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db0948d09440197f1611fe069b5a7f9affd267e8cb8a3a63d23c9a13f0177ae4298730a00fc6505b8a12a6837c240a29ba3385194dca32eabba9f1c15a51a98d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._bindcallback@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.pairs@3.0.1", + "author": "John-David Dalton", + "name": "lodash.pairs", + "version": "3.0.1", + "description": "The modern build of lodash’s `_.pairs` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9605efa54e3764d42b67fa4ad9c47ded8cca7809e8ddedc785ccaf2cab287e58de1caad0719853d6f5bb7e0e17eb573ddad33e9a30ff0f2a682d962e00a34891" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.pairs@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._baseuniq@3.0.3", + "author": "John-David Dalton", + "name": "lodash._baseuniq", + "version": "3.0.3", + "description": "The modern build of lodash’s internal `baseUniq` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3489f89ec295d3bc4e60278f9d9dc93edf2b388b1dfe721dcdd3fd59bee8c87dbc08bb44a734894913856c392d9b56301cc66d4913c2cbb24a6740180e4746d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._baseuniq@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._baseindexof@3.1.0", + "author": "John-David Dalton", + "name": "lodash._baseindexof", + "version": "3.1.0", + "description": "The modern build of lodash’s internal `baseIndexOf` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d2628f0f73f7f4a8092bf1f3c9c9da498edac7892ca761f6018ed00d2205efe7111fd569530baddd203960bb4b3d7664efcd1bb5f89253c5c2001defac1f415" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._baseindexof@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._cacheindexof@3.0.2", + "author": "John-David Dalton", + "name": "lodash._cacheindexof", + "version": "3.0.2", + "description": "The modern build of lodash’s internal `cacheIndexOf` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bc7548d6afb4944ff5fa4c1210fce628087a354adbb5651cbab8c5122aacc59d9a791b9472422cd29ba92fc43d84c32cba0157cc838013a1e67329f17df53e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._cacheindexof@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._createcache@3.1.2", + "author": "John-David Dalton", + "name": "lodash._createcache", + "version": "3.1.2", + "description": "The modern build of lodash’s internal `createCache` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7afe523fe885a593ae83269bfc311443151e64fe6ac9c8954e5810d5fe15970ed551c083f1f567c88a9550421aa051fdce302a7608baf4a8a87f3bd599d6bf65" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._createcache@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._isiterateecall@3.0.9", + "author": "John-David Dalton", + "name": "lodash._isiterateecall", + "version": "3.0.9", + "description": "The modern build of lodash’s internal `isIterateeCall` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0def996eb32ee9e4e116d8bf092ce146f4ca320413a0bc5b8a3e7c2cc7ccf099d80cd48e8e48d308869af22c6094e7868769f23e56a46ede5b25627b82fa5895" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._isiterateecall@3.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/broccoli-stew@0.3.6", + "author": "Stefan Penner & Robert Jackson", + "name": "broccoli-stew", + "version": "0.3.6", + "description": "foundation of any healthy brocfile", + "hashes": [ + { + "alg": "SHA-512", + "content": "f951ddc8a5e452195361ff70cf908d38ffc798dd5e1dd3a4e5d88a30d835d089837073bdd2cc8f5065b4c31c9791ddcc1a3ff1cb4e07476a47aae09bd6646cf2" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/broccoli-stew@0.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/broccoli-stew" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/broccoli-stew/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/broccoli-stew.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-extra@0.13.0", + "author": "JP Richardson", + "name": "fs-extra", + "version": "0.13.0", + "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", + "hashes": [ + { + "alg": "SHA-512", + "content": "26210f033cb4859d04376e699179209b3c67fd386a4db0eb4ea1a710ef5e14c477de67c6ef60366058d0db7fb34ec9c3b5c39eb01294b515d64e1e95e1b41456" + } + ], + "purl": "pkg:npm/fs-extra@0.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-fs-extra" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-fs-extra/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jprichardson/node-fs-extra.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonfile@2.4.0", + "author": "JP Richardson", + "name": "jsonfile", + "version": "2.4.0", + "description": "Easily read/write JSON files.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ca96502a6e02e0c476a3f1312563298a08082b01279b26b5a94e712439a4e8c2ddb754a5d7374b147ab889f9e87bcbab9f6ff082e5aa75d69cfbd7f70cd2153" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2015, JP Richardson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonfile@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-jsonfile#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-jsonfile/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jprichardson/node-jsonfile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ncp@1.0.1", + "author": "AvianFlu", + "name": "ncp", + "version": "1.0.1", + "description": "Asynchronous recursive file copy utility.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a4057ec8e57f4a4030d69986204252db55b8e4bde4e37b69a2a198e12cbad5b74f5a91265ca2a5d61392c49f51367eef13eed8753d96067dec10b139132d399" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# MIT License\n\n###Copyright (C) 2011 by Charlie McConnell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ncp@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AvianFlu/ncp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AvianFlu/ncp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AvianFlu/ncp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-shims@1.0.0", + "name": "buffer-shims", + "version": "1.0.0", + "description": "some shims for node buffers", + "hashes": [ + { + "alg": "SHA-512", + "content": "672f195cccb1213e91313798ece3ff6c39dd7e3e9bc026a7ed24bdf02127752e9d787c163e9b1e7879706ab35c0629be7ad5e717d1c17359e89f92600da254d6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# Copyright (c) 2016 Calvin Metcalf\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\n**THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.**\n" + } + } + } + ], + "purl": "pkg:npm/buffer-shims@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/buffer-shims#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/buffer-shims/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/calvinmetcalf/buffer-shims.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase-keys@2.1.0", + "author": "Sindre Sorhus", + "name": "camelcase-keys", + "version": "2.1.0", + "description": "Convert object keys to camelCase", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c0fd9fc31111caaa810eae9faa7862b0d5096f1109066527345da63a5674f166bf8abf51b9cc5c2db698eff2ac59fec04f4f89ed87065a01cb0065326548a5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase-keys@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase@2.1.1", + "author": "Sindre Sorhus", + "name": "camelcase", + "version": "2.1.1", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "hashes": [ + { + "alg": "SHA-512", + "content": "17102fec7a47ad76e1dda3e8e28daac476b2da590b637c79330dca784e0a404f32b157f3896791643c1c8dabafc01486102fe75d43f3672f337a1e07a24a8e9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-obj@1.0.1", + "author": "Sindre Sorhus", + "name": "map-obj", + "version": "1.0.1", + "description": "Map object keys and values into a new object", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecdfeade5c99f8b542a7b3f3bb1ac9af828c6c1136856ec14fb60d89adf7d0e17121fe1ddebe7356989c3f6eb9d25ec23cde9133dcce251977346a6a4a2c3712" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-obj@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/map-obj#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/map-obj/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/map-obj.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/charm@1.0.2", + "author": "James Halliday", + "name": "charm", + "version": "1.0.2", + "description": "ansi control sequences for terminal cursor hopping and colors", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2a5b755d3e7952593e1e462617fa172cf82e958813d45a4d6a4c277edfbab0f64126fdae67daa7324033015af49828dfdcb6a67379735069e06339eb4925493" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/charm@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-charm#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-charm/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-charm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/compare-func@1.3.4", + "author": "Steve Mao", + "name": "compare-func", + "version": "1.3.4", + "description": "Get a compare function for array to sort", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2adac5adaea28f9045c00bcb44240d7e06a007f466c590606d50eaab517e7b5527f0a7cc7292d72d93eb8ba11cb979c713771cc3715233b65603a4ab3726fd5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Steve Mao\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/compare-func@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/compare-func" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/compare-func/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/compare-func.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dot-prop@3.0.0", + "author": "Sindre Sorhus", + "name": "dot-prop", + "version": "3.0.0", + "description": "Get, set, or delete a property from a nested object using a dot path", + "hashes": [ + { + "alg": "SHA-512", + "content": "93810b59e114dee09cc2e6fbf9d5b276a401463023915f4bdf71e35511b95e8d90c9b23a8dafeffb85bbdd2462f2e6c2a89cf497d5ec4cfd4d6dec1fcaa69297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dot-prop@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/dot-prop#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/dot-prop/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/dot-prop.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-obj@1.0.1", + "author": "Sindre Sorhus", + "name": "is-obj", + "version": "1.0.1", + "description": "Check if a value is an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "9784721e046a18de18dfef491d5acda8efad374ad5e4ccbbeae5b9fe7b8ee0ad5beafc391bc77f7261633fdb517c4b1d85936dd0815d66e2bf73656be0d6fe42" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-obj@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-obj#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-obj/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-obj.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-bind@1.0.0", + "name": "component-bind", + "version": "1.0.0", + "description": "function binding utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "599bdeb8a3de2801bda98f859180de003cdd1f24d87486e85d2e7d8b10de4492f9661c69a949f148ec28a781508ccb22626dff3abf1c7a055ba401cd03ba47c7" + } + ], + "purl": "pkg:npm/component-bind@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/bind#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/bind/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/bind.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-inherit@0.0.3", + "name": "component-inherit", + "version": "0.0.3", + "description": "Prototype inheritance utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3e2e16111216ada55a93112c86160dcd94fe88bb49042941c44d8f46a193ffa50c96e261c566e156454088a953d9dfab9e54bb6838465a02a6c21764439dd68" + } + ], + "purl": "pkg:npm/component-inherit@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/inherit#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/inherit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/inherit.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/connect@3.7.0", + "author": "TJ Holowaychuk", + "name": "connect", + "version": "3.7.0", + "description": "High performance middleware framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "66a45773eb59ba44e848d9a1e42da258c4a85775f561470f6ea10ce039041b9b4d417ad051908d5461afdc8ba272790cb4f7c67f75eda7c5825ecdbde62435a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2010 Sencha Inc.\nCopyright (c) 2011 LearnBoost\nCopyright (c) 2011-2014 TJ Holowaychuk\nCopyright (c) 2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/connect@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/senchalabs/connect#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/senchalabs/connect/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/senchalabs/connect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/finalhandler@1.1.2", + "author": "Douglas Christopher Wilson", + "name": "finalhandler", + "version": "1.1.2", + "description": "Node.js final http responder", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d8ba1d54cc61823a846fadb1980aaea67a6bf1e35af1302afed174fd36d8885aa186ee16c205c3cc0514288b9b0c643cd33b1c22bafeff8303edac33b3efa09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/finalhandler@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/finalhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/finalhandler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/finalhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/encodeurl@1.0.2", + "name": "encodeurl", + "version": "1.0.2", + "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cf257abc26a15a5589b609698fbe73f6232a3865233bfd029c4a6b8c2c339b7e91f97e2ed150699dfeb4c37feaeeb7fb1a88389011e5533600262447403b1d3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/encodeurl@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/encodeurl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/encodeurl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/encodeurl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escape-html@1.0.3", + "name": "escape-html", + "version": "1.0.3", + "description": "Escape string for use in HTML", + "hashes": [ + { + "alg": "SHA-512", + "content": "3624aea59e0e7ae1b0afaf251887b29bf92c219309a1d506392099fc54a74f172b7a46efaab81d53194938ca628da299563009ad6ac6b3fe89cbc38cbb28fda3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2013 TJ Holowaychuk\nCopyright (c) 2015 Andreas Lubbe\nCopyright (c) 2015 Tiancheng \"Timothy\" Gu\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/escape-html@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/escape-html#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/escape-html/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/escape-html.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/on-finished@2.3.0", + "name": "on-finished", + "version": "2.3.0", + "description": "Execute a callback when a request closes, finishes, or errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "a15973920dc4340842936cddbfb209c1dfd0503e33d91c51c2991c198f29b0255c09864dab8c189d55802c733e6ebb6e26378f5a2605fc2966b83afc0a1e7e92" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 Jonathan Ong \nCopyright (c) 2014 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/on-finished@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/on-finished#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/on-finished/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/on-finished.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ee-first@1.1.1", + "author": "Jonathan Ong", + "name": "ee-first", + "version": "1.1.1", + "description": "return the first event in a set of ee/event pairs", + "hashes": [ + { + "alg": "SHA-512", + "content": "58cc26f4b851528f9651a44dfaf46e113a86f3d22066985548d91d16079beac4bf1383ab0c837bb78f0201ec121d773a0bc95e7c3f0a29faf9bd8eb56eb425a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ee-first@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathanong/ee-first#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathanong/ee-first/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathanong/ee-first.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parseurl@1.3.3", + "name": "parseurl", + "version": "1.3.3", + "description": "parse a url with memoization", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a2c9e3b1153fc96723799b4cfd3df5f0e1208127a4b2833d43a65d30aa39610c418604fd469ec51510bd29eb78681b57dc8f77c7ca75e2f4d60ee2758e2fea9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\n(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2017 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parseurl@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/parseurl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/parseurl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/parseurl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/statuses@1.5.0", + "name": "statuses", + "version": "1.5.0", + "description": "HTTP status utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a9677ccffa34f53c8ec8f277a6257e002a6017d3bd199183d5595fc068a4c997eb570931b255d0b56b848bf11510604c24fdfdf8657f144f290debc170aea00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/statuses@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/statuses#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/statuses/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/statuses.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unpipe@1.0.0", + "author": "Douglas Christopher Wilson", + "name": "unpipe", + "version": "1.0.0", + "description": "Unpipe a stream from all destinations", + "hashes": [ + { + "alg": "SHA-512", + "content": "a63cb66d8852b2e7f05a52b03dcfa5ddc37bfb0b8994aeaecf461d2443a54036e5ea3a3f6253e2e266fc6a0524542f0117b57c36ecdec8f36a464b00de1ced29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unpipe@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stream-utils/unpipe#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stream-utils/unpipe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stream-utils/unpipe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/utils-merge@1.0.1", + "author": "Jared Hanson", + "name": "utils-merge", + "version": "1.0.1", + "description": "merge() utility function", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4c653bc8913d5df93146bc33aaa1d39c971d105a49208ba4dda1af200bc7df18002acfda733d36560326dbb071e8103ff3b4cb64bff5686136324a1527f3584" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2017 Jared Hanson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/utils-merge@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jaredhanson/utils-merge#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/jaredhanson/utils-merge/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jaredhanson/utils-merge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/console-browserify@1.2.0", + "author": "Raynos", + "name": "console-browserify", + "version": "1.2.0", + "description": "Emulate console for all the browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "64c9183bf2e4175ed0bc23ea334831c3cc94ce28003993925921e0f75147ea8ad2eef7048f975565389d3767d0d78c8149d83ded1aa148dc0b517227779d8e4c" + } + ], + "purl": "pkg:npm/console-browserify@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/console-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/console-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/console-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/console-control-strings@1.1.0", + "author": "Rebecca Turner", + "name": "console-control-strings", + "version": "1.1.0", + "description": "A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b72fdf4de929a43d9f23046f9d901575e3a219dd5ced85c48b16e0253373a9cc4958a4278c9fd5d5b344104ea1ca0a4cdd68f01c55152ba1d38d64b35786bcb1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/console-control-strings@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/console-control-strings#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/console-control-strings/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/console-control-strings.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/consolidate@0.14.5", + "author": "TJ Holowaychuk", + "name": "consolidate", + "version": "0.14.5", + "description": "Template engine consolidation library", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d916c91f8fae109e92952bd70f758dfaa7258485934cfacad156ab703225539675624a865cbd7df93e90618547322d31d762fcfba59466c6fb2ac3326a83d90" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/consolidate@0.14.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/consolidate.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/consolidate.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/consolidate.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/content-disposition@0.5.4", + "author": "Douglas Christopher Wilson", + "name": "content-disposition", + "version": "0.5.4", + "description": "Create and parse Content-Disposition header", + "hashes": [ + { + "alg": "SHA-512", + "content": "16f7994cdb86c34e1cc6502259bce2eb34c02ff9617a16966d3b6096e261e3f13de43a8cc139a16b7299375680580f1c148847ccc654bcb7af930e51aa4fad49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/content-disposition@0.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/content-disposition#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/content-disposition/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/content-disposition.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/content-type@1.0.4", + "author": "Douglas Christopher Wilson", + "name": "content-type", + "version": "1.0.4", + "description": "Create and parse HTTP Content-Type header", + "hashes": [ + { + "alg": "SHA-512", + "content": "8483f71043ecf2d07d013d4bf8d52ab70380a6ce269366686fcf4c5973078c75a0f668a517f8f8a2c9e740b5c108114193fb6f206fed51cf663942623c184f5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/content-type@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/content-type#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/content-type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/content-type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-angular@1.6.6", + "author": "Steve Mao", + "name": "conventional-changelog-angular", + "version": "1.6.6", + "description": "conventional-changelog angular preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2e427152a82c51c3207163af29613b05906d2d6887629c72cd1005f98afb70f1b0919c8827a6f7079a547fca3532648acd3d80285e56355a210a5a0484e0136" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-angular@1.6.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-atom@0.1.2", + "author": "Steve Mao", + "name": "conventional-changelog-atom", + "version": "0.1.2", + "description": "conventional-changelog atom preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1e4e147b9fa80f7af929f8bb9b196da015ad1c13e7538499d0f220d7e321bc767a3e301e94e7a63aaaf7930973c8e35a36fa5bee5cb6391937b051e3b01dd00" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-atom@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-atom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-atom/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-atom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-codemirror@0.1.0", + "author": "Steve Mao", + "name": "conventional-changelog-codemirror", + "version": "0.1.0", + "description": "conventional-changelog CodeMirror preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ad6a9fd82ff416bb493bef5f20dc4e0bf6280aef36313bb57c24f44cc64346f52a9a3ea37593fe987b7035609826f78241af9e6a75551b218f94de6af3078f1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-codemirror@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-codemirror#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-codemirror/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-codemirror.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-core@1.9.5", + "name": "conventional-changelog-core", + "version": "1.9.5", + "description": "conventional-changelog core", + "hashes": [ + { + "alg": "SHA-512", + "content": "faa9cc9ccc2c896adcc42a25af3a7d767dea20211c0a38c6b65d37702e07cb3ff1ac06d286d139d419d6ee67ac330b5a83bb14f9d7c881063130687e8ae568cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/conventional-changelog-core@1.9.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog-core#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-writer@2.0.3", + "author": "Steve Mao", + "name": "conventional-changelog-writer", + "version": "2.0.3", + "description": "Write logs based on conventional commits and templates", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f97567124effd5915ef7e8c9053dacf06e105f96da78882b3860f77fd5d71774264886267ea10880799d6e1b124e062c0712f8ccecb54ffc917b8afe0ecc48b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/conventional-changelog-writer@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog-writer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog-writer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog-writer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-commits-filter@1.1.6", + "author": "Steve Mao", + "name": "conventional-commits-filter", + "version": "1.1.6", + "description": "Filter out reverted commits parsed by conventional-commits-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "29c0e0b4244a242421ca4e952d3ef347e64ec829deadf7a613f0ac477890a7345115b2c4b3463aaf09379a90efb4e874e17db6df3fb5c72279f364ad7dcb7fd1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Steve Mao (https://github.com/stevemao)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-commits-filter@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-subset@0.1.1", + "author": "Tomek Wiszniewski", + "name": "is-subset", + "version": "0.1.1", + "description": "Check if an object is contained within another one", + "hashes": [ + { + "alg": "SHA-512", + "content": "e986ee9f42246ab86612ac5708dc3f0b46e76ba65bfd391f517f546f026d2ba39bc00542c6600fdf4f165931ef88cff302a5e4d3971d858b14b19786421f7d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright © 2015 Studio B12 GmbH\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-subset@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/studio-b12/is-subset#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/studio-b12/is-subset/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/studio-b12/is-subset.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/modify-values@1.0.1", + "author": "Sindre Sorhus", + "name": "modify-values", + "version": "1.0.1", + "description": "Modify the values of an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "c55d9bc5e37a17ba188d95937bf60f032e8c37633eb0be2efd1966d801c221519fa36a75c869811d0eaf1de865e1b453641747bb74d2916758824c296330064b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/modify-values@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/modify-values#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/modify-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/modify-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dateformat@1.0.12", + "author": "Steven Levithan", + "name": "dateformat", + "version": "1.0.12", + "description": "A node.js package for Steven Levithan's excellent dateFormat() function.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c1517c00266c7748b6cf9e2a347d91826817456208c557f72a8bbb903b4bfbfe9ddd3beca80221338c8a2ae6c8206266928b0d76c13a4626eadbbbad7fd32a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(c) 2007-2009 Steven Levithan \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dateformat@1.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-dateformat" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-dateformat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/felixge/node-dateformat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/meow@3.7.0", + "author": "Sindre Sorhus", + "name": "meow", + "version": "3.7.0", + "description": "CLI app helper", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cd77066cd2c9119693e90942b6e52b42e151feb4fe4681e6351d038e18ffa5436c6d76437656d4ffe6d897f64dc85a99013d5f5bdcbb005979f81868bf3eb48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/meow@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/meow#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/meow/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/meow.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loud-rejection@1.6.0", + "author": "Sindre Sorhus", + "name": "loud-rejection", + "version": "1.6.0", + "description": "Make unhandled promise rejections fail loudly instead of the default silent fail", + "hashes": [ + { + "alg": "SHA-512", + "content": "44f36589938592a16e98386f62a39a358e14cfda093362bdb42e895ac249b0d761b8e356e0b407441a5bd2a7f8a4902955f7c8e4ddfd4b0cd6649b8485f77b79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loud-rejection@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/loud-rejection#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/loud-rejection/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/loud-rejection.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/currently-unhandled@0.4.1", + "author": "James Talmage", + "name": "currently-unhandled", + "version": "0.4.1", + "description": "Track the list of currently unhandled promise rejections.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdf2138e08c6539d2f8d0e051fa794a18bbe894a142885f0b3684bd79249a4847e05b4f169742c32ebb28ed361d96aac4814b99ec6991c5b0579ccb0e420809e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/currently-unhandled@0.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/currently-unhandled#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/currently-unhandled/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/currently-unhandled.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg-up@1.0.1", + "author": "Sindre Sorhus", + "name": "read-pkg-up", + "version": "1.0.1", + "description": "Read the closest package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "d68af141f6d61948939fd5ec3e50a1b3aacb89efc057d8f06531a6bb6359c3f0940c941c857245604d05ab98fbfa7e79f13d4984358b761c9dd598fec0b63fff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg-up@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg@1.1.0", + "author": "Sindre Sorhus", + "name": "read-pkg", + "version": "1.1.0", + "description": "Read a package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "78520138f5bb1468f306e93785d5c4b8d4a24d94bfc443251f8f47c4ccb36f48723dfbb81215634f60c7df62b58524a656ae2c79b0169d9bae6396ae21251318" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/load-json-file@1.1.0", + "author": "Sindre Sorhus", + "name": "load-json-file", + "version": "1.1.0", + "description": "Read and parse a JSON file", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9e9938635b897e0276f11dd55704eb28bbf14ac63698c73b7de7a06c070a74ffa367f29652437a9b26f3e98516ffc3bedc051e1b791c81d2c8ecb96be0a155" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/load-json-file@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/load-json-file#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/load-json-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/load-json-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-bom@2.0.0", + "author": "Sindre Sorhus", + "name": "strip-bom", + "version": "2.0.0", + "description": "Strip UTF-8 byte order mark (BOM) from a string/buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdabc03115ce80154d17a9f210498bdc304ad7d891a437282305beb3043e09b1a2bbb963bbab7e264940d4c1f07a85ad69d82de0849552c5cbc83ab7e1d75cc0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-bom@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-bom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-bom/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-bom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-utf8@0.2.1", + "author": "wayfind", + "name": "is-utf8", + "version": "0.2.1", + "description": "Detect if a buffer is utf8 encoded.", + "hashes": [ + { + "alg": "SHA-512", + "content": "acc60f62f0b3b17cb022c95d80b692a0f970e4f7e807fb2cafb858e292df72876b03933f780af36b56bd5664e234804d323386af53b0f664f2536a3af54e94f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2014 Wei Fanzhe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n  \nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-utf8@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wayfind/is-utf8#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wayfind/is-utf8/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wayfind/is-utf8.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-type@1.1.0", + "author": "Sindre Sorhus", + "name": "path-type", + "version": "1.1.0", + "description": "Check if a path is a file, directory, or symlink", + "hashes": [ + { + "alg": "SHA-512", + "content": "7549dbe5d5d47fe933842fd6fc5e1ee7f4a496e5c815fe55507a255b5120d62ae7d611968cf19db1172f609d670fa96193c22bed53346c724ab184f1f09c7d39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-type@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/path-type#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/path-type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/path-type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redent@1.0.0", + "author": "Sindre Sorhus", + "name": "redent", + "version": "1.0.0", + "description": "Strip redundant indentation and indent the string", + "hashes": [ + { + "alg": "SHA-512", + "content": "aad5b984acc6419a8aa21e893520fee257e2b5f3ca1b3e367ba43089198f3399a62ad474378d406c9458bb4c498bb9e1389e160e04642af024eadc38588c11e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redent@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/redent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/redent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/redent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/indent-string@2.1.0", + "author": "Sindre Sorhus", + "name": "indent-string", + "version": "2.1.0", + "description": "Indent each line in a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "6aac031564a04a07d1684c1aa39960e4a11c55dff66be0f5aefa06ecd762966633d0dc1193a4ad5a959dcff1e9937e0c28fa71eecf17c54aa299f7102ba80696" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/indent-string@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/indent-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/indent-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/indent-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/repeating@2.0.1", + "author": "Sindre Sorhus", + "name": "repeating", + "version": "2.0.1", + "description": "Repeat a string - fast", + "hashes": [ + { + "alg": "SHA-512", + "content": "361df424b78c1dda08f80b10e5e6e5859ed8953b0cf7088941efc01c8ba794adca5b3bd78576f7e8827b2b520e7918c83adccc8dd5078f05d4171289a0f4d23a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/repeating@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/repeating#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/repeating/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/repeating.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-indent@1.0.1", + "author": "Sindre Sorhus", + "name": "strip-indent", + "version": "1.0.1", + "description": "Strip leading whitespace from every line in a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "239890aba68530ceb67c1100201fe15f3c090fa104674c441825f6b7ba17a9a28f21182de16aee010dbce4121281d90ff872c65b278698d25ca48c0579161150" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-indent@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-indent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-indent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-indent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/trim-newlines@1.0.0", + "author": "Sindre Sorhus", + "name": "trim-newlines", + "version": "1.0.0", + "description": "Trim newlines from the start and/or end of a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "366e1c17bf458524f3acb2860cc8b7238bad06d16ff2a2b2e2cab57a77ed7f680c769a88f285504c07f24a44f3e6be3d8225730e3f3c4956573f809e610c236b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/trim-newlines@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/trim-newlines#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/trim-newlines/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/trim-newlines.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split@1.0.1", + "author": "Dominic Tarr", + "name": "split", + "version": "1.0.1", + "description": "split a Text Stream into a Line Stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "993c8ea0f6eb8afb579f09c8c59445611acf36d1052a5a41d9fbe34a7090522000eaa019ceac276b97a7bcae2e93a38878fd7b0ac745deb481198541b14d1392" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/split@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/split" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/split/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/split.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/through2@2.0.5", + "author": "Rod Vagg", + "name": "through2", + "version": "2.0.5", + "description": "A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe6ad1a1df31aa903e20748bc86090dacf123c78820c47902527a9d63a8b61e1140a53851b642c87ee0553a1bd55eaa9667196fd2bbc2d019ce182a78b9ad849" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\n**Copyright (c) Rod Vagg (the \"Original Author\") and additional contributors**\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/through2@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/through2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/through2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/through2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xtend@4.0.2", + "author": "Raynos", + "name": "xtend", + "version": "4.0.2", + "description": "extend like a boss", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ca614d620172575200179fd5118e2bbe3168725171ecbdfa7b99cb989bd75250a2b4fc28edad4c050310fcdbf98259bb4bb068c521a774c08b28778ceb4c011" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2012-2014 Raynos.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xtend@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/xtend" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/xtend/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/xtend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-commits-parser@2.1.7", + "author": "Steve Mao", + "name": "conventional-commits-parser", + "version": "2.1.7", + "description": "Parse raw conventional commits", + "hashes": [ + { + "alg": "SHA-512", + "content": "e38c4a16666fdcc937ab7eca03b6e17d877786f65413b364176a3450abbe7a990961fc6f8ac45a8e010fc15dabaedcc580c5606e7aa9bd1acbc29ff991599f41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-commits-parser@2.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-text-path@1.0.1", + "author": "Sindre Sorhus", + "name": "is-text-path", + "version": "1.0.1", + "description": "Check if a filepath is a text file", + "hashes": [ + { + "alg": "SHA-512", + "content": "c45b89a677bda05cf9a836a87709a61b4f1edc26b01ffd9957c42acdad4aa3b4a4f0f3966e445dc08a0059586abead17794cc034484aa369f4217506066ec0ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-text-path@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-text-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-text-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-text-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/text-extensions@1.9.0", + "author": "Sindre Sorhus", + "name": "text-extensions", + "version": "1.9.0", + "description": "List of text file extensions", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2206bc02d448417a55b5d99cb6e8978e524439991bbee68f2ba6c264e7edadf98e6f13b7bce36aad6434368353695ffdbd1ddc85789e27488848e3b10d4b195" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/text-extensions@1.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/text-extensions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/text-extensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/text-extensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/meow@4.0.1", + "author": "Sindre Sorhus", + "name": "meow", + "version": "4.0.1", + "description": "CLI app helper", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cd77066cd2c9119693e90942b6e52b42e151feb4fe4681e6351d038e18ffa5436c6d76437656d4ffe6d897f64dc85a99013d5f5bdcbb005979f81868bf3eb48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/meow@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/meow#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/meow/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/meow.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase-keys@4.2.0", + "author": "Sindre Sorhus", + "name": "camelcase-keys", + "version": "4.2.0", + "description": "Convert object keys to camelCase", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c0fd9fc31111caaa810eae9faa7862b0d5096f1109066527345da63a5674f166bf8abf51b9cc5c2db698eff2ac59fec04f4f89ed87065a01cb0065326548a5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase-keys@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-obj@2.0.0", + "author": "Sindre Sorhus", + "name": "map-obj", + "version": "2.0.0", + "description": "Map object keys and values into a new object", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecdfeade5c99f8b542a7b3f3bb1ac9af828c6c1136856ec14fb60d89adf7d0e17121fe1ddebe7356989c3f6eb9d25ec23cde9133dcce251977346a6a4a2c3712" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-obj@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/map-obj#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/map-obj/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/map-obj.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/quick-lru@1.1.0", + "author": "Sindre Sorhus", + "name": "quick-lru", + "version": "1.1.0", + "description": "Simple \"Least Recently Used\" (LRU) cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "b514bbb13832c4c5ed2ee9bc2fae5d6899c75217c35206e845d7165b66d1f6f05fae3dbe3b91d231b40e25f2498c85523c5a9b042177ec5a705971a2b43739b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/quick-lru@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/quick-lru#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/quick-lru/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/quick-lru.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/decamelize-keys@1.1.0", + "author": "Sindre Sorhus", + "name": "decamelize-keys", + "version": "1.1.0", + "description": "Convert object keys from camelCase to lowercase with a custom separator", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1c2d6b98cd13e84bd6df892743777731bebce8bd53199d10d513302cfa15885571836c7c563040a28f6381bb207f027d05156fe72eeaba2afd62fd80b941fce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com), Dmirty Sobolev \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/decamelize-keys@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dsblv/decamelize-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dsblv/decamelize-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dsblv/decamelize-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist-options@3.0.2", + "author": "Vadim Demedes", + "name": "minimist-options", + "version": "3.0.2", + "description": "Pretty options for minimist", + "hashes": [ + { + "alg": "SHA-512", + "content": "17206b4ff774778fae89945bab39cf5eac372296591b7825df0296897efce05c9c50a57006dd2e2c116442bb44e2d64eae0a3bf27669da39cacf72fae53e4b75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vadim Demedes (vadimdemedes.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist-options@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vadimdemedes/minimist-options#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vadimdemedes/minimist-options/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vadimdemedes/minimist-options.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-plain-obj@1.1.0", + "author": "Sindre Sorhus", + "name": "is-plain-obj", + "version": "1.1.0", + "description": "Check if a value is a plain object", + "hashes": [ + { + "alg": "SHA-512", + "content": "caf911cb1985284390e293570a6246e401103655c94b92da38d5e8e7f70b75365d5afb19d62a091289cb180a2c2a531613c970532fdb273323730f1acfbdfe16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-plain-obj@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-plain-obj#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-plain-obj/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-plain-obj.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-pkg-up@3.0.0", + "author": "Sindre Sorhus", + "name": "read-pkg-up", + "version": "3.0.0", + "description": "Read the closest package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "d68af141f6d61948939fd5ec3e50a1b3aacb89efc057d8f06531a6bb6359c3f0940c941c857245604d05ab98fbfa7e79f13d4984358b761c9dd598fec0b63fff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-pkg-up@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/read-pkg-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/read-pkg-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/read-pkg-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redent@2.0.0", + "author": "Sindre Sorhus", + "name": "redent", + "version": "2.0.0", + "description": "Strip redundant indentation and indent the string", + "hashes": [ + { + "alg": "SHA-512", + "content": "aad5b984acc6419a8aa21e893520fee257e2b5f3ca1b3e367ba43089198f3399a62ad474378d406c9458bb4c498bb9e1389e160e04642af024eadc38588c11e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redent@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/redent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/redent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/redent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/indent-string@3.2.0", + "author": "Sindre Sorhus", + "name": "indent-string", + "version": "3.2.0", + "description": "Indent each line in a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "6aac031564a04a07d1684c1aa39960e4a11c55dff66be0f5aefa06ecd762966633d0dc1193a4ad5a959dcff1e9937e0c28fa71eecf17c54aa299f7102ba80696" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/indent-string@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/indent-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/indent-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/indent-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-indent@2.0.0", + "author": "Sindre Sorhus", + "name": "strip-indent", + "version": "2.0.0", + "description": "Strip leading whitespace from each line in a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "239890aba68530ceb67c1100201fe15f3c090fa104674c441825f6b7ba17a9a28f21182de16aee010dbce4121281d90ff872c65b278698d25ca48c0579161150" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-indent@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-indent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-indent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-indent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/trim-newlines@2.0.0", + "author": "Sindre Sorhus", + "name": "trim-newlines", + "version": "2.0.0", + "description": "Trim newlines from the start and/or end of a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "366e1c17bf458524f3acb2860cc8b7238bad06d16ff2a2b2e2cab57a77ed7f680c769a88f285504c07f24a44f3e6be3d8225730e3f3c4956573f809e610c236b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/trim-newlines@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/trim-newlines#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/trim-newlines/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/trim-newlines.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split2@2.2.0", + "author": "Matteo Collina", + "name": "split2", + "version": "2.2.0", + "description": "split a Text Stream into a Line Stream, using Stream 3", + "hashes": [ + { + "alg": "SHA-512", + "content": "4406f6d931b7f4b848df531bade06022e2a220a855b1ac1f4e0106a8a1d32bceda1beba5fcf07c4aaa22dc8ee455d4568827eb2b12b7ba8e3f61492936f84f6f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014-2017, Matteo Collina \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/split2@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mcollina/split2#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/mcollina/split2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mcollina/split2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/trim-off-newlines@1.0.3", + "author": "Steve Mao", + "name": "trim-off-newlines", + "version": "1.0.3", + "description": "Similar to String#trim() but removes only newlines", + "hashes": [ + { + "alg": "SHA-512", + "content": "921e93bba19b79234c19faeb661e816ffe19107575425078c4d0c17a883c63dfd0c0594a4d1c96bd8dc5b3db510c0319962554c2278c80474878bfc5b6a8e426" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Steve Mao (github.com/stevemao)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/trim-off-newlines@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/trim-off-newlines#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/trim-off-newlines/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/trim-off-newlines.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-pkg-repo@1.4.0", + "author": "Steve Mao", + "name": "get-pkg-repo", + "version": "1.4.0", + "description": "Get normalized repository from package json data", + "hashes": [ + { + "alg": "SHA-512", + "content": "c4f0b2bdc10ec42243c6105f5c3347fb303b9884466f6698d60214256b1992925ba7504b1e5fbf4b2720dba0eff996d900990eeb5b736c1b6a1d48b7d0d181be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/get-pkg-repo@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/get-pkg-repo" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/get-pkg-repo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/get-pkg-repo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-github-repo-url@1.4.1", + "author": "Jonathan Ong", + "name": "parse-github-repo-url", + "version": "1.4.1", + "description": "Parse a GitHub URL for user/project@version", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d25b2cc12aa7122f846b9dc4e91ac10aa09ec7f1ae0bdfefa27d301b4c578c1f2ab6c1157ee360c699070722b248bdd71a72320ec44b8a1ffc38b6d845d7b82" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-github-repo-url@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/repo-utils/parse-github-repo-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/repo-utils/parse-github-repo-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/repo-utils/parse-github-repo-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/git-raw-commits@1.3.6", + "author": "Steve Mao", + "name": "git-raw-commits", + "version": "1.3.6", + "description": "Get raw git commits out of your repository using git-log(1)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2fb0adbab50f2f10a9ccb214c36ad488412303773f02c4822a2acbcfa9bb55db712d9b0e9535a1408adbbccf067456b3a77bb173b703f244bc4aeff0c851342" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/git-raw-commits@1.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/git-raw-commits#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dargs@4.1.0", + "author": "Sindre Sorhus", + "name": "dargs", + "version": "4.1.0", + "description": "Reverse minimist. Convert an object of options into an array of command-line arguments.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f2c1e57f934adbbf658ae2bf4a2dacae06b4a1d8fcb4b4d995ecb06848c1f884c432ac6f0e3f220e581d95131e0324a5d698ae25a2960c56f391943b764bc03" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dargs@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/dargs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/dargs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/dargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.template@4.5.0", + "author": "John-David Dalton", + "name": "lodash.template", + "version": "4.5.0", + "description": "The Lodash method `_.template` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f38bd81712249a2754885c62740fca8e31fda40c9ca96fa1f7cd23ec5bb3e6ac51b4ef69801ecc0c54ddcacd4dec0e6672e711883c84ab87eeb258c8b51d53fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright OpenJS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.template@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._reinterpolate@3.0.0", + "author": "John-David Dalton", + "name": "lodash._reinterpolate", + "version": "3.0.0", + "description": "The modern build of lodash’s internal `reInterpolate` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c581edebc411a181a379e33f5ce135b89b6f5d0020beccdf0618d5e32bec407d2eda2f48e9c23a73afde1b81e1dd400e567d32ff1017c264f311acb8f50fff1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._reinterpolate@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.templatesettings@4.2.0", + "author": "John-David Dalton", + "name": "lodash.templatesettings", + "version": "4.2.0", + "description": "The Lodash method `_.templateSettings` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2d80bcfe8b701af666609e3aff3bebfdaee299b0fb27772eea3d939c85baa4d9c9d353565a95d28afafee6e785a8288cb18ae3194ca4f61fcd45f0178073765" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright OpenJS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.templatesettings@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/git-remote-origin-url@2.0.0", + "author": "Sindre Sorhus", + "name": "git-remote-origin-url", + "version": "2.0.0", + "description": "Get the remote origin url of a git repository", + "hashes": [ + { + "alg": "SHA-512", + "content": "794f861ab66071c34972c0c7e4b9174773c1f4cf79f21c5ceec6c0f031498ebbfd8f82f63ff7997ca84cf900fac32ce98aff9bd41a4ad17ad80b1928bed8d22f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/git-remote-origin-url@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/git-remote-origin-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/git-remote-origin-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/git-remote-origin-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gitconfiglocal@1.0.0", + "author": "Ryan Day", + "name": "gitconfiglocal", + "version": "1.0.0", + "description": "parse the .git/config file into a useful data structure", + "hashes": [ + { + "alg": "SHA-512", + "content": "b292d45de4c0547c43b4ab0973c164155805b4c74437da8f1a92f6dd57d21f1e1f3f8f83b34f7b2172efca66e70c7f059e6c57e4dafd6cfc3703e010ea658469" + } + ], + "licenses": [ + { + "license": { + "name": "BSD" + } + } + ], + "purl": "pkg:npm/gitconfiglocal@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/soldair/node-gitconfiglocal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/soldair/node-gitconfiglocal/issues" + }, + { + "type": "vcs", + "url": "git://github.com/soldair/node-gitconfiglocal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ini@1.3.8", + "author": "Isaac Z. Schlueter", + "name": "ini", + "version": "1.3.8", + "description": "An ini encoder/decoder for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "255ff2ba0576bb35b988c4528990320ed41dfa7c6d5278de2edd1a70d770f7c90a2ebbee455c81f34b6c444384ef2bc65606a5859e913570a61079142812b17b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ini@1.3.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/ini#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/ini/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/ini.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/git-semver-tags@1.3.6", + "author": "Steve Mao", + "name": "git-semver-tags", + "version": "1.3.6", + "description": "Get all git semver tags of your repository in reverse chronological order", + "hashes": [ + { + "alg": "SHA-512", + "content": "da31e5267967e03fc40a4f45c46101877938e308187568d60ed32624f69e723a119b12a8dd8d4b87c18c62e38fbb4e021f0f3a35300e0dc8588c2e699e93108a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/git-semver-tags@1.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/git-semver-tags#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-ember@0.2.10", + "author": "Steve Mao", + "name": "conventional-changelog-ember", + "version": "0.2.10", + "description": "conventional-changelog ember preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c104164ee90ee26f81e149dc82355476e4eb5a5e5ef5d14260d5a48708b991f008ee5cab3704ef2d9db635307f83d42fb3e481681039298ce75d79f353ca109" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-ember@0.2.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-ember#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-ember/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-ember.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-eslint@0.1.0", + "author": "Steve Mao", + "name": "conventional-changelog-eslint", + "version": "0.1.0", + "description": "conventional-changelog eslint preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "468dc29839664e3f127431c158800a7c265996ee2940dec4149cc6544c841c43e4a07194ecddade72c4a5ab4ee3f79a2ef0f84b81276a89679c7e632d4a4c912" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-eslint@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-eslint#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-eslint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-eslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-express@0.1.0", + "author": "Steve Mao", + "name": "conventional-changelog-express", + "version": "0.1.0", + "description": "conventional-changelog express preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "b293983b4710f32109d868f5581e09c40fb953428c39104c3b6c0211909b2c23b64903aa4e3699810ca8820abb07693bce7cc3a6bbc67db3cf9a84a56c5ed300" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-express@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-express#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-express/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-express.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-jquery@0.1.0", + "author": "Steve Mao", + "name": "conventional-changelog-jquery", + "version": "0.1.0", + "description": "conventional-changelog jquery preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1bcf9bd572fbbf48f6530c5076d5f17fc68e7316ae8d411e368e1b547ceaeb3f537f66336c86119bddec69086a8761d9d41f33debc779469fb15addc550f93a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-jquery@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-jquery#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-jquery/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-jquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-jscs@0.1.0", + "author": "Steve Mao", + "name": "conventional-changelog-jscs", + "version": "0.1.0", + "description": "conventional-changelog jscs preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "57cb1ecb8b44d272549561a2d8f64a0cc7dac182dfffe175eb9c618438dc2284c4243c6cb155793cc5734d0ce34ba53f7445fce5f5a4babf9bb3a8a63aa9089e" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-jscs@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-jscs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-jscs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-jscs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-jshint@0.1.0", + "author": "Steve Mao", + "name": "conventional-changelog-jshint", + "version": "0.1.0", + "description": "conventional-changelog jshint preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebe9abb305e973f0605a5b2b1a459188b5fb0502fdacd1ce005bb71baeac5cef2e5ba5b2e3d95ceb51f974cca161a93346007932f14328622eb6a46620221c12" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/conventional-changelog-jshint@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/conventional-changelog-jshint#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/conventional-changelog-jshint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/conventional-changelog-jshint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-writer@1.4.1", + "author": "Steve Mao", + "name": "conventional-changelog-writer", + "version": "1.4.1", + "description": "Write logs based on conventional commits and templates", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f97567124effd5915ef7e8c9053dacf06e105f96da78882b3860f77fd5d71774264886267ea10880799d6e1b124e062c0712f8ccecb54ffc917b8afe0ecc48b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/conventional-changelog-writer@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog-writer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog-writer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog-writer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-commits-parser@1.3.0", + "author": "Steve Mao", + "name": "conventional-commits-parser", + "version": "1.3.0", + "description": "Parse raw conventional commits", + "hashes": [ + { + "alg": "SHA-512", + "content": "e38c4a16666fdcc937ab7eca03b6e17d877786f65413b364176a3450abbe7a990961fc6f8ac45a8e010fc15dabaedcc580c5606e7aa9bd1acbc29ff991599f41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/conventional-commits-parser@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-commits-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-commits-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-commits-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookie@0.3.1", + "author": "Roman Shtylman", + "name": "cookie", + "version": "0.3.1", + "description": "HTTP server cookie parsing and serialization", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8824e5f43aa9470acce8da6054abe4ab11b0a3eb0ecaa5f7eac7ad3361b3d315a3b8fb26204631f07193695af693ca50c7695ecf3e6047cd279c662321b4f83" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 Roman Shtylman \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cookie@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/cookie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/cookie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/cookie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookie-signature@1.2.0", + "author": "TJ Holowaychuk", + "name": "cookie-signature", + "version": "1.2.0", + "description": "Sign and unsign cookies", + "hashes": [ + { + "alg": "SHA-512", + "content": "47404e3df2c64e2b5a2a180a44e29940dea2caada20d0707d43385f272686966a982e5f96c2db0f90fc8f4d9a633995f72f11aae72d9afe702be61186125ef60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012–2022 LearnBoost and other contributors;\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cookie-signature@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/node-cookie-signature#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/node-cookie-signature/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/node-cookie-signature.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/depd@1.1.2", + "author": "Douglas Christopher Wilson", + "name": "depd", + "version": "1.1.2", + "description": "Deprecate all the things", + "hashes": [ + { + "alg": "SHA-512", + "content": "ede98f4e5e83a68e894573978cb471724f8594b457e7ce3b70b2849f4d0f2c081cde0da14d9660afe7b8736bfa4294a62de14fde7e72528edfb7a6af04aff98d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/depd@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dougwilson/nodejs-depd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dougwilson/nodejs-depd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dougwilson/nodejs-depd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/destroy@1.2.0", + "author": "Jonathan Ong", + "name": "destroy", + "version": "1.2.0", + "description": "destroy a stream if possible", + "hashes": [ + { + "alg": "SHA-512", + "content": "dac246253697208691d70e22252368374867318ec6a5cfe7f03e2a482270f10a855977fb72e0209c41f1069c1e69570f7af0b69772a98d80b1dcdca941081a26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2015-2022 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/destroy@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stream-utils/destroy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stream-utils/destroy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stream-utils/destroy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domhandler@2.4.2", + "author": "Felix Boehm", + "name": "domhandler", + "version": "2.4.2", + "description": "handler for htmlparser2 that turns pages into a dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2622b4e21d07b79bbff347dd2cc084995e3390d87605ca0c141999ffdd56b5867ca955d22a38b0edf5cc8053e71dc49980ea375dd8a71ef9a70d478c7f9478c0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domhandler@2.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/DomHandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/DomHandler/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/DomHandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domutils@1.7.0", + "author": "Felix Boehm", + "name": "domutils", + "version": "1.7.0", + "description": "utilities for working with htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e07765dc27f363130fbbb45bdf2b13b3098299b1d72de6573343665a418f038f3ee97c00f719ba7cc92256b6b78823fbc394c566c706baa4799dc48620b6d0e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domutils@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FB55/domutils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FB55/domutils/issues" + }, + { + "type": "vcs", + "url": "git://github.com/FB55/domutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io@1.8.5", + "author": "Guillermo Rauch", + "name": "engine.io", + "version": "1.8.5", + "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f50d621c92dc38851c2bbfa9d6c7efb99c51f65fae31d7a3001b63f42e68b90ef75f8b723e26173b24a24874098325afb9699fe298757b75644fcb60aa8e1dc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Guillermo Rauch \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, \nsublicense, and/or sell copies of the Software, and to permit persons to whom the Software is \nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or \nsubstantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING \nBUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/engine.io@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/socketio/engine.io.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/accepts@1.3.3", + "name": "accepts", + "version": "1.3.3", + "description": "Higher-level content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d802d8536b69b654ac6ebd20f70cf0bf1b2f94fac380d4b02e4fc9a4991bafc3e34009269e5c443e34771517bace365eaa71ac55dd4b9e9b06b093eefe4892f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/accepts@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/accepts#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/accepts/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/accepts.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/negotiator@0.6.1", + "name": "negotiator", + "version": "0.6.1", + "description": "HTTP content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8452ca863cbb0cfa3ff37428598ec9d7e758385eb1c53885f07e70953c695093f9398226a470ab2ec4239b051bba0d29bda29c3f3bab2559b25d82140ce1b06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 Federico Romero\nCopyright (c) 2012-2014 Isaac Z. Schlueter\nCopyright (c) 2014-2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/negotiator@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/negotiator#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/negotiator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/negotiator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base64id@1.0.0", + "author": "Kristian Faeldt", + "name": "base64id", + "version": "1.0.0", + "description": "Generates a base64 id", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d28ed7e3840b0797d2783898fb7b8fada15db3ab126b1b055ddc22e5b02a7c42689cbce9fb8ab1b431bf1bace73f9eeaf749d3bc9486cd958d6cd590c975429" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2016 Kristian Faeldt \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/base64id@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faeldt/base64id#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faeldt/base64id/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/faeldt/base64id.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@2.3.3", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "2.3.3", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, \nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial \nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@0.7.2", + "name": "ms", + "version": "0.7.2", + "description": "Tiny milisecond conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Zeit, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ms@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zeit/ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zeit/ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zeit/ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io-parser@1.3.2", + "name": "engine.io-parser", + "version": "1.3.2", + "description": "Parser for the client for the realtime Engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd4c93268fb925b9abeeb777328b13000a4aec1388a38b23c7c7496121dadc49b947703d636b3d196bb824525ee8fc745627890b484a500e4d072b42f8eee4d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2016 Guillermo Rauch (@rauchg)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/engine.io-parser@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/socketio/engine.io-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-binary@0.1.7", + "author": "Kevin Roark", + "name": "has-binary", + "version": "0.1.7", + "description": "A function that takes anything in javascript and returns true if its argument contains binary data.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9355266f8fe3ac15996ed2fe40a4a38bca967a867b6539177670d7b75c31c0128014cd3ffeef7ac038f8de6048a8221ab3cac340c632ac112f712f217467784a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Kevin Roark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-binary@0.1.7" + }, + { + "type": "library", + "bom-ref": "pkg:npm/wtf-8@1.0.0", + "author": "Mathias Bynens", + "name": "wtf-8", + "version": "1.0.0", + "description": "A well-tested WTF-8 encoder/decoder written in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a80f8a631a79f95979ce78e9a33a112c11184e815059e358a7783752b2dec473c2ae48f935757e6aad6657acba4a29b7d7155505fbedcc18c67906e60b9743e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/wtf-8@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/wtf8" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/wtf-8.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/wtf-8.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ws@1.1.5", + "author": "Einar Otto Stangvik", + "name": "ws", + "version": "1.1.5", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a372aa8a95cd51d4bbc2943304749ed7cd250463bad12a0ad32568dc260981bd8c9286ee5ae057e9d86460fe4e4422dde79cbe49a7e530e5797ea001e77bb1e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ws@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/websockets/ws" + }, + { + "type": "issue-tracker", + "url": "https://github.com/websockets/ws/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/websockets/ws.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/options@0.0.6", + "author": "Einar Otto Stangvik", + "name": "options", + "version": "0.0.6", + "description": "A very light-weight in-code option parsers for node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ce8f72f5ca99bef8dfa7ec211b6dee3bdc0e35e0007bcfe6a6298b2145bfff8ae2f732974308b84f9f0e9a55374a07d839651547204a7c794967e8bd8d512b6" + } + ], + "purl": "pkg:npm/options@0.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/einaros/options.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/einaros/options.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/einaros/options.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ultron@1.0.2", + "author": "Arnout Kazemier", + "name": "ultron", + "version": "1.0.2", + "description": "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design", + "hashes": [ + { + "alg": "SHA-512", + "content": "50811704d79898aa6d587eb3f199ea4de4bc7d5ef8cc6d3f79153d546929cf3f8b20936cf16ff333f2feedcb42911ae06cd9e7474c71c386ca3abd1c5b43743a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ultron@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/ultron" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/ultron/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/ultron.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io-client@1.8.6", + "name": "engine.io-client", + "version": "1.8.6", + "description": "Client for the realtime Engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebeac89d0bbcc54edcd1f205e910b84912ae1d558fb7c5ead1b6584b894cad3c268518a778e94432c5375f4cd2e661c8bc2809b26a4e2845fb0e18a11a4ee3d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2015 Automattic \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/engine.io-client@1.8.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/socketio/engine.io-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-emitter@1.2.1", + "name": "component-emitter", + "version": "1.2.1", + "description": "Event emitter", + "hashes": [ + { + "alg": "SHA-512", + "content": "45ddec7ba401fac3b54f0a998ec710aeeae910f21f3b4ff26274a29fa43fac3de63aeb47bd4ac202126e6f7afdd2e35bf9211206e134418a01f7461d7dab6c46" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\r\n\r\nCopyright (c) 2014 Component contributors \r\n\r\nPermission is hereby granted, free of charge, to any person\r\nobtaining a copy of this software and associated documentation\r\nfiles (the \"Software\"), to deal in the Software without\r\nrestriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the\r\nSoftware is furnished to do so, subject to the following\r\nconditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\r\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\r\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\r\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\r\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\r\nOTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/component-emitter@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/emitter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/emitter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/emitter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-cors@1.1.0", + "author": "Nathan Rajlich", + "name": "has-cors", + "version": "1.1.0", + "description": "Detects support for Cross-Origin Resource Sharing", + "hashes": [ + { + "alg": "SHA-512", + "content": "83954d29d905b94b9508ff6061f0c91e32b69ea75027b6832d39f2727736f91bec3906ee2dd179a66eefb84e49efa484048423b3891063f056abbe095268db5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/has-cors@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/has-cors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/has-cors/issues" + }, + { + "type": "vcs", + "url": "git://github.com/component/has-cors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/indexof@0.0.1", + "name": "indexof", + "version": "0.0.1", + "description": "Microsoft sucks", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b41bb84b275cf40c4f1db2a25adabc9c8fd74198d2a05c1be8b57b596176a453da22bdf07d523d99042dbbaaa79fd94e7cfd92f06a5c5ad57fd10c27641ed56" + } + ], + "purl": "pkg:npm/indexof@0.0.1" + }, + { + "type": "library", + "bom-ref": "pkg:npm/parsejson@0.0.3", + "author": "Gal Koren", + "name": "parsejson", + "version": "0.0.3", + "description": "Method that parses a JSON string and returns a JSON object", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf7f198d56e29e5676af5473d3a5946449c6a1245c1065feae832c8968c77807b6decdaa9505327e6b0f419be1eddf25d04f006734c83bf46452bd342df91288" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2015 Gal Koren\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/parsejson@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/get/parsejson" + }, + { + "type": "issue-tracker", + "url": "https://github.com/get/parsejson/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/get/parsejson.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parseqs@0.0.5", + "author": "Gal Koren", + "name": "parseqs", + "version": "0.0.5", + "description": "Provides methods for parsing a query string into an object, and vice versa.", + "hashes": [ + { + "alg": "SHA-512", + "content": "07736b8f0d9a2fb688e130ee8cecdf03836c11ce2ed6555c211134c5eb2eb47f248de585ef4ba4f96e5c065210c74e33507f4d4c1bee377e98f712d13cae898f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2015 Gal Koren\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/parseqs@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/get/querystring" + }, + { + "type": "issue-tracker", + "url": "https://github.com/get/querystring/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/get/querystring.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parseuri@0.0.5", + "name": "parseuri", + "version": "0.0.5", + "description": "Method that parses a URI and returns an array of its components", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a385dc49bba97946ed768c5d09bf35d53efb02f9589ba9e684c6536832158de9543bf4f1a392673ba00e16d65a74d2c1643728f47f1ea2bcf2dd579d7f50ca2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2014 Gal Koren\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/parseuri@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/get/parseuri" + }, + { + "type": "issue-tracker", + "url": "https://github.com/get/parseuri/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/get/parseuri.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmlhttprequest-ssl@1.6.3", + "author": "Michael de Wit", + "name": "xmlhttprequest-ssl", + "version": "1.6.3", + "description": "XMLHttpRequest for Node", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd77de404ff0364beb224b67d8a7f4f3af5f0b404de94a727556ac1887929b60752e58a17fbff451f64cf9e0a43b0dcfedb3f8faa3e0aa19bb668c6e26d154d1" + } + ], + "purl": "pkg:npm/xmlhttprequest-ssl@1.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mjwwit/node-XMLHttpRequest#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/mjwwit/node-XMLHttpRequest/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mjwwit/node-XMLHttpRequest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yeast@0.1.2", + "author": "Arnout Kazemier", + "name": "yeast", + "version": "0.1.2", + "description": "Tiny but linear growing unique id generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0714887aefabb21983fac0fd7747f8fa389ff51f0278eac9e9bf313b68700ddd1caa876c97e97a31d81e025264f0c0e233946dc1b3ba1cb0fe5d647fd1d506e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/yeast@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/yeast" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/yeast/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/yeast.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/etag@1.8.1", + "name": "etag", + "version": "1.8.1", + "description": "Create simple HTTP ETags", + "hashes": [ + { + "alg": "SHA-512", + "content": "6882f9171ee66b055adf4d1a976067104e2236fa35a844f12eb3c8fe8d392fbcfa828edf0b0d49e844266cae05989d804bb920545fca1195ae7c17dd0a531c3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/etag@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/etag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/etag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/etag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventemitter3@3.1.2", + "author": "Arnout Kazemier", + "name": "eventemitter3", + "version": "3.1.2", + "description": "EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6fb5021e2d51e30e42589f37f676054cc5fb9218978cffb5021b5ed34f812e9937cdb45fb49de6c5ff8cd6388902ade01bb4daa11846e807a056af0a8d6b0e1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Arnout Kazemier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eventemitter3@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/primus/eventemitter3#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/primus/eventemitter3/issues" + }, + { + "type": "vcs", + "url": "git://github.com/primus/eventemitter3.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/events-to-array@1.1.2", + "author": "Isaac Z. Schlueter", + "name": "events-to-array", + "version": "1.1.2", + "description": "Put a bunch of emitted events in an array, for testing.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a7456cd163b9c6f9a5d9c41cc4a98281dc73e0c1f959468a408c3087bf4c21851c7e31352bd5e8b4202654ca97721341d19b82f6779544708a8b0faca5f8114" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/events-to-array@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/events-to-array" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/events-to-array/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/events-to-array.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/express@4.18.1", + "author": "TJ Holowaychuk", + "name": "express", + "version": "4.18.1", + "description": "Fast, unopinionated, minimalist web framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd905c397f537de847421b6ea6ae7b385f25159dd4662d3c63deddc050a40fca7d77f77663733eca429cc1a30310bfb8ab25289600435fa01b9694777cbdb5d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2009-2014 TJ Holowaychuk \nCopyright (c) 2013-2014 Roman Shtylman \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/express@4.18.1", + "externalReferences": [ + { + "type": "website", + "url": "http://expressjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/express/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/express.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/body-parser@1.20.0", + "name": "body-parser", + "version": "1.20.0", + "description": "Node.js body parsing middleware", + "hashes": [ + { + "alg": "SHA-512", + "content": "0df27eaba10f7062990f54165234a9aa9f90edb0d04ec408178cdf500b59eaa93e1ffdff411860f42129dfdb2cfbf4f6bf0d3e1da89d0b479c263fc344b21a2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/body-parser@1.20.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/body-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/body-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/body-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bytes@3.1.2", + "author": "TJ Holowaychuk", + "name": "bytes", + "version": "3.1.2", + "description": "Utility to parse a string bytes to bytes and vice-versa", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcd7fb4f2cd3c7a4b7c9124e6ce015efde7aafc72bdbe3a3f000b976df3048fdc1400a1e5f9f0da07c8253c3fccc690d5d2b634d28ba7f33ba174a4175c61b12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 TJ Holowaychuk \nCopyright (c) 2015 Jed Watson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bytes@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/bytes.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/bytes.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/bytes.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/depd@2.0.0", + "author": "Douglas Christopher Wilson", + "name": "depd", + "version": "2.0.0", + "description": "Deprecate all the things", + "hashes": [ + { + "alg": "SHA-512", + "content": "ede98f4e5e83a68e894573978cb471724f8594b457e7ce3b70b2849f4d0f2c081cde0da14d9660afe7b8736bfa4294a62de14fde7e72528edfb7a6af04aff98d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2018 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/depd@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dougwilson/nodejs-depd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dougwilson/nodejs-depd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dougwilson/nodejs-depd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-errors@2.0.0", + "author": "Jonathan Ong", + "name": "http-errors", + "version": "2.0.0", + "description": "Create HTTP error objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a993d4a6ecd988f911e19e3e8e2160c8d5de9f228140b45b7d44b693311960ffcc38f63b804adb2b060a740e9e0e7717556d121e2a1b4252fa22fd1b8084ee2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-errors@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/http-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/http-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/http-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/setprototypeof@1.2.0", + "author": "Wes Todd", + "name": "setprototypeof", + "version": "1.2.0", + "description": "A small polyfill for Object.setprototypeof", + "hashes": [ + { + "alg": "SHA-512", + "content": "1392c35fb5aba7ce4a8a5e5b859bf8ea3f2339e6e82aae4932660cde05467461fcc45a4f59750cb0dae53830ab928c4c11e362fd7648c2e46f6385cdc18309a7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Wes Todd\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nSPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\nOF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/setprototypeof@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wesleytodd/setprototypeof" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wesleytodd/setprototypeof/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wesleytodd/setprototypeof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/statuses@2.0.1", + "name": "statuses", + "version": "2.0.1", + "description": "HTTP status utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a9677ccffa34f53c8ec8f277a6257e002a6017d3bd199183d5595fc068a4c997eb570931b255d0b56b848bf11510604c24fdfdf8657f144f290debc170aea00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/statuses@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/statuses#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/statuses/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/statuses.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/toidentifier@1.0.1", + "author": "Douglas Christopher Wilson", + "name": "toidentifier", + "version": "1.0.1", + "description": "Convert a string of words to a JavaScript identifier", + "hashes": [ + { + "alg": "SHA-512", + "content": "a39b123ca12483f0c840d987e37574fee7ab2eba7355e764521f2d18dbda797a5fa6ec2329e9e54a8c7fd8efc14e5654b447be246eece58844cfad3c3e500744" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/toidentifier@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/toidentifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/toidentifier/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/toidentifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/on-finished@2.4.1", + "name": "on-finished", + "version": "2.4.1", + "description": "Execute a callback when a request closes, finishes, or errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "a15973920dc4340842936cddbfb209c1dfd0503e33d91c51c2991c198f29b0255c09864dab8c189d55802c733e6ebb6e26378f5a2605fc2966b83afc0a1e7e92" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 Jonathan Ong \nCopyright (c) 2014 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/on-finished@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/on-finished#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/on-finished/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/on-finished.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.10.3", + "name": "qs", + "version": "6.10.3", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "BSD 3-Clause License\n\nCopyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.10.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/raw-body@2.5.1", + "author": "Jonathan Ong", + "name": "raw-body", + "version": "2.5.1", + "description": "Get and validate the raw body of a readable stream.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aaa241b44c95812d1998f19d0853d627716b7a8aaf1b83154259ff902805ece96af7921b3a9d3f056c8cc1b76d9f8553be433c63b921090d97824fed72b0978a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2014 Jonathan Ong \nCopyright (c) 2014-2022 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/raw-body@2.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stream-utils/raw-body#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stream-utils/raw-body/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stream-utils/raw-body.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type-is@1.6.18", + "name": "type-is", + "version": "1.6.18", + "description": "Infer the content-type of a request.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e444aafdb144f1107f0c75fb8248fed58b3272cd134c8e3d89d9da3626bdcaca6e7df0955d124b2eccf4029e514f5b8932f50fa203e99af411a6d3a5d0072f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/type-is@1.6.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/type-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/type-is/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/type-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/media-typer@0.3.0", + "author": "Douglas Christopher Wilson", + "name": "media-typer", + "version": "0.3.0", + "description": "Simple RFC 6838 media type parser and formatter", + "hashes": [ + { + "alg": "SHA-512", + "content": "76afaa7a543d6a41e970e97f8145514f15483a4009d70477400bdbe11b158d2f285681630c64dcebbf702589949a49d41791f030b3a06f93be6b72b17d66a93d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/media-typer@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/media-typer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/media-typer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/media-typer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookie@0.5.0", + "author": "Roman Shtylman", + "name": "cookie", + "version": "0.5.0", + "description": "HTTP server cookie parsing and serialization", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8824e5f43aa9470acce8da6054abe4ab11b0a3eb0ecaa5f7eac7ad3361b3d315a3b8fb26204631f07193695af693ca50c7695ecf3e6047cd279c662321b4f83" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 Roman Shtylman \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cookie@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/cookie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/cookie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/cookie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookie-signature@1.0.6", + "author": "TJ Holowaychuk", + "name": "cookie-signature", + "version": "1.0.6", + "description": "Sign and unsign cookies", + "hashes": [ + { + "alg": "SHA-512", + "content": "47404e3df2c64e2b5a2a180a44e29940dea2caada20d0707d43385f272686966a982e5f96c2db0f90fc8f4d9a633995f72f11aae72d9afe702be61186125ef60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cookie-signature@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/node-cookie-signature#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/node-cookie-signature/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/node-cookie-signature.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/finalhandler@1.2.0", + "author": "Douglas Christopher Wilson", + "name": "finalhandler", + "version": "1.2.0", + "description": "Node.js final http responder", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d8ba1d54cc61823a846fadb1980aaea67a6bf1e35af1302afed174fd36d8885aa186ee16c205c3cc0514288b9b0c643cd33b1c22bafeff8303edac33b3efa09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2022 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/finalhandler@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/finalhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/finalhandler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/finalhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fresh@0.5.2", + "author": "TJ Holowaychuk", + "name": "fresh", + "version": "0.5.2", + "description": "HTTP response freshness testing", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a4c79581280c0c4a0dfaaa81d3b8c3159dc1d672d95a0c6b252404836008682ebcc35030a36653a780d6bf882ea53e6f5a034aa4f293792a7a666c91d220841" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk \nCopyright (c) 2016-2017 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fresh@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/fresh#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/fresh/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/fresh.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/merge-descriptors@1.0.1", + "author": "Jonathan Ong", + "name": "merge-descriptors", + "version": "1.0.1", + "description": "Merge objects using descriptors", + "hashes": [ + { + "alg": "SHA-512", + "content": "7028ba837fd9af58aa422eb249bb1e3355efa286bdf0dd30df58f3518ad73d7db1a8e6e61461c9d2d439bbbe07de6561ef02e8b93b1e672608ab7f60f1c369d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/merge-descriptors@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/merge-descriptors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/merge-descriptors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/merge-descriptors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-to-regexp@0.1.7", + "name": "path-to-regexp", + "version": "0.1.7", + "description": "Express style path to RegExp utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f8dc946195429402589b10984f7a2af59dc5080f5e909c48cda70ccd74edcb9b8cb0ac1a41679a0b0f423a6ebf5ebebd58f494eac11b4087b24ba0ecc041d54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-to-regexp@0.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/path-to-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/path-to-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/path-to-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/proxy-addr@2.0.7", + "author": "Douglas Christopher Wilson", + "name": "proxy-addr", + "version": "2.0.7", + "description": "Determine address of proxied request", + "hashes": [ + { + "alg": "SHA-512", + "content": "6afd4c439bf04e23080b053be4a49ffef27a6be0173f432d3fe69806a9b6445962adeec13fab1695f38b73cfbac0842bcb0c9ca92a495a6e7336460591101158" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/proxy-addr@2.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/proxy-addr#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/proxy-addr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/proxy-addr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/forwarded@0.2.0", + "name": "forwarded", + "version": "0.2.0", + "description": "Parse HTTP X-Forwarded-For header", + "hashes": [ + { + "alg": "SHA-512", + "content": "51af713611f46fca70137c916c57d726f7dd585d141cd09d7b26f6b1b8bd525fccfabdcf4ddaf3ec2bf84827d944c8e6cc433d3e1adaa9f6456c64c883738cc8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/forwarded@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/forwarded#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/forwarded/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/forwarded.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ipaddr.js@1.9.1", + "author": "whitequark", + "name": "ipaddr.js", + "version": "1.9.1", + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0a23feb4ef1a31493a07ec68cdd457d26cba14d3e6ed4e2723b1049642587f859ca437c2a998c7fbb98c0f5b747e6a467a47fc35f199574870585e26143cede" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2017 whitequark \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ipaddr.js@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/whitequark/ipaddr.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/whitequark/ipaddr.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/whitequark/ipaddr.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/range-parser@1.2.1", + "author": "TJ Holowaychuk", + "name": "range-parser", + "version": "1.2.1", + "description": "Range header field string parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "1eb82cc7ea2baa8ca09e68456ca68713a736f7a27e1d30105e8c4417a80dba944e9a6189468cb37c6ddc700bdea8206bc2bff6cb143905577f1939796a03b04a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 TJ Holowaychuk \nCopyright (c) 2015-2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/finalhandler@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/finalhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/finalhandler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/finalhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@2.2.0", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "2.2.0", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/debug@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@0.7.1", + "name": "ms", + "version": "0.7.1", + "description": "Tiny ms conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "purl": "pkg:npm/ms@0.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/guille/ms.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/guille/ms.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/guille/ms.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/statuses@1.3.1", + "name": "statuses", + "version": "1.3.1", + "description": "HTTP status utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a9677ccffa34f53c8ec8f277a6257e002a6017d3bd199183d5595fc068a4c997eb570931b255d0b56b848bf11510604c24fdfdf8657f144f290debc170aea00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/statuses@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/statuses#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/statuses/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/statuses.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/findup-sync@0.2.1", + "author": "\"Cowboy\" Ben Alman", + "name": "findup-sync", + "version": "0.2.1", + "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "baff1ad1ecec8c04fdf7391226c26dc75b1cc9e7ba8d2da20b84f9d27e8c700b9da590f9ac7b06b1dbe03be91def7852877bff6625bff1d0df2dbda9f72c69b7" + } + ], + "purl": "pkg:npm/findup-sync@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cowboy/node-findup-sync" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cowboy/node-findup-sync/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cowboy/node-findup-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@4.3.5", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "4.3.5", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@4.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fireworm@0.7.2", + "author": "Toby Ho", + "name": "fireworm", + "version": "0.7.2", + "description": "A crawling file watcher.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a379b4f3abe34a2a17e60f18caab7457c1070df714666568679ee0bd2feff1e70050b51d1a690339d07b23af3276c1cdbcbf5bd275f3a910ba24d13291e1d76" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/fireworm@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airportyh/fireworm#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airportyh/fireworm/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/airportyh/fireworm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-type@0.0.1", + "author": "Julian Gruber", + "name": "is-type", + "version": "0.0.1", + "description": "Type checking from node core", + "hashes": [ + { + "alg": "SHA-512", + "content": "630261ff3055adc27dd1a0273c133409b1ef9bb946f5aa3b94815ea936755108f88852e93390a291d694f9d1867acacc270c4ba8f1a68e3ad4ad0e8a9f7661fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/is-type@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/is-type" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/is-type/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/is-type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.debounce@3.1.1", + "author": "John-David Dalton", + "name": "lodash.debounce", + "version": "3.1.1", + "description": "The modern build of lodash’s `_.debounce` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95c989c0ca5d3c0b42840e217e2c314ed80578d01aa30ef4d7059481552a783d17245eef31720df9bbbfd852521b14f43546d9cbd83d545ae53857cf8e5fb413" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.debounce@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.flatten@3.0.2", + "author": "John-David Dalton", + "name": "lodash.flatten", + "version": "3.0.2", + "description": "The modern build of lodash’s `_.flatten` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c25cba0d72a4116e74ff29666ad9f21110759e733af3a53474becc9c9bdea5fe9bb98467809ed5411b4b7b1ae33fdb016a9a766cdddd5e1a9b67007d84f3ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.flatten@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._baseflatten@3.1.4", + "author": "John-David Dalton", + "name": "lodash._baseflatten", + "version": "3.1.4", + "description": "The modern build of lodash’s internal `baseFlatten` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c44a781977e5f893e19b4f174cbad7fca2141ad2cdec2441c8730b6ee3f2ec210d894c3cdd4710c23108d6f9ecf3c118ad2e61e769c5559a8b026f189f79f6f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._baseflatten@3.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/follow-redirects@1.15.1", + "author": "Ruben Verborgh", + "name": "follow-redirects", + "version": "1.15.1", + "description": "HTTP and HTTPS modules that follow redirects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8b00c42cfa4d1bda6edc571a52d5528956fa33ed24bd4ddd73b2cdd74705e3f990c7d34449827b8bc7b138e30c74da440badd33768e3b2f85a734bbfbc3a2cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR\nIN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/follow-redirects@1.15.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/follow-redirects/follow-redirects" + }, + { + "type": "issue-tracker", + "url": "https://github.com/follow-redirects/follow-redirects/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/follow-redirects/follow-redirects.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/forwarded@0.1.2", + "name": "forwarded", + "version": "0.1.2", + "description": "Parse HTTP X-Forwarded-For header", + "hashes": [ + { + "alg": "SHA-512", + "content": "51af713611f46fca70137c916c57d726f7dd585d141cd09d7b26f6b1b8bd525fccfabdcf4ddaf3ec2bf84827d944c8e6cc433d3e1adaa9f6456c64c883738cc8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/forwarded@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/forwarded#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/forwarded/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/forwarded.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fresh@0.3.0", + "author": "TJ Holowaychuk", + "name": "fresh", + "version": "0.3.0", + "description": "HTTP response freshness testing", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a4c79581280c0c4a0dfaaa81d3b8c3159dc1d672d95a0c6b252404836008682ebcc35030a36653a780d6bf882ea53e6f5a034aa4f293792a7a666c91d220841" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fresh@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/fresh#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/fresh/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/fresh.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gauge@2.7.4", + "author": "Rebecca Turner", + "name": "gauge", + "version": "2.7.4", + "description": "A terminal based horizontal guage", + "hashes": [ + { + "alg": "SHA-512", + "content": "d78c7892373a9640f796dc39f3d93436b3c3e9c08d4c3e825a855436907ce7e0ebb4e368667f91ba0eb1654e51bd20b8f9364fc40e409c189b41802f667e351e" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gauge@2.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/gauge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/gauge/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/gauge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-unicode@2.0.1", + "author": "Rebecca Turner", + "name": "has-unicode", + "version": "2.0.1", + "description": "Try to guess if your terminal supports unicode", + "hashes": [ + { + "alg": "SHA-512", + "content": "f117fd63cdcd05178c9f1d2017303c248990002b2d098594a657a90daf71a6bc30b6680465417487f8b9c5203adb9cc1fc8dfb12daecc12493e8e5f1c1a68825" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/has-unicode@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/has-unicode" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/has-unicode/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/has-unicode.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wide-align@1.1.5", + "author": "Rebecca Turner", + "name": "wide-align", + "version": "1.1.5", + "description": "A wide-character aware text alignment function for use on the console or with fixed width fonts.", + "hashes": [ + { + "alg": "SHA-512", + "content": "78330e45868f359e2c408bae60f0c7750bdfe20c8217dac4115ff23f119fc0f911a1dc048223145174f1fdd7b1f8c7b4c31c79dd2f8d8141da3fbcb73069439a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/wide-align@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/wide-align#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/wide-align/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/wide-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/github-url-from-git@1.5.0", + "author": "TJ Holowaychuk", + "name": "github-url-from-git", + "version": "1.5.0", + "description": "Parse a github git url and return the github repo url", + "hashes": [ + { + "alg": "SHA-512", + "content": "59639e73869123b600ca443df811e6ce3c8d9647c9146f102d79c34ec2f3fe465e7eaeea93375fa38a7a7e4618308ab56a3fa065c42cff51d08508770cf3f195" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/github-url-from-git@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/node-github-url-from-git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/node-github-url-from-git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/node-github-url-from-git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/graceful-readlink@1.0.1", + "author": "zhiyelee", + "name": "graceful-readlink", + "version": "1.0.1", + "description": "graceful fs.readlink", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2d2eeeb42e0c45e97a5d6caf0e5b7140f887d33419f5647187285e0a41b11e4a46a3630e4f95825c2a5ba7b607a00cf4e0f149078e97add53f36be4e9343af3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Zhiye Li\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/graceful-readlink@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zhiyelee/graceful-readlink" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zhiyelee/graceful-readlink/issues" + }, + { + "type": "vcs", + "url": "git://github.com/zhiyelee/graceful-readlink.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/growly@1.3.0", + "author": "Ibrahim Al-Rajhi", + "name": "growly", + "version": "1.3.0", + "description": "Simple zero-dependency Growl notifications using GNTP.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb11906346320160a7ab2ec277efa173626a318ce59b4746df425dd1b79a03ae2c44eafc0b89edf1873d579468ddabe54940d3374ba5a8ffd504a8b5fe52f283" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/growly@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/theabraham/growly#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/theabraham/growly/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/theabraham/growly.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@3.10.1", + "author": "Felix Boehm", + "name": "htmlparser2", + "version": "3.10.1", + "description": "Fast & forgiving HTML/XML/RSS parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "22089e3628d431b903a2fca828e6d4d435219b58b035813f7ee89f1281077ddd6864a64368e3414a46a5ed8d35b21c6c338f51e1768c7467b3dd69c5f547e209" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, Chris Winberry . All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/htmlparser2@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/htmlparser2#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/fb55/htmlparser2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/htmlparser2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@3.6.0", + "name": "readable-stream", + "version": "3.6.0", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-errors@1.8.1", + "author": "Jonathan Ong", + "name": "http-errors", + "version": "1.8.1", + "description": "Create HTTP error objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a993d4a6ecd988f911e19e3e8e2160c8d5de9f228140b45b7d44b693311960ffcc38f63b804adb2b060a740e9e0e7717556d121e2a1b4252fa22fd1b8084ee2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-errors@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/http-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/http-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/http-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-proxy@1.18.1", + "author": "Charlie Robbins", + "name": "http-proxy", + "version": "1.18.1", + "description": "HTTP proxying for the masses", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee6cffef6d406e72702156e7692bf50b3dc09b464b4ff501c240bdd95971857bff93f04141f3367d712540d0b6ec1546af4bb0529a6560f40cf4b9da04c47935" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\n node-http-proxy\n\n Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors.\n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-proxy@1.18.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/http-party/node-http-proxy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/http-party/node-http-proxy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/http-party/node-http-proxy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventemitter3@4.0.7", + "author": "Arnout Kazemier", + "name": "eventemitter3", + "version": "4.0.7", + "description": "EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6fb5021e2d51e30e42589f37f676054cc5fb9218978cffb5021b5ed34f812e9937cdb45fb49de6c5ff8cd6388902ade01bb4daa11846e807a056af0a8d6b0e1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Arnout Kazemier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eventemitter3@4.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/primus/eventemitter3#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/primus/eventemitter3/issues" + }, + { + "type": "vcs", + "url": "git://github.com/primus/eventemitter3.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/requires-port@1.0.0", + "author": "Arnout Kazemier", + "name": "requires-port", + "version": "1.0.0", + "description": "Check if a protocol requires a certain port number to be added to an URL.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a280e087728714dd7383271b2ef22fe3f13f6dcd3e1a74789e730391450d19645729eda8705ee454d66fb2b8ef740b9654c867867e87070c8d783372f7c8301" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/requires-port@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/requires-port" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/requires-port/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/requires-port.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istextorbinary@2.6.0", + "author": "2012+ Bevry Pty Ltd", + "name": "istextorbinary", + "version": "2.6.0", + "description": "Determine if a filename and/or buffer is text or binary. Smarter detection than the other solutions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9746516c793f01dcbf4aca3c712e37d748b32e12b283b1df0304daec6b1a1588004c11994e482b2dc26c34aa9a055f7f94eb2594d7284bb9d01eebf9444c618" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/istextorbinary@2.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/istextorbinary" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/istextorbinary/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/istextorbinary.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/editions@2.3.1", + "author": "2016+ Bevry Pty Ltd", + "name": "editions", + "version": "2.3.1", + "description": "Publish multiple editions for your JavaScript packages consistently and easily (e.g. source edition, esnext edition, es2015 edition)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8336a8fa6c67603cc8cac5ca3108bff8cd668f2feb8deb2d8e0e8e3e8613b48fb7233a76de8886662b6c97d94f0cf8931976dc4889358895a196249a825c6752" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/editions@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/editions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/editions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/editions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/errlop@2.2.0", + "author": "2018+ Benjamin Lupton", + "name": "errlop", + "version": "2.2.0", + "description": "An extended Error class that envelops a parent error, such that the stack trace contains the causation", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bae108fdfb8699ce3cf3169642ee9e649a6fdc702adb2e1009a6586c0d7405b3ced74ec5f03a91f8b35228dacf744dabbff2bda3f5fe25fed8610debd18f3c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n
  • Copyright © 2018+ Benjamin Lupton
\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/errlop@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/errlop" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/errlop/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/errlop.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@6.3.0", + "name": "semver", + "version": "6.3.0", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@6.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-tokens@1.0.3", + "author": "Simon Lydell", + "name": "js-tokens", + "version": "1.0.3", + "description": "A regex that tokenizes JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4634dcb83e318edb614246961fb745947f392fe41a56d4a83b219d67783a1c5852f5d14d0df2f2aa09b63457b65fa710a5e166b74e39d85263146e546a6784c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2016 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-tokens@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/js-tokens#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/js-tokens/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/js-tokens.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json3@3.3.3", + "author": "Kit Cambridge", + "name": "json3", + "version": "3.3.3", + "description": "A JSON polyfill for older JavaScript platforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "73bffc99b52c2a28006cb903e41d35d012b80fd2d99bb035a4d22d904c2251946920deba7b1bbf7bb6105b2b06ba7f9344a689a7c3217a633e5647d6bf8d9a08" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012-2015 Kit Cambridge.\nhttp://kitcambridge.be/\n\nCopyright (c) 2013-2015 Benjamin Tan.\nhttps://d10.github.io/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/json3@3.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://bestiejs.github.io/json3" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bestiejs/json3/issues" + }, + { + "type": "vcs", + "url": "git://github.com/bestiejs/json3.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.assignin@4.2.0", + "author": "John-David Dalton", + "name": "lodash.assignin", + "version": "4.2.0", + "description": "The lodash method `_.assignIn` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c97febc7a77f513561eec4955954883237e7cfde5ebc080315d6f5668cc2df923d992142926ce9b4ecdebf18e06d052c73bf0d478e0b5475a3b283105f2f450e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.assignin@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.clonedeep@4.5.0", + "author": "John-David Dalton", + "name": "lodash.clonedeep", + "version": "4.5.0", + "description": "The lodash method `_.cloneDeep` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f9661085db9ae215df6e0795029152a8eb59b74bfc59935c78c00eb2a7f2f74453fa67f7871f5ca641c18ba3b27718c3df9b457fee6d6daf21ee195c69a8405" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.clonedeep@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.find@4.6.0", + "author": "John-David Dalton", + "name": "lodash.find", + "version": "4.6.0", + "description": "The lodash method `_.find` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c9a459a005775eadbc17589a7d6375f9ad2b7e539e8fdde5d434147a3b37499e358763bd5090684bd6ae7868cf0e0025e01ead3c2d0dbae7212ca683410dc8b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.find@4.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.uniqby@4.7.0", + "author": "John-David Dalton", + "name": "lodash.uniqby", + "version": "4.7.0", + "description": "The lodash method `_.uniqBy` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bfcdc2f1e8249b99a120147080ec19e840ac82b4a3319ee5ab27281bc0fb3f0089fe20c2a5eba2fcfecfb00549f92d1c36a59c776d41e26e25756fa693588c3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.uniqby@4.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/md5-hex@1.3.0", + "author": "Sindre Sorhus", + "name": "md5-hex", + "version": "1.3.0", + "description": "Create a MD5 hash with hex encoding", + "hashes": [ + { + "alg": "SHA-512", + "content": "d072dfcc94d9efbd3b54134cd7276be6c4dbf8864b866538bb64d503e11e9df9ff11de36fe09f5d2c99b00f8ae126fe33608ef58a52230d8a1a8943a7e5bacf7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/md5-hex@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/md5-hex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/md5-hex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/md5-hex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@0.7.3", + "name": "ms", + "version": "0.7.3", + "description": "Tiny milisecond conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Zeit, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ms@0.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zeit/ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zeit/ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zeit/ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mustache@2.3.2", + "author": "mustache.js Authors", + "name": "mustache", + "version": "2.3.2", + "description": "Logic-less {{mustache}} templates with JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a930dc1d42c633dcefd2052d6a27fa37b2a509e7049bf206f4a6e97c08ed12e7a6fd63600b9bccc27ec8cf5eca8615fa0d0640f066e64802386c648d3781855" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2009 Chris Wanstrath (Ruby)\nCopyright (c) 2010-2014 Jan Lehnardt (JavaScript)\nCopyright (c) 2010-2015 The mustache.js community\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mustache@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/janl/mustache.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/janl/mustache.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/janl/mustache.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-notifier@5.4.5", + "author": "Mikael Brevik", + "name": "node-notifier", + "version": "5.4.5", + "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b556c7b3b0f24cbb733a237bf22ccb03ce7346a07d36f1179007f4d78571de3b52be7ff1065e9b47c65889f8fe745705aca236d61b92420259e99b4bdc1e077d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Mikael Brevik\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-notifier@5.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikaelbr/node-notifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikaelbr/node-notifier/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-wsl@1.1.0", + "author": "Sindre Sorhus", + "name": "is-wsl", + "version": "1.1.0", + "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)", + "hashes": [ + { + "alg": "SHA-512", + "content": "81fca025867680b4c39666d6308d021363309c5cd237fd9265f90c948b42e0afc9065b165430746cee9786a718d7761713b88c700267cd30898cf89378927433" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-wsl@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-wsl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-wsl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-wsl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shellwords@0.1.1", + "author": "Jimmy Cuadra", + "name": "shellwords", + "version": "0.1.1", + "description": "Manipulate strings according to the word parsing rules of the UNIX Bourne shell.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc5c1251f42fab26e2202c19639f8301620f2cab163b7d50f752522a5dd462ff8ae5cd9044fce7d2acde73a40fbb541cf5e1d822d88fdcd749a8d56a7ad600c3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011 by Jimmy Cuadra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/shellwords@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jimmycuadra/shellwords" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jimmycuadra/shellwords/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jimmycuadra/shellwords.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npmlog@4.1.2", + "author": "Isaac Z. Schlueter", + "name": "npmlog", + "version": "4.1.2", + "description": "logger for npm", + "hashes": [ + { + "alg": "SHA-512", + "content": "dae52a6b3b8a95369223f742f00ce2714724efe22b11a3a737f7b48dddd7b6dd4a706a70c77d2fe7498bee83f2aff87d6cbdc4e1a65c715c29c0ffb95bd56392" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npmlog@4.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npmlog#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npmlog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npmlog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-component@0.0.3", + "name": "object-component", + "version": "0.0.3", + "description": "Object utils.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b4b0ddda827561d9264d10819cd0dd57e19e4ad097856c606b9ee669b31b948795cb174067bd690c8d15e8ff318a2ddfde821bcd20a731d694249948d7232ac" + } + ], + "purl": "pkg:npm/object-component@0.0.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/printf@0.2.5", + "author": "David Worms", + "name": "printf", + "version": "0.2.5", + "description": "Full implementation of the `printf` family in pure JS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c757a58feb152fcb8da053174dc8f40a082f63dfa573a5543c66da1f7ead03ebe3ee82236c67416a06569d5d73c5416b610c3080f4ebc622c8c48a032dce739" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2008-2010, SARL Adaltas.\nAll rights reserved.\n\nRedistribution and use of this software in source and binary forms, with or\nwithout modification, are permitted provided that the following conditions\nare met:\n\n - Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n - Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n - Neither the name of SARL Adaltas nor the names of its contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission of SARL Adaltas.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/printf@0.2.5", + "externalReferences": [ + { + "type": "website", + "url": "http://www.adaltas.com/projects/node-printf" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wdavidw/node-printf/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wdavidw/node-printf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/process-nextick-args@1.0.7", + "name": "process-nextick-args", + "version": "1.0.7", + "description": "process.nextTick but always with args", + "hashes": [ + { + "alg": "SHA-512", + "content": "de8b943a9421b60adb39ad7b27bfaec4e4e92136166863fbfc0868477f80fbfd5ef6c92bcde9468bf757cc4632bdbc6e6c417a5a7db2a6c7132a22891459f56a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# Copyright (c) 2015 Calvin Metcalf\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\n**THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.**\n" + } + } + } + ], + "purl": "pkg:npm/process-nextick-args@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/process-nextick-args" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/proxy-addr@1.1.5", + "author": "Douglas Christopher Wilson", + "name": "proxy-addr", + "version": "1.1.5", + "description": "Determine address of proxied request", + "hashes": [ + { + "alg": "SHA-512", + "content": "6afd4c439bf04e23080b053be4a49ffef27a6be0173f432d3fe69806a9b6445962adeec13fab1695f38b73cfbac0842bcb0c9ca92a495a6e7336460591101158" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/proxy-addr@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/proxy-addr#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/proxy-addr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/proxy-addr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ipaddr.js@1.4.0", + "author": "whitequark", + "name": "ipaddr.js", + "version": "1.4.0", + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0a23feb4ef1a31493a07ec68cdd457d26cba14d3e6ed4e2723b1049642587f859ca437c2a998c7fbb98c0f5b747e6a467a47fc35f199574870585e26143cede" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011 Peter Zotov \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/ipaddr.js@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/whitequark/ipaddr.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/whitequark/ipaddr.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/whitequark/ipaddr.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qunitjs@1.23.1", + "author": "jQuery Foundation and other contributors", + "name": "qunitjs", + "version": "1.23.1", + "description": "An easy-to-use JavaScript Unit Testing framework.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f199b50bc701bac2643d9e8e91255936fe0d8ee2ec9c00dd4ad345430fa9e8c141f20ddf0dcc6e844a6e1639427932bb72e3841097af8d1c06a562f8bfa5a93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright jQuery Foundation and other contributors, https://jquery.org/\n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/jquery/qunit\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nAll files located in the node_modules directory are externally maintained\nlibraries used by this software which have their own licenses; we\nrecommend you read them, as their terms may differ from the terms above.\n" + } + } + } + ], + "purl": "pkg:npm/qunitjs@1.23.1", + "externalReferences": [ + { + "type": "website", + "url": "https://qunitjs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/qunit/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jquery/qunit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator@0.8.46", + "author": "Ben Newman", + "name": "regenerator", + "version": "0.8.46", + "description": "Source transformer enabling ECMAScript 6 generator functions (yield) in JavaScript-of-today (ES5)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c58403ec3a727f5086421b5fa22122a27338e72d6690e116ad3e483905921c833d26dc2fadc58dbc5341fb8a3f9f2d2003998fa41e3f4765f7fa08babd86b54" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "content": "BSD License\n\nFor \"regenerator\" software\n\nCopyright (c) 2014, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n\t*\tRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n\t*\tRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/regenerator@0.8.46", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/facebook/regenerator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/regenerator/issues" + }, + { + "type": "vcs", + "url": "git://github.com/facebook/regenerator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.9.6", + "author": "Ben Newman", + "name": "regenerator-runtime", + "version": "0.9.6", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f463f249e1586eb3230e77fa36e5ade3754a8dfdb0bce4416c6a82fd3aa9b2fcee1e7c287ec61a7bca3d8410eb23f7be2abcc91c5bc0305332758c1fcc6f10b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-runtime@0.9.6", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/send@0.14.2", + "author": "TJ Holowaychuk", + "name": "send", + "version": "0.14.2", + "description": "Better streaming static file server with Range and conditional-GET support", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfa3b7f5257803a963e130402dcd2d00c9a24f00a50b6369a7ac2246fcf1ab2ac7df24e2630026595c81d9ad1afc3dc84824151d8fe5f953bff49568e99b9b7c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/send@0.14.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/send#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/send/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/send.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/destroy@1.0.4", + "author": "Jonathan Ong", + "name": "destroy", + "version": "1.0.4", + "description": "destroy a stream if possible", + "hashes": [ + { + "alg": "SHA-512", + "content": "dac246253697208691d70e22252368374867318ec6a5cfe7f03e2a482270f10a855977fb72e0209c41f1069c1e69570f7af0b69772a98d80b1dcdca941081a26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/destroy@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stream-utils/destroy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stream-utils/destroy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stream-utils/destroy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/etag@1.7.0", + "name": "etag", + "version": "1.7.0", + "description": "Create simple ETags", + "hashes": [ + { + "alg": "SHA-512", + "content": "6882f9171ee66b055adf4d1a976067104e2236fa35a844f12eb3c8fe8d392fbcfa828edf0b0d49e844266cae05989d804bb920545fca1195ae7c17dd0a531c3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/etag@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/etag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/etag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/etag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-errors@1.5.1", + "author": "Jonathan Ong", + "name": "http-errors", + "version": "1.5.1", + "description": "Create HTTP error objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a993d4a6ecd988f911e19e3e8e2160c8d5de9f228140b45b7d44b693311960ffcc38f63b804adb2b060a740e9e0e7717556d121e2a1b4252fa22fd1b8084ee2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-errors@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/http-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/http-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/http-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inherits@2.0.3", + "name": "inherits", + "version": "2.0.3", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "hashes": [ + { + "alg": "SHA-512", + "content": "93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/inherits@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/inherits#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/inherits/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/inherits.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/setprototypeof@1.0.2", + "author": "Wes Todd", + "name": "setprototypeof", + "version": "1.0.2", + "description": "A small polyfill for Object.setprototypeof", + "hashes": [ + { + "alg": "SHA-512", + "content": "1392c35fb5aba7ce4a8a5e5b859bf8ea3f2339e6e82aae4932660cde05467461fcc45a4f59750cb0dae53830ab928c4c11e362fd7648c2e46f6385cdc18309a7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Wes Todd\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nSPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\nOF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/setprototypeof@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wesleytodd/setprototypeof" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wesleytodd/setprototypeof/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wesleytodd/setprototypeof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime@1.3.4", + "author": "Robert Kieffer", + "name": "mime", + "version": "1.3.4", + "description": "A comprehensive library for mime-type mapping", + "hashes": [ + { + "alg": "SHA-512", + "content": "c74567f2ca48fb0b89d4ee92ee09db69083c3f187834d1dbeca4883661162a23c4e1128ea65be28e7f8d92662699180febc99cef48f611b793151b2bb306907a" + } + ], + "purl": "pkg:npm/mime@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broofa/node-mime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broofa/node-mime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broofa/node-mime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shelljs@0.3.0", + "author": "Artur Adib", + "name": "shelljs", + "version": "0.3.0", + "description": "Portable Unix shell commands for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "372d0a3787724fc652084d1faed71b0091a833f1d302ba723e47a58b5ff4d1a61f9b4b1b0ff1a4ff8c7b3760cff50286a41b22407ee7eaba66d4befd46dbe211" + } + ], + "licenses": [ + { + "license": { + "name": "BSD*", + "text": { + "content": "Copyright (c) 2012, Artur Adib \nAll rights reserved.\n\nYou may use this project under the terms of the New BSD license as follows:\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Artur Adib nor the\n names of the contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL ARTUR ADIB BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/shelljs@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/arturadib/shelljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/arturadib/shelljs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/arturadib/shelljs.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/socket.io@1.7.4", + "name": "socket.io", + "version": "1.7.4", + "description": "node.js realtime framework server", + "hashes": [ + { + "alg": "SHA-512", + "content": "aca318fd4ee00666c78f0ae58dc3c7cbeb845d9e7def75af3b60eba282fae37c35476e12655cec9a1bcd9891636158402f8cbbc2b649252ff39d47e9d1559f2b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Automattic \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socket.io@1.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/socket.io#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/socket.io/issues" + }, + { + "type": "vcs", + "url": "git://github.com/socketio/socket.io.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-assign@4.1.0", + "author": "Sindre Sorhus", + "name": "object-assign", + "version": "4.1.0", + "description": "ES2015 Object.assign() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-assign@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/object-assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/object-assign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/object-assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socket.io-adapter@0.5.0", + "name": "socket.io-adapter", + "version": "0.5.0", + "description": "Default socket.io in-memory adapter class.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce662f94525acbdb24b78ca4d4c7df13da7ddc72af42dcb2d012d9e5d44cef76ce5c52573595aaf2a655758e39eac2dac5d2ba7c71a267b825c73aafcf01b393" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Guillermo Rauch \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socket.io-adapter@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-adapter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-adapter/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/socket.io-adapter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socket.io-parser@2.3.1", + "name": "socket.io-parser", + "version": "2.3.1", + "description": "socket.io protocol parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4153e03221388a901650785b0232691830c034a048b6ee7a275181800dc0347c65a5fc3290a4b0f1d2a18f8c376ba15a95c7c6371310c43f1e31129e34cbb03" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Guillermo Rauch \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socket.io-parser@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/socket.io-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-emitter@1.1.2", + "name": "component-emitter", + "version": "1.1.2", + "description": "Event emitter", + "hashes": [ + { + "alg": "SHA-512", + "content": "45ddec7ba401fac3b54f0a998ec710aeeae910f21f3b4ff26274a29fa43fac3de63aeb47bd4ac202126e6f7afdd2e35bf9211206e134418a01f7461d7dab6c46" + } + ], + "purl": "pkg:npm/component-emitter@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/emitter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/emitter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/emitter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json3@3.3.2", + "author": "Kit Cambridge", + "name": "json3", + "version": "3.3.2", + "description": "A modern JSON implementation compatible with nearly all JavaScript platforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "73bffc99b52c2a28006cb903e41d35d012b80fd2d99bb035a4d22d904c2251946920deba7b1bbf7bb6105b2b06ba7f9344a689a7c3217a633e5647d6bf8d9a08" + } + ], + "purl": "pkg:npm/json3@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "http://bestiejs.github.io/json3" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bestiejs/json3/issues" + }, + { + "type": "vcs", + "url": "git://github.com/bestiejs/json3.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/socket.io-client@1.7.4", + "name": "socket.io-client", + "version": "1.7.4", + "description": "[![Build Status](https://secure.travis-ci.org/socketio/socket.io-client.svg?branch=master)](http://travis-ci.org/socketio/socket.io-client) [![Dependency Status](https://david-dm.org/socketio/socket.io-client.svg)](https://david-dm.org/socketio/socket.io-client) [![devDependency Status](https://david-dm.org/socketio/socket.io-client/dev-status.svg)](https://david-dm.org/socketio/socket.io-client#info=devDependencies) ![NPM version](https://badge.fury.io/js/socket.io-client.svg) ![Downloads](http://img.shields.io/npm/dm/socket.io-client.svg?style=flat) [![](http://slack.socket.io/badge.svg?)](http://slack.socket.io)", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd6f71afd5f24c97a3152fffec635998b4cb91448072f392c515d786ba2357eef06e84c507c0aebcad540425b736207692aca2d21f5c4dec83edd5e375477d8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Guillermo Rauch\n\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/socket.io-client@1.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-client#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/socket.io-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-array@0.1.4", + "author": "Raynos", + "name": "to-array", + "version": "0.1.4", + "description": "Turn an array like into an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e155d4a1403ff8324e335cdae82106490be029df380b703bb011d7262eff4208eef7356a1c9100f0c949d6fe6f155ff10495f2fa15c631ec47aeb4de07240e8" + } + ], + "purl": "pkg:npm/to-array@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/to-array" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/to-array/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/to-array.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socket.io-parser@2.3.2", + "name": "socket.io-parser", + "version": "2.3.2", + "description": "socket.io protocol parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4153e03221388a901650785b0232691830c034a048b6ee7a275181800dc0347c65a5fc3290a4b0f1d2a18f8c376ba15a95c7c6371310c43f1e31129e34cbb03" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Guillermo Rauch \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socket.io-parser@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/socket.io-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spawn-args@0.2.0", + "author": "Kai Davenport", + "name": "spawn-args", + "version": "0.2.0", + "description": "Turn a string of command line options into an array for child_process.spawn", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef70689e24037115a09cb01ffecb8a1fa5791f9e2077528bcf060df4507a27f7afa93577de1b47f71c15ff80477a4fbefa3cf1a5595940a29992ab2d3d03e642" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Kai Davenport\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/spawn-args@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/binocarlos/spawn-args" + }, + { + "type": "issue-tracker", + "url": "https://github.com/binocarlos/spawn-args/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/binocarlos/spawn-args.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-correct@1.0.2", + "author": "Kyle E. Mitchell", + "name": "spdx-correct", + "version": "1.0.2", + "description": "correct invalid SPDX identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e61c516c210ae1c25e2e3d4611510b22442b788f8f5662cfd0e9562577b5b64ec170f8f50cc837732938b24dc61daac2ada524965a28c570f6a362e234c2d3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "SPDX:Apache-2.0\n\nApache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n(b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n(c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n(d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\nYou may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n" + } + } + } + ], + "purl": "pkg:npm/spdx-correct@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kemitchell/spdx-correct.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kemitchell/spdx-correct.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kemitchell/spdx-correct.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-license-ids@1.2.2", + "author": "Shinnosuke Watanabe", + "name": "spdx-license-ids", + "version": "1.2.2", + "description": "A list of SPDX license identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ad97606b1623345f7300358823dc29328318519abf668bac617a36dd3bdeb49c5e840c90294d8a67d014270ca96734150b2a208dd67df0f440641caf195a0fa" + } + ], + "licenses": [ + { + "license": { + "id": "Unlicense", + "text": { + "content": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \n" + } + } + } + ], + "purl": "pkg:npm/spdx-license-ids@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shinnn/spdx-license-ids#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shinnn/spdx-license-ids/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shinnn/spdx-license-ids.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-expression-parse@1.0.4", + "author": "Kyle E. Mitchell", + "name": "spdx-expression-parse", + "version": "1.0.4", + "description": "parse SPDX license expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT AND CC-BY-3.0)", + "text": { + "content": "The MIT License\n\nCopyright (c) 2015 Kyle E. Mitchell & other authors listed in AUTHORS\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/spdx-expression-parse@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kemitchell/spdx-expression-parse.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kemitchell/spdx-expression-parse.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kemitchell/spdx-expression-parse.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/styled_string@0.0.1", + "author": "Toby Ho", + "name": "styled_string", + "version": "0.0.1", + "description": "Print styled text with a StyledString object that has an interface similar to String.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d4d8a66207a55b3e43b6b464aa43d9fde99b2d50f8d6ed7e2c18ee95da6d66c88425b97d29d4e97c06b03f97afc47acaa132a5ce217b3770934ecb552e53604" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/styled_string@0.0.1" + }, + { + "type": "library", + "bom-ref": "pkg:npm/tap-parser@5.4.0", + "author": "James Halliday", + "name": "tap-parser", + "version": "5.4.0", + "description": "parse the test anything protocol", + "hashes": [ + { + "alg": "SHA-512", + "content": "048b08686aafeee4d08135b528b4cc34f48441fe330c33e060e05176039fb81f8914e2d105f12ee9c2dafcabccbe6aa082ed452970df8ad8cbc2cab8f36ed1bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tap-parser@5.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/tap-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/tap-parser/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/tap-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tempfile@1.1.1", + "author": "Sindre Sorhus", + "name": "tempfile", + "version": "1.1.1", + "description": "Get a random temp file path", + "hashes": [ + { + "alg": "SHA-512", + "content": "3634f5d9f5baa5210acf57957000e068a7de33e5d9e3ecd26aa573e3a5c7efe0a213071e967c2d1964518c5d69fb1c96d8f56028a292d94530d4bcd17a59edc6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tempfile@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/tempfile#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/tempfile/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/tempfile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uuid@2.0.3", + "author": "Robert Kieffer", + "name": "uuid", + "version": "2.0.3", + "description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3483470ea0644e4932081cb4705c8d56a4d3cf8a1158522220f31674fd4bd69e826a7ce52fdb45e0554dbe104c5691369b49f64b9868d8676cd10e91b29bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2010-2012 Robert Kieffer\nMIT License - http://opensource.org/licenses/mit-license.php\n" + } + } + } + ], + "purl": "pkg:npm/uuid@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/node-uuid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/node-uuid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/defunctzombie/node-uuid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ultron@1.1.1", + "author": "Arnout Kazemier", + "name": "ultron", + "version": "1.1.1", + "description": "Ultron is high-intelligence robot. It gathers intel so it can start improving upon his rudimentary design", + "hashes": [ + { + "alg": "SHA-512", + "content": "50811704d79898aa6d587eb3f199ea4de4bc7d5ef8cc6d3f79153d546929cf3f8b20936cf16ff333f2feedcb42911ae06cd9e7474c71c386ca3abd1c5b43743a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ultron@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/ultron" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/ultron/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/ultron.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/underscore.string@2.4.0", + "name": "underscore.string", + "version": "2.4.0", + "description": "String manipulation extensions for Underscore.js javascript library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb191a6ee09a2019f37c8bd7de407142a0acd1aaff6df2700e71441c9526fd9ad15614f7208b5d445e5c6630112f3127c9062d21486c6762c6da3dc789d14e15" + } + ], + "purl": "pkg:npm/underscore.string@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "http://epeli.github.com/underscore.string/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epeli/underscore.string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epeli/underscore.string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wtf-8@1.0.1", + "author": "Mathias Bynens", + "name": "wtf-8", + "version": "1.0.1", + "description": "A well-tested WTF-8 encoder/decoder written in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a80f8a631a79f95979ce78e9a33a112c11184e815059e358a7783752b2dec473c2ae48f935757e6aad6657acba4a29b7d7155505fbedcc18c67906e60b9743e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/wtf-8@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/wtf8" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/wtf-8/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/wtf-8.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmldom@0.1.31", + "author": "jindw", + "name": "xmldom", + "version": "0.1.31", + "description": "A W3C Standard XML DOM(Level2 CORE) implementation and parser(DOMParser/XMLSerializer).", + "hashes": [ + { + "alg": "SHA-512", + "content": "c92dae25f95542cea7f82ca31e86819954aa2037af4c05abccc9a31b519cee1d6a43bb95a3336110f240c195d6c8643f19a7e8ddf0b0adc6a891eccb3eea55c9" + } + ], + "licenses": [ + { + "license": { + "name": "(LGPL-2.0 or MIT)", + "text": { + "content": "You can choose any one of those:\n\nThe MIT License (MIT):\n\nlink:http://opensource.org/licenses/MIT\n\nLGPL:\nhttp://www.gnu.org/licenses/lgpl.html\n" + } + } + } + ], + "purl": "pkg:npm/xmldom@0.1.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xmldom/xmldom" + }, + { + "type": "issue-tracker", + "url": "http://github.com/jindw/xmldom/issues" + }, + { + "type": "vcs", + "url": "git://github.com/xmldom/xmldom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@3.32.0", + "author": "Alex Ford", + "name": "yargs", + "version": "3.32.0", + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@3.32.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bcoe/yargs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcoe/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/bcoe/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cliui@3.2.0", + "author": "Ben Coe", + "name": "cliui", + "version": "3.2.0", + "description": "easily create complex multi-column command-line-interfaces", + "hashes": [ + { + "alg": "SHA-512", + "content": "e051be4521bd0cbeee130454657667dd24b7e038833dfccfd153a2130b545a513e011d84220fa14b2beb2205147e176047f52401e5b640781e3fe856ad7b3b8d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cliui@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/cliui#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/cliui/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/cliui.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ericmcornelius/ease@0.5.5", + "author": "Eric Cornelius", + "group": "@ericmcornelius", + "name": "ease", + "version": "0.5.5", + "description": "Simple babel transpilation, istanbul code coverage, mocha unit testing, and webpack building", + "hashes": [ + { + "alg": "SHA-512", + "content": "6aaecb2ca7840bdb2ad549abb4b427ee03423abad27234061b9817d417ef2c73176e049d347595257a28654ea52e272311bfda12ad8420610becc8bb5d50c778" + } + ], + "purl": "pkg:npm/%40ericmcornelius/ease@0.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ericmcornelius/ease#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ericmcornelius/ease/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ericmcornelius/ease.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/cli@7.4.4", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "cli", + "version": "7.4.4", + "description": "Babel command line.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/cli@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-cli" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.20.0", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.20.0", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.20.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.6.0", + "author": "Thorsten Lorenz", + "name": "convert-source-map", + "version": "1.6.0", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e41d8cfe3dcd5888ffa8bb9c826903cac0978b15fc974f7d4f6766cdd5a8ec062208b3202bee376aeee9f31dfb89652f4b5aaf5f146095df67f4d6b668548c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/convert-source-map@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/convert-source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/convert-source-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/convert-source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-readdir-recursive@1.1.0", + "author": "Jonathan Ong", + "name": "fs-readdir-recursive", + "version": "1.1.0", + "description": "Recursively read a directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "fffc9fc666006b3aecc9bfeb81e6033455c54ee3d84c6622ae9e501c5487f21fcb68d5283f96d001ada292cb5d2b53d1fdb15dd4222540ba54abafeee9455f4b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-readdir-recursive@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fs-utils/fs-readdir-recursive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fs-utils/fs-readdir-recursive/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fs-utils/fs-readdir-recursive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@7.1.4", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "7.1.4", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n## Glob Logo\n\nGlob's logo created by Tanya Brassie , licensed\nunder a Creative Commons Attribution-ShareAlike 4.0 International License\nhttps://creativecommons.org/licenses/by-sa/4.0/\n" + } + } + } + ], + "purl": "pkg:npm/glob@7.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.0.4", + "author": "Isaac Z. Schlueter", + "name": "minimatch", + "version": "3.0.4", + "description": "a glob matcher in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimatch@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minimatch/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/minimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash@4.17.11", + "author": "John-David Dalton", + "name": "lodash", + "version": "4.17.11", + "description": "Lodash modular utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash@4.17.11", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mkdirp@0.5.1", + "author": "James Halliday", + "name": "mkdirp", + "version": "0.5.1", + "description": "Recursively mkdir, like `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mkdirp@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-mkdirp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-mkdirp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/substack/node-mkdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/output-file-sync@2.0.1", + "author": "Shinnosuke Watanabe", + "name": "output-file-sync", + "version": "2.0.1", + "description": "Synchronously write a file and create its ancestor directories if needed", + "hashes": [ + { + "alg": "SHA-512", + "content": "b902e5725aeee31a428beb5fb3cd25dd0176e0a2fcd57e7b10b34ccbb5bf768c7e253b7151fd5b2f243cf7af1f142992aaa6e89235b4927f9604894efab4a436" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright 2017 - 2018 Shinnosuke Watanabe\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/output-file-sync@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shinnn/output-file-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shinnn/output-file-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shinnn/output-file-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/graceful-fs@4.1.15", + "name": "graceful-fs", + "version": "4.1.15", + "description": "A drop-in replacement for fs, making various improvements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f41ca1b2c4767cf56c3598f8efca9451b29f98bd3eb790435728d286dc9964b88aed90c002b1457e8a723938f4334e70136b493e2b00e224e79d79766283ef38" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/graceful-fs@4.1.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-graceful-fs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-graceful-fs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/node-graceful-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/slash@2.0.0", + "author": "Sindre Sorhus", + "name": "slash", + "version": "2.0.0", + "description": "Convert Windows backslash paths to slash paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd360347bc56b78748a95d896ae26bf8425e5b7e7a4578a31de5253bef1d8c9fae0573e7f3fd9da7305cf32421879f37b15bdcf42bc501e4158228ec1fe3cd36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/slash@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/slash#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/slash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/slash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/code-frame@7.0.0", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "code-frame", + "version": "7.0.0", + "description": "Generate errors that contain a code frame that point to source locations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1bfdbfdeea88e31cd09748daa5bce9df2e2d5e0dd228ec1204edfe228b03a68ceac4c74096c77cddd969f927fb5e21d08abe8e285d3e2f65e42a83682d2d39bf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-code-frame" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/highlight@7.0.0", + "author": "suchipi", + "group": "@babel", + "name": "highlight", + "version": "7.0.0", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "hashes": [ + { + "alg": "SHA-512", + "content": "05775f4f8b3e76c44790e42f3b131925180a4f40791bc55c65d617a5cb9f166f8a948cd3e0c2962ae4a1e37886d549d93bf9cd0a365078332c4f3a67730b51ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/highlight@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-highlight" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esutils@2.0.2", + "name": "esutils", + "version": "2.0.2", + "description": "utility box for ECMAScript language tools", + "hashes": [ + { + "alg": "SHA-512", + "content": "915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea" + } + ], + "purl": "pkg:npm/esutils@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/esutils" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/esutils/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/esutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-tokens@4.0.0", + "author": "Simon Lydell", + "name": "js-tokens", + "version": "4.0.0", + "description": "A regex that tokenizes JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4634dcb83e318edb614246961fb745947f392fe41a56d4a83b219d67783a1c5852f5d14d0df2f2aa09b63457b65fa710a5e166b74e39d85263146e546a6784c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-tokens@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/js-tokens#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/js-tokens/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/js-tokens.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/core@7.4.5", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "core", + "version": "7.4.5", + "description": "Babel compiler core.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4b21bd5e2fc00f332f75fc8316fb7d5c92b7c1338c82a0b695ce80e165429233872ed4bd67222772c640a0ccf020ac2e56133dfa20f12bfde49e485f69227fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/core@7.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-core" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/generator@7.4.4", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "generator", + "version": "7.4.4", + "description": "Turns an AST into code.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d0eec55434c733f5645011a8d64f4546965c434b1d2dc7450663c6f7801cb3830cc4e431c745f273d49e3da7d032a71fe43023dc8584b18a7ba29ce55000391" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/generator@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/types@7.4.4", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "types", + "version": "7.4.4", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "abe324b91c2d8c6ea1a2cdb2524072e0a4784513c08749e4f07e66d114909bed1bcf54f770d656171c4d9e9ec032b2b773df81f854563ecb3e79034d449cbb2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/types@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-types" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helpers@7.4.4", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "helpers", + "version": "7.4.4", + "description": "Collection of helper functions used by Babel transforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "25fe5afab6eb2e847878d7549a716ef1c37978d253eaa75374e839207233abced6c32470f4fc20b8b14e598824b4dffad083f87e00d46b026fb3b3e3408cc42d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helpers@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/template@7.4.4", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "template", + "version": "7.4.4", + "description": "Generate an AST from a string template.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc56aba295943e046b8c1c924a53b085304f0e228295b94fad7dd304fac39cbe33c8dd7b46be89c279a9b1accaf23b8bc2ff10b1fe9f74e74397a78d561d1e74" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/template@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/parser@7.4.5", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "parser", + "version": "7.4.5", + "description": "A JavaScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbad9b55605ee74ba5a89c53885eac8904663b9b170a61190c0bd4662bbcebb535d1453040523b423888fcc81f597917f7ae9aa7dacc8a6b35adf124d39af400" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/parser@7.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/traverse@7.4.5", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "traverse", + "version": "7.4.5", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd7d07181f23bde426fd4e60564b5e477f572e74daa5cab47c7ac67d38d12122e5b1c81bbb8d3433e6b86897081deb2d4503c922888b643cc6ba4f7d9c95e2ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/traverse@7.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-function-name@7.1.0", + "group": "@babel", + "name": "helper-function-name", + "version": "7.1.0", + "description": "Helper function to change the property 'name' of every function", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd0542fa4e9828e6be60e41ea57aa9614ddd199278c5d2a2b39d49b192cbac7d0d87dcd9e06b7dae2e6241eaf366fece7c694c03e69a1f7c586905f0af856401" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-get-function-arity@7.0.0", + "group": "@babel", + "name": "helper-get-function-arity", + "version": "7.0.0", + "description": "Helper function to get function arity", + "hashes": [ + { + "alg": "SHA-512", + "content": "cabe1eb017a0dadd40e30d42f3ea85aadfcc5aa49e19569893f12a0a1f1c58bde254dcb933278532d579db84d253b867d2a713d6ea1fc0ecf592e453566c2a11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-get-function-arity@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-split-export-declaration@7.4.4", + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.4.4", + "description": ">", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfbac07b1a6250858be896b7a327dda166c4a6b3db60492afff7b62f16b63b40eecdb1f1ab843ec25bed4dacb9719879048f723f00be8fc220ec11bbd196a5cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@4.1.1", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "4.1.1", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, \nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial \nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.1", + "name": "ms", + "version": "2.1.1", + "description": "Tiny millisecond conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Zeit, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ms@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zeit/ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zeit/ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zeit/ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json5@2.1.0", + "author": "Aseem Kishore", + "name": "json5", + "version": "2.1.0", + "description": "JSON for humans.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4412eb88ee869dd1de9cd8f72b4d12e82c7d8936e23f689c47b154f685514ae9f287bbe31738d761cf3ccd0256f725731eb8dd68fa40d4efc7d5d581fa56629" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2012-2018 Aseem Kishore, and [others].\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n[others]: https://github.com/json5/json5/contributors\n" + } + } + } + ], + "purl": "pkg:npm/json5@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://json5.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/json5/json5/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/json5/json5.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist@1.2.0", + "author": "James Halliday", + "name": "minimist", + "version": "1.2.0", + "description": "parse argument options", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c8e79386f0dd826a6336ddc8188db0f5873df3bef94186ef8f42c6cea9782bb95e0e27ade9dae8e571398c6b413ab0c34266c2df9179ff2b820ba69132f3f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/minimist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/minimist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/minimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve@1.11.0", + "author": "James Halliday", + "name": "resolve", + "version": "1.11.0", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c1a6eb98b98e6316c962fc922cd6895dc3a7ce402062a2886a59983fda189a3b26d739fb789689eff39b8338a5dd7fcae1c8ad79f5cc54e5c0dc2bf34a93ccf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve@1.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-parse@1.0.6", + "author": "Javier Blanco", + "name": "path-parse", + "version": "1.0.6", + "description": "Node.js path.parse() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c32733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Javier Blanco\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-parse@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jbgutierrez/path-parse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jbgutierrez/path-parse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jbgutierrez/path-parse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@5.7.0", + "name": "semver", + "version": "5.7.0", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@5.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-annotate-as-pure@7.0.0", + "group": "@babel", + "name": "helper-annotate-as-pure", + "version": "7.0.0", + "description": "Helper function to annotate paths and nodes with #__PURE__ comment", + "hashes": [ + { + "alg": "SHA-512", + "content": "76e391a54898ac4a73288a29ea235b8e7c0a2c02a7278edcb13c91002c849968f441d52b9b96aa34918749211049402f356d288d7d1d3a62bd75976ebe47de5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-annotate-as-pure@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.1.0", + "group": "@babel", + "name": "helper-builder-binary-assignment-operator-visitor", + "version": "7.1.0", + "description": "Helper function to build binary assignment operator visitors", + "hashes": [ + { + "alg": "SHA-512", + "content": "c854346021e822a6ab97c04247004bf2e95851a669cf76cdb00ee815ea40cde7bef3ff889ad0035cd3a63b9bc9bec3df7f7aa2fa1be9918fcd6014eb05081d37" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-explode-assignable-expression@7.1.0", + "group": "@babel", + "name": "helper-explode-assignable-expression", + "version": "7.1.0", + "description": "Helper function to explode an assignable expression", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b201802c42607cd2335f8386da02d2de5804077c7162478f37af314af818444e51996900bd6ec7ebba07d70c26d11cb41b200ed4e4dc6184ec4dee9fdd58872" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-explode-assignable-expression@7.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-builder-react-jsx@7.3.0", + "group": "@babel", + "name": "helper-builder-react-jsx", + "version": "7.3.0", + "description": "Helper function to build react jsx", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-builder-react-jsx@7.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-call-delegate@7.4.4", + "group": "@babel", + "name": "helper-call-delegate", + "version": "7.4.4", + "description": "Helper function to call delegate", + "hashes": [ + { + "alg": "SHA-512", + "content": "471f5346608210fd2959abbd81f47ab9b71b6d7de755ce0898d635e377ed0bbd23aca752bf9ad2db4cb3d9c9828a50f385ec701994373c5c0e2ca7b70bfe5a12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-call-delegate@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-hoist-variables@7.4.4", + "group": "@babel", + "name": "helper-hoist-variables", + "version": "7.4.4", + "description": "Helper function to hoist variables", + "hashes": [ + { + "alg": "SHA-512", + "content": "5252503e416a1542c87325b9b1bce06e4c67d852918305a245ec5cb9a47c44d251cbcf8b2ef7aa3e3c1957f6f0acb6423747941c3ff1f03d2178ad68ceea28e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-hoist-variables@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-create-class-features-plugin@7.4.4", + "author": "The Babel Team", + "group": "@babel", + "name": "helper-create-class-features-plugin", + "version": "7.4.4", + "description": "Compile class public and private fields, private methods and decorators to ES6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5afca934061a561db741c8e9311db80b0658d8dcfa86a74e70574f6cda55e7a84be47e8a88585e3bb5e6d5a3dd94b43b7797a66195fb559c0fa7dc77cfeda8a7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-create-class-features-plugin@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-create-class-features-plugin" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-member-expression-to-functions@7.0.0", + "author": "Justin Ridgewell", + "group": "@babel", + "name": "helper-member-expression-to-functions", + "version": "7.0.0", + "description": "Helper function to replace certain member expressions with function calls", + "hashes": [ + { + "alg": "SHA-512", + "content": "47189f021d99a1553aecfc8a20ee00322d704de9c67cc47f3bf69ed02091ab080102de6fef18ddb51c3b52849bb2b78aad09f9b7bafcf5eaee2bff498d81ee0e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-member-expression-to-functions@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-member-expression-to-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-optimise-call-expression@7.0.0", + "group": "@babel", + "name": "helper-optimise-call-expression", + "version": "7.0.0", + "description": "Helper function to optimise call expression", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cfe7da03f7f7c41d091d71b8050a76e6807e6f2104c96f1876c9ff8274cf3dfe0954367bb3afced0f062231849ce92d4d139e98ed0f7b488f0186ea66e39488" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-optimise-call-expression@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-plugin-utils@7.0.0", + "author": "Logan Smyth", + "group": "@babel", + "name": "helper-plugin-utils", + "version": "7.0.0", + "description": "General utilities for plugins to use", + "hashes": [ + { + "alg": "SHA-512", + "content": "6815cf4f76e6b4baf25daa092f260f5cf9520f8a7595df5a61e47eb0934e6632491a23a96fe7ca7e1dcd91c0aeec9e789d427008444f044c420a9c823879eeff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-plugin-utils@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-plugin-utils" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-replace-supers@7.4.4", + "group": "@babel", + "name": "helper-replace-supers", + "version": "7.4.4", + "description": "Helper function to replace supers", + "hashes": [ + { + "alg": "SHA-512", + "content": "74db1689b548e25353e878ae38806bd68cb1a38d07bc85666f03d49b75d9ef0321e24d96c6bc53a99c12ab0fde1265c34bd9e9d1ecb93366f3f6d0663bd73e61" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-replace-supers@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-define-map@7.4.4", + "group": "@babel", + "name": "helper-define-map", + "version": "7.4.4", + "description": "Helper function to define a map", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4b07d458ec664a71cfdfaf381f0d8fc7c1dab158f7bad2a300bcd51e7f55756c367c8b801483100036096d1738fad6dd74d161a1a9a4b4c469002c3fbd540fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-define-map@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-module-imports@7.0.0", + "author": "Logan Smyth", + "group": "@babel", + "name": "helper-module-imports", + "version": "7.0.0", + "description": "Babel helper functions for inserting module loads", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0d16fb37564b9261b162d71d9577ab4aaf2c2afb3fdc2de602fd124d16b217ff7d017f96a21986edbc65e894492dcc91fca39139289ded4fe9e4c6eb9915594" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-module-transforms@7.4.4", + "author": "Logan Smyth", + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.4.4", + "description": "Babel helper functions for implementing ES6 module transformations", + "hashes": [ + { + "alg": "SHA-512", + "content": "29836a634202c1fbf5f5bdf55f3be623f99f73294ecdb2eda30930fa67ef18f010de47c29cc2d86c40f761e70be6d3ddf2701815014077a247a762f1664fc9d6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-simple-access@7.1.0", + "author": "Logan Smyth", + "group": "@babel", + "name": "helper-simple-access", + "version": "7.1.0", + "description": "Babel helper for ensuring that access to a given value is performed through simple accesses", + "hashes": [ + { + "alg": "SHA-512", + "content": "88da4881383202f0d0a438fbe8f3aa83e604b7c7cfc71df268d060dd2df477134a9b64967d8843d131ab2bf12ef701e9516eb755053cf784ec4e0f862db51ad6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-simple-access" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-regex@7.4.4", + "group": "@babel", + "name": "helper-regex", + "version": "7.4.4", + "description": "Helper function to check for literal RegEx", + "hashes": [ + { + "alg": "SHA-512", + "content": "75a7e276f5648c93f90085a426ca55fbb4468f58de36db34a98be5995cea0066fa066433125749afa64fceb9a5a56fc05b560919dc3b6ebdb28b0be5091a83bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-regex@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-remap-async-to-generator@7.1.0", + "group": "@babel", + "name": "helper-remap-async-to-generator", + "version": "7.1.0", + "description": "Helper function to remap async functions to generators", + "hashes": [ + { + "alg": "SHA-512", + "content": "748eeae7460a77c040bf75447e083b3d2ef20f746d6e2d89d5731769a9573b45b4d7ae2160b9e1f33a63452d26b5ef4c7d5a7fb65b6faff71f7573ef26bd68a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-remap-async-to-generator@7.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-wrap-function@7.2.0", + "group": "@babel", + "name": "helper-wrap-function", + "version": "7.2.0", + "description": "Helper to wrap functions inside a function call.", + "hashes": [ + { + "alg": "SHA-512", + "content": "706dabbb74d100be9aeb4b5f41f96911fb3895d88fc05e985b7cdf2624609a815521a0b5bc69c10606ad7de73e654ce23c790749a5c0b84724dc27647f7791a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-wrap-function@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-wrap-function" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.2.0", + "group": "@babel", + "name": "plugin-proposal-async-generator-functions", + "version": "7.2.0", + "description": "Turn async generator functions into ES2015 generators", + "hashes": [ + { + "alg": "SHA-512", + "content": "580cf847d6efa33c78ab07fbe0cfac7ea3cc29f4aac0cd298713d347a889222f2ba1b8335f09048267891b58042a19bab03a93fd4f5a57795f72ac9b2297aff3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-async-generator-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-async-generators@7.2.0", + "group": "@babel", + "name": "plugin-syntax-async-generators", + "version": "7.2.0", + "description": "Allow parsing of async generator functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "b727266719067d96b184c45b5e53d7b95169756957a62af65b800c85226044ace4fde0e52173a16f62c75a82e90c5ed3107ca5579ccd872917e8a0201c999337" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-async-generators@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-class-properties@7.4.4", + "group": "@babel", + "name": "plugin-proposal-class-properties", + "version": "7.4.4", + "description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax", + "hashes": [ + { + "alg": "SHA-512", + "content": "72e99f5ce174fa7cd9aeb37c45fd2deccfad17ab1973bbe1430610724f6ad7fe70d8e131943f9be2fe11a4c245695d59ed67034603ba16abf1ab11a5c28f911d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-class-properties@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-decorators@7.4.4", + "author": "Logan Smyth", + "group": "@babel", + "name": "plugin-proposal-decorators", + "version": "7.4.4", + "description": "Compile class and object decorators to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "283ef30cd683d78091a6342355b5781271fd96c29895ca54ae1647dfb7a2d8863e0255eb7c03f2e694e64541385fa5f593c12c2973eb6b293179aa20a90bd218" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-decorators@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-decorators" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-decorators@7.2.0", + "group": "@babel", + "name": "plugin-syntax-decorators", + "version": "7.2.0", + "description": "Allow parsing of decorators", + "hashes": [ + { + "alg": "SHA-512", + "content": "7eac8b8237317ffd7287267a03eca8d6ef6027b7a5785428776964694b05f4343bb1b6d8dcb8a0ca6dcbd3e2367345a6a8d283a680fd5136f500a3f7a9130e01" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-decorators@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-json-strings@7.2.0", + "group": "@babel", + "name": "plugin-proposal-json-strings", + "version": "7.2.0", + "description": "Escape U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "96bd697b29fd90e75b61cd31af439d1d367914ca92e838be1f4173d88fc9c0ccc69b32444cd78e16ada90724b0e97fca14be445838e526e32c5064456fc7d081" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-json-strings@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-json-strings" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-json-strings@7.2.0", + "group": "@babel", + "name": "plugin-syntax-json-strings", + "version": "7.2.0", + "description": "Allow parsing of the U+2028 LINE SEPARATOR and U+2029 PARAGRAPH SEPARATOR in JS strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "958ea4746a561ef8e87b6be4e16ac06a912e051ebd10cc5997e46819186b14635854af2638f016f157db4ff660ac56d794336289ac509c0b6054267a8efdf410" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-json-strings@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-json-strings" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.4.4", + "group": "@babel", + "name": "plugin-proposal-object-rest-spread", + "version": "7.4.4", + "description": "Compile object rest and spread to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "9030c7439adf948798e7197af4212a184674298dfaf5e86c08811b4c66f8b221c6e4113db206bf4f4af4394c3264d2cc99913bf44d646eca808f01425b876ce9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-object-rest-spread@7.2.0", + "group": "@babel", + "name": "plugin-syntax-object-rest-spread", + "version": "7.2.0", + "description": "Allow parsing of object rest/spread", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e8a8c8a31996fdcb7cb65ec90df8fd70506895c16679266a03470c79fb71a612994dc95336b360e0f082c5426f2b58ce3ca2b1b2e58a48e4197c535cbbc9d94" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-object-rest-spread@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.2.0", + "group": "@babel", + "name": "plugin-proposal-optional-catch-binding", + "version": "7.2.0", + "description": "Compile optional catch bindings", + "hashes": [ + { + "alg": "SHA-512", + "content": "438d07121b3d0c94326997d48e39fabc4f02bf81a6307098b8c1885949e5c47eb8d34546c4ebb05ac3ede05c57c49902ff978ece09f4cf6d4cf60313e0c3a16f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-catch-binding" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-optional-catch-binding@7.2.0", + "group": "@babel", + "name": "plugin-syntax-optional-catch-binding", + "version": "7.2.0", + "description": "Allow parsing of optional catch bindings", + "hashes": [ + { + "alg": "SHA-512", + "content": "e953c3d0f7359694eac3468aa1e45332207e916840a13db83c0fa4b16481ac5b65e52211569665c0ddcd34f4237a103613ff75155dd18cb5a855382559c495dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-optional-catch-binding@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-optional-catch-binding" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.4.4", + "group": "@babel", + "name": "plugin-proposal-unicode-property-regex", + "version": "7.4.4", + "description": "Compile Unicode property escapes in Unicode regular expressions to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d814a11bf779ca86725d97d578f1fdd6eacbe704c6e8049953d338a34de528af2ef145b5cb4f0e32db4148e0034dc26b9cf329bc35d11b71bc7f22e1e28becf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpu-core@4.5.4", + "author": "Mathias Bynens", + "name": "regexpu-core", + "version": "4.5.4", + "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a2fa50d196f00494a8c5a7991eaa65546892ea6621f2c1e91786c853eb0554c8339b18f77298d3e1c4199fdfc655b1a5063a7677168b7d633c6fa08df5ca663" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regexpu-core@4.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regexpu" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regexpu-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regexpu-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerate@1.4.0", + "author": "Mathias Bynens", + "name": "regenerate", + "version": "1.4.0", + "description": "Generate JavaScript-compatible regular expressions based on a given set of Unicode symbols or code points.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb71e47f5e119853f77fa29af610a3bb6911d47a2048f2a8ed7c7a800d3c1977a4b37f2d7a95aea4a83d0c214b39cf9871e8068a6be3e2c693eb476f3df88d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerate@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regenerate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regenerate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regenerate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerate-unicode-properties@8.1.0", + "author": "Mathias Bynens", + "name": "regenerate-unicode-properties", + "version": "8.1.0", + "description": "Regenerate sets for Unicode properties and values.", + "hashes": [ + { + "alg": "SHA-512", + "content": "be7e4353aca0ea1f213ffd8e910a372bbb9520bbd8e22bb4a08e2ddc715af3550f921189c24470335d0911cdeea637611e3b3f93c189635b11061939b2bebd07" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerate-unicode-properties@8.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regenerate-unicode-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regjsgen@0.5.0", + "author": "Benjamin Tan", + "name": "regjsgen", + "version": "0.5.0", + "description": "Generate regular expressions from regjsparser’s AST.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7e637c80db8b85ebc9b9180fad0636c6628eb8c57549a5b4e805a582a1235273585d93a75f72d6915ab3454d525920884be46c56f33c23a22c5b9e27e72b9f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014-2018 Benjamin Tan \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regjsgen@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bnjmnt4n/regjsgen" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bnjmnt4n/regjsgen/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bnjmnt4n/regjsgen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regjsparser@0.6.0", + "author": "'Julian Viereck'", + "name": "regjsparser", + "version": "0.6.0", + "description": "Parsing the JavaScript's RegExp in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e543d8182df936a77579020e5f62103b7efece1f37752941f43d13f8eb17374e0c23c2044e216e7bd807d883f5fd91a36afcb267bbaa09705457948ac6a1347" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/regjsparser@0.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jviereck/regjsparser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jviereck/regjsparser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jviereck/regjsparser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-ecmascript@1.0.4", + "author": "Mathias Bynens", + "name": "unicode-match-property-ecmascript", + "version": "1.0.4", + "description": "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e646990ab6e9e6699bcf9ba50640e46d8d12b0f3a32aa552df95692fdba530f7d29742745ec9bef44be986ff42a08645c2b7bb689a1af78018eac78c28654de5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/unicode-match-property-ecmascript@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/unicode-match-property-ecmascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/unicode-match-property-ecmascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unicode-canonical-property-names-ecmascript@1.0.4", + "author": "Mathias Bynens", + "name": "unicode-canonical-property-names-ecmascript", + "version": "1.0.4", + "description": "The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c98e4fa4395f548539fb2fc1482c402510484b565cd9d0c6dd48eafac47453e26351ebd6d8986870e17eb2844e60349a01eccecce2aecb28b1843ea60649d299" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/unicode-canonical-property-names-ecmascript@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unicode-property-aliases-ecmascript@1.0.5", + "author": "Mathias Bynens", + "name": "unicode-property-aliases-ecmascript", + "version": "1.0.5", + "description": "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e597eecbdabf0c5af8b5f3bb64f7955dbd5a3e879049d78530ba58b8579b7a10c085bb9ebcbb39cb149998814dd6d3f917d5a5e08a49ad8a2383ce7fce0c991d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/unicode-property-aliases-ecmascript@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/unicode-property-aliases-ecmascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-value-ecmascript@1.1.0", + "author": "Mathias Bynens", + "name": "unicode-match-property-value-ecmascript", + "version": "1.1.0", + "description": "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed886473461efade0f358cce18a79d0e15db60805ed57110610c4e3f285c5cd309d1608006aaa3e9c93275dea95916531d5e06b823ca74101488c73ad2db0a57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/unicode-match-property-value-ecmascript@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/unicode-match-property-value-ecmascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-dynamic-import@7.2.0", + "group": "@babel", + "name": "plugin-syntax-dynamic-import", + "version": "7.2.0", + "description": "Allow parsing of import()", + "hashes": [ + { + "alg": "SHA-512", + "content": "e607466c5a27f8fb33633aacf374b71399a98bbff2ffc33d782f743114d97ddb903985bbea283a48e48f35ee35206e4ba0fdc51819f6374463543490892f7891" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-dynamic-import@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-jsx@7.2.0", + "group": "@babel", + "name": "plugin-syntax-jsx", + "version": "7.2.0", + "description": "Allow parsing of jsx", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c72e273218658f0cf80d6b6bc99c280348c01e53b6c443e80c3de316717ef9e386154c151e51604f47b2156506b65563eaf77090cd2102c9302fdf1891c898" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-jsx@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-arrow-functions@7.2.0", + "group": "@babel", + "name": "plugin-transform-arrow-functions", + "version": "7.2.0", + "description": "Compile ES2015 arrow functions to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f52f57f5151e7f3aec1d998a31b0d7c707841fe62513c24912e6adf4576f5bd421d5cc3b5bae2310b0ad58d90f04f5f9127e39bb2dbc286bc0fc0c92a9487c09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-arrow-functions@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-arrow-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-async-to-generator@7.4.4", + "group": "@babel", + "name": "plugin-transform-async-to-generator", + "version": "7.4.4", + "description": "Turn async functions into ES2015 generators", + "hashes": [ + { + "alg": "SHA-512", + "content": "011139c192ca9d380f5bbff57ed4264a2d429a4aaa1e8d83366b73b4586f82d3964837ead02abdffd2fe2a764d61236bc9d05e9215b7af04a176e7f9f51a176a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-async-to-generator@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.2.0", + "group": "@babel", + "name": "plugin-transform-block-scoped-functions", + "version": "7.2.0", + "description": "Babel plugin to ensure function declarations at the block level are block scoped", + "hashes": [ + { + "alg": "SHA-512", + "content": "13151c3aaa4f5a796245c3eabdeb391c97093af1ef20859fb92e2cae80547a73ee31d996f923070da926b52eea3a8d77b15a699948a3a9e4efeeaa86b2f511a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoped-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-block-scoping@7.4.4", + "group": "@babel", + "name": "plugin-transform-block-scoping", + "version": "7.4.4", + "description": "Compile ES2015 block scoping (const and let) to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c0c82515752ad41511bb7f1080701b2e13d35b98228e0a441dd552ace486b008386c7b02872d2fdf94c7cf1bb58d335dd0f23c9f665be6e0faff971241a6b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoping@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-classes@7.4.4", + "group": "@babel", + "name": "plugin-transform-classes", + "version": "7.4.4", + "description": "Compile ES2015 classes to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "124450c6cc68cada5394a26648f62bb0e3230882da7008ed49591de200a111eda45e3142ba7df2a21856e48ee995726109e98cd202ac68631c3bcb629ef080e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-classes@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-computed-properties@7.2.0", + "group": "@babel", + "name": "plugin-transform-computed-properties", + "version": "7.2.0", + "description": "Compile ES2015 computed properties to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa2d195356c20f298a6a42f19f9b2b187aec00f4442c2d9621bcf08cb8475bd48813570f6242c22f43659d731968cd6f85f800dbe33b8724a4e36541beb90147" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-computed-properties@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-computed-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-destructuring@7.4.4", + "group": "@babel", + "name": "plugin-transform-destructuring", + "version": "7.4.4", + "description": "Compile ES2015 destructuring to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7954260d75d3cb9194eae17ca64086887d9349c13f58b2390f3a191512ab7a408a5015954cf4896daaa629384909a0dd433f39e6c540f267909366cfd90ae1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-destructuring@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-dotall-regex@7.4.4", + "group": "@babel", + "name": "plugin-transform-dotall-regex", + "version": "7.4.4", + "description": "Compile regular expressions using the `s` (`dotAll`) flag to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e92de3a6e9f57846c0c6aed37632e8b40b25e16a5023d0f17e4c9c45c2ab8e1418cd4f3baa95dd927a4183f7be4dd70c7a1a869cb162eed9c5501474d95abac2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-dotall-regex@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-duplicate-keys@7.2.0", + "group": "@babel", + "name": "plugin-transform-duplicate-keys", + "version": "7.2.0", + "description": "Compile objects with duplicate keys to valid strict ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "7766e65c2b595d8739f7fd126a740a6e258835a75a257aadbc8408cdde3e84dc2458183209de45ff6b75917a1476f3ccaf1ccfbe12ba10c41144ec6cb9efa67f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-duplicate-keys@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-duplicate-keys" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.2.0", + "group": "@babel", + "name": "plugin-transform-exponentiation-operator", + "version": "7.2.0", + "description": "Compile exponentiation operator to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3312d734fb673cf05551df86909a2cf9e9dc44931af683c0d06ff29f6856b52585ce155b1b86f0289c537a3f05568fef9f2a692ef0d3fcd29949e44b78c2a1f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-for-of@7.4.4", + "group": "@babel", + "name": "plugin-transform-for-of", + "version": "7.4.4", + "description": "Compile ES2015 for...of to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c847d34678eeb24598a3493598752aad559a670addabc0186dfae9a942ce24e6ae7064a9e2634c569b3e62d03c6f2a1ebf14bfbabc14ef9bf285023170282205" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-for-of@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-function-name@7.4.4", + "group": "@babel", + "name": "plugin-transform-function-name", + "version": "7.4.4", + "description": "Apply ES2015 function.name semantics to all functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "5af201a113da250e72547cdc9c9168afba12e4bb343d88b1953604eb79428f646d750125d7933af055d09719c6eb076b68921745d47b288fa143babff508eb09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-function-name@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-literals@7.2.0", + "group": "@babel", + "name": "plugin-transform-literals", + "version": "7.2.0", + "description": "Compile ES2015 unicode string and number literals to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "205403491a133e7ac022b239ce866fef7205799bb6761bba8abc508d8f6b3634d3e775662a0f5f7a78efa223963a427a9a6e232953ed74ccc163df05a7867872" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-literals@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-member-expression-literals@7.2.0", + "group": "@babel", + "name": "plugin-transform-member-expression-literals", + "version": "7.2.0", + "description": "Ensure that reserved words are quoted in property accesses", + "hashes": [ + { + "alg": "SHA-512", + "content": "a921758a12c63b7abefe0e3c93ce6d5230f4df70b6f53353541da9682c193d598eb239fda4296f618accd95789a416366dc364ba7cb4614c93351c91c49e7828" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-member-expression-literals@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-member-expression-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-modules-amd@7.2.0", + "group": "@babel", + "name": "plugin-transform-modules-amd", + "version": "7.2.0", + "description": "This plugin transforms ES2015 modules to AMD", + "hashes": [ + { + "alg": "SHA-512", + "content": "3eb6b9697b264ec3a78ccdc86a34bcad368b0b2fbe9c6338bf7611e1eb24e4f0acca0f73f0d039a102f0c73314b4305df05f94995cdadd5c6801a5826f31f5ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-amd@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-modules-commonjs@7.4.4", + "group": "@babel", + "name": "plugin-transform-modules-commonjs", + "version": "7.4.4", + "description": "This plugin transforms ES2015 modules to CommonJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "41fbf664e5a2929be679d5d024349bc4dab2ed7aff8f663cfca7e28ccd222722a4053996baf080d72787d720ccecd261056ff6697c5eb9c2e3ea2f34fcb009fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-commonjs@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-modules-systemjs@7.4.4", + "group": "@babel", + "name": "plugin-transform-modules-systemjs", + "version": "7.4.4", + "description": "This plugin transforms ES2015 modules to SystemJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd8fd54886dbaada11a092a8d9c0d37b02f7eb88d29591af9f42ca39ff67b5b7f13af8df9b2addb4410e01db303acc216446fc507de30e408a1ddd6c3e0b12d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-systemjs@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-modules-umd@7.2.0", + "group": "@babel", + "name": "plugin-transform-modules-umd", + "version": "7.2.0", + "description": "This plugin transforms ES2015 modules to UMD", + "hashes": [ + { + "alg": "SHA-512", + "content": "75c7a012b13155e5dc46a36d91153fcfc5a504b9ef0f83119c780db37332b513b5327d6c1d1ca16dca586d530672502a3a3756fbd71f91d667a3d74575f28b7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-umd@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-umd" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.4.5", + "group": "@babel", + "name": "plugin-transform-named-capturing-groups-regex", + "version": "7.4.5", + "description": "Compile regular expressions using named groups to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "52610e185f1781a22a0fbe1b0bc83b895dd1623f2531fd01c3b349cef9d2f6a4213389a0fb55872a8b5421d8f1803d911ab8052d964f0853c58f73ff9150d886" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexp-tree@0.1.10", + "author": "Dmitry Soshnikov", + "name": "regexp-tree", + "version": "0.1.10", + "description": "Regular Expressions parser in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3668456e2e1be75495bab3f88f80418ae91fbfc6781dda3350fb1cb86d73432b164a247ea3a4f1d8ea455e56fd4878b08782cc118fe2a5dc42da0e31ba5758b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Dmitry Soshnikov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regexp-tree@0.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DmitrySoshnikov/regexp-tree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DmitrySoshnikov/regexp-tree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DmitrySoshnikov/regexp-tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-new-target@7.4.4", + "group": "@babel", + "name": "plugin-transform-new-target", + "version": "7.4.4", + "description": "Transforms new.target meta property", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e3c0503ff48bb767ebeb027fbca415067238712a0b92325b05a9e08a6e16fd04057be7abf492bcd52b4e024438bfe1aaa693c06c1dbe1afe015c680e63a1747" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-new-target@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-object-super@7.2.0", + "group": "@babel", + "name": "plugin-transform-object-super", + "version": "7.2.0", + "description": "Compile ES2015 object super to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "baf1b3eb393ea59a12d5a4d9acebeb6e3e8fa7f90ada6a78e6dd81f9b4c3aded9482c659f0464b489b5483b9bf9e8d3338951680538da41ed9bfd5b6b5268594" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-object-super@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-super" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-parameters@7.4.4", + "group": "@babel", + "name": "plugin-transform-parameters", + "version": "7.4.4", + "description": "Compile ES2015 default and rest parameters to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8af7db1375f64acf858fc9e75ef2894bab23446e20cf03ccb0ffad6990be6731068c0625bc4362c66b75b19e426bab5696cf8194a48628f27a38e5ef5c26e416" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-parameters@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-property-literals@7.2.0", + "group": "@babel", + "name": "plugin-transform-property-literals", + "version": "7.2.0", + "description": "Ensure that reserved words are quoted in object property keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "71872ceaa96069f4ee7773c0cebad135b42d7e943cfb2ffe339b4a9a4b12f7e3357246c7ea4cd8f0cadec4433d99c03a243b2e904d7d88846f032625e3adec32" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-property-literals@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-property-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-react-display-name@7.2.0", + "group": "@babel", + "name": "plugin-transform-react-display-name", + "version": "7.2.0", + "description": "Add displayName to React.createClass calls", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d5e2c43e4f4d779fad6e328ca0c8c466fb17f4e01779a2a169bf68c0110c1267c370400ef37913e0d4b3158363d68b7cd6073f822ca0febf96dca59fc14b468" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-display-name@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-display-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-react-jsx@7.3.0", + "group": "@babel", + "name": "plugin-transform-react-jsx", + "version": "7.3.0", + "description": "Turn JSX into React function calls", + "hashes": [ + { + "alg": "SHA-512", + "content": "333ef130fc68cbd90f4bf252723e9f26cd374d9fdf6757493e53234408136b1692d1f50193c155fc0dab4607cfb15099a802cdc0c7b10fed1469fe7395c28fa7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx@7.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-react-jsx-self@7.2.0", + "group": "@babel", + "name": "plugin-transform-react-jsx-self", + "version": "7.2.0", + "description": "Add a __self prop to all JSX Elements", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx-self@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx-self" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-react-jsx-source@7.2.0", + "group": "@babel", + "name": "plugin-transform-react-jsx-source", + "version": "7.2.0", + "description": "Add a __source prop to all JSX Elements", + "hashes": [ + { + "alg": "SHA-512", + "content": "bad6669404a77837dd68c8749bf59abac6e352311d1ab409cf4bc52bddddef00f7c5fe7006d5f6d7dfaae889423597a0b887314b67ff0af2d9ae52d2bd21d05f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx-source@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx-source" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-regenerator@7.4.5", + "author": "Ben Newman", + "group": "@babel", + "name": "plugin-transform-regenerator", + "version": "7.4.5", + "description": "Explode async and generator functions into a state machine.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a68a91236faa89275e95d733e304d24d7051af2a2adc673bd327bb9bb503e56c349c4dbd217a8c97aafb35dd7958181177be2f96810c95286d1fa08ac55cdf99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-regenerator@7.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-transform@0.14.0", + "author": "Ben Newman", + "name": "regenerator-transform", + "version": "0.14.0", + "description": "Explode async and generator functions into a state machine.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c97a96ef0dbb8ad718088276aeed8f7473068098efcb08b308da63ef697ab685e18c4776965b9fc142f62b849f238264235dec17bc18f37ea29c54e9a18d9e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-transform@0.14.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-reserved-words@7.2.0", + "group": "@babel", + "name": "plugin-transform-reserved-words", + "version": "7.2.0", + "description": "Ensure that no reserved words are used.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a17ff8332328ca9cc78c5ad3d42762bdf299f97bc83cc157c30c47a7faf40ddcb656ea26b781c314699fb754c0636ca24ca88d4ac877923040cdc33c91276c8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-reserved-words@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-reserved-words" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-shorthand-properties@7.2.0", + "group": "@babel", + "name": "plugin-transform-shorthand-properties", + "version": "7.2.0", + "description": "Compile ES2015 shorthand properties to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "7822d75c9aaff2893383ceb2c1925b467d7d6091d4e1751ae79a33db06c785a4159ff30cf9786e9224fb498aa9ffba34d1d839d918f9d4dcbe11cc38a32a3283" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-shorthand-properties@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-shorthand-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-spread@7.2.2", + "group": "@babel", + "name": "plugin-transform-spread", + "version": "7.2.2", + "description": "Compile ES2015 spread to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd43cd78c32a0e3ed201fea1a8a4d20bf710c284e135a4d534658e5d3b4a3086256dff99059b8962fbf6c1b7073b428b46d2ee443f3aa165d8ccb66a81ab240" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-spread@7.2.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-sticky-regex@7.2.0", + "group": "@babel", + "name": "plugin-transform-sticky-regex", + "version": "7.2.0", + "description": "Compile ES2015 sticky regex to an ES5 RegExp constructor", + "hashes": [ + { + "alg": "SHA-512", + "content": "91f883ac343e3c1b100cef39ca3d6272e79631f19f24528dd4a0a49ddca0b6efc2f7e5d47f274b0bc22fe54609a91c32e3393c11ca6547110e78bca3ab5826e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-sticky-regex@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-sticky-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-template-literals@7.4.4", + "group": "@babel", + "name": "plugin-transform-template-literals", + "version": "7.4.4", + "description": "Compile ES2015 template literals to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bc70e59f4fcda04dece960e8956861eb09b8651e02a142df171f9112e3a3f65d6997f76ca2b28672c1fe649bbe70bf9b187170d408b32633138b0adb610e030" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-template-literals@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-typeof-symbol@7.2.0", + "group": "@babel", + "name": "plugin-transform-typeof-symbol", + "version": "7.2.0", + "description": "This transformer wraps all typeof expressions with a method that replicates native behaviour. (ie. returning “symbol” for symbols)", + "hashes": [ + { + "alg": "SHA-512", + "content": "4917f04ed175d46d9a7a60195a2bcbecf0fe0bdcf9daff44bcca87f41b986da6f23ee294bd25a4b37a0283ad38d694fddb92f8cd516a69505e102c2c9a582e13" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-typeof-symbol@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-typeof-symbol" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-unicode-regex@7.4.4", + "group": "@babel", + "name": "plugin-transform-unicode-regex", + "version": "7.4.4", + "description": "Compile ES2015 Unicode regex to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "804ec0e8bb7b60b9cd38bdcf6fd04d799be2f9df25eed711ac6e3ea702632bd843db15f8984be39505bad06f441267d755844fbfd55141cc9e8085470aa97f00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-unicode-regex@7.4.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/polyfill@7.4.4", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "polyfill", + "version": "7.4.4", + "description": "Provides polyfills necessary for a full ES2015+ environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f4a62d15ea0c4b8ba9456691a678d6b8cf1b701260ace368ac58b3636590c4d18f3255f82ed13d8e00797305b75896a6d6fd85d5be8047a404c433e8280a3f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/polyfill@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-polyfill" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js@2.6.9", + "name": "core-js", + "version": "2.6.9", + "description": "Standard library", + "hashes": [ + { + "alg": "SHA-512", + "content": "6623e9f69665831a5646ed0cf9859b9baf9a43ce1711f1f52515ef7ce73f7c82d623454a84b0b62d7d775f5358ab87d42f32ccabb1df878dc24a8dbf6886943c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2019 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js@2.6.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.13.2", + "author": "Ben Newman", + "name": "regenerator-runtime", + "version": "0.13.2", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f463f249e1586eb3230e77fa36e5ade3754a8dfdb0bce4416c6a82fd3aa9b2fcee1e7c287ec61a7bca3d8410eb23f7be2abcc91c5bc0305332758c1fcc6f10b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-runtime@0.13.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/preset-env@7.4.5", + "author": "Henry Zhu", + "group": "@babel", + "name": "preset-env", + "version": "7.4.5", + "description": "A Babel preset for each environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef9a6dfeaf7970c2075acb18b727e3565bc8f901194138506cabd1f711fe17f020b70fece167dcd95f41c1dfcfdfd56d8b107ba16c46747e06b5e4d3c1825632" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/preset-env@7.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-preset-env" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserslist@4.6.1", + "author": "Andrey Sitnik", + "name": "browserslist", + "version": "4.6.1", + "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8725b9431366d7551633b837adbffc00787389c8ef7bfbdc310b571d0adcb380db92a333b24428a22da091d5fef500deba9507555418a95a6eb757e6bb6cf3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserslist@4.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserslist/browserslist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserslist/browserslist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/browserslist/browserslist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caniuse-lite@1.0.30000971", + "author": "Ben Briggs", + "name": "caniuse-lite", + "version": "1.0.30000971", + "description": "A smaller version of caniuse-db, with only the essentials!", + "hashes": [ + { + "alg": "SHA-512", + "content": "a49600ac61eb3e9dd352a4331584663ff9702658fc4426d57b719ddde25090057c4800ba6f5f574bd06332f45dbda4bc44c91a4cdf198681cfe92d72f33cf011" + } + ], + "licenses": [ + { + "license": { + "id": "CC-BY-4.0", + "text": { + "content": "Attribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More_considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n" + } + } + } + ], + "purl": "pkg:npm/caniuse-lite@1.0.30000971", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/caniuse-lite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/caniuse-lite/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/caniuse-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/electron-to-chromium@1.3.142", + "author": "Kilian Valkhof", + "name": "electron-to-chromium", + "version": "1.3.142", + "description": "Provides a list of electron-to-chromium version mappings", + "hashes": [ + { + "alg": "SHA-512", + "content": "87e15a76dd6021a434e896888b2a8fb018c9d3c7d5e50ee677e57c6d4bd05bff4ebd77cbd8b448093cf611c9e708fed0ceb1534baff6ecc455e8197d627f7bcc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2018 Kilian Valkhof\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/electron-to-chromium@1.3.142", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kilian/electron-to-chromium#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kilian/electron-to-chromium/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kilian/electron-to-chromium.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-releases@1.1.22", + "author": "Sergey Rubanov", + "name": "node-releases", + "version": "1.1.22", + "description": "Node.js releases data", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e25579cdb859b9fa26242c135eab9db5d61bcedfccbadd3d22d8a2a1d8a9d4b37469cc9f89b4e0c58e40fcca32f09c3913605d5e29785e53076cb11f8d45976" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-releases@1.1.22", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chicoxyzzy/node-releases#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chicoxyzzy/node-releases/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chicoxyzzy/node-releases.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js-compat@3.1.3", + "name": "core-js-compat", + "version": "3.1.3", + "description": "core-js compat", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e174d0067919d3a69f316c3fac47f1c50caf426de79ea974fa4eea1f5e1deeaea11ebf391698b460ad5a3292876cc3ca24aa8da9bb504e9ae08aac7c7adf377" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2019 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js-compat@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js-pure@3.1.3", + "name": "core-js-pure", + "version": "3.1.3", + "description": "Standard library", + "hashes": [ + { + "alg": "SHA-512", + "content": "af59c9938d502cb3f2a331d450f9882c210cb4cc36e0d1b8a162ba45bb03763cd0820f59beb52c3c18f53271b4c175e9d4308353a8fec14bc49814abb516cb5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2019 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js-pure@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@6.1.1", + "name": "semver", + "version": "6.1.1", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-levenshtein@1.1.6", + "author": "Gustaf Andersson", + "name": "js-levenshtein", + "version": "1.1.6", + "description": "The most efficient JS implementation calculating the Levenshtein distance, i.e. the difference between two strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f6041d75619b6b46a63812741c2d7e51877ef7cdb2b86a50b5156ec3ecc0612f682d702d7b7139ebe8399f1d9792d2cdab4c78d44cc3077c6ee03bc492770fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Gustaf Andersson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-levenshtein@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gustf/js-levenshtein#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gustf/js-levenshtein/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gustf/js-levenshtein.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/preset-react@7.0.0", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "preset-react", + "version": "7.0.0", + "description": "Babel preset for all React plugins.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/preset-react@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-preset-react" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40csstools/convert-colors@1.4.0", + "author": "Jonathan Neal", + "group": "@csstools", + "name": "convert-colors", + "version": "1.4.0", + "description": "Convert colors between RGB, HSL, and HWB", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/%40csstools/convert-colors@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/convert-colors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/convert-colors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/convert-colors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40csstools/sass-import-resolve@1.0.0", + "author": "Jonathan Neal", + "group": "@csstools", + "name": "sass-import-resolve", + "version": "1.0.0", + "description": "An algorithm for resolving imports in Sass", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n\t protected by copyright and related or neighboring rights (“Copyright and\n\t Related Rights”). Copyright and Related Rights include, but are not limited\n\t to, the following:\n\t1. the right to reproduce, adapt, distribute, perform, display,\n\t\t communicate, and translate a Work;\n\t2. moral rights retained by the original author(s) and/or performer(s);\n\t3. publicity and privacy rights pertaining to a person’s image or likeness\n\t\t depicted in a Work;\n\t4. rights protecting against unfair competition in regards to a Work,\n\t\t subject to the limitations in paragraph 4(i), below;\n\t5. rights protecting the extraction, dissemination, use and reuse of data\n\t\t in a Work;\n\t6. database rights (such as those arising under Directive 96/9/EC of the\n\t\t European Parliament and of the Council of 11 March 1996 on the legal\n\t\t protection of databases, and under any national implementation thereof,\n\t\t including any amended or successor version of such directive); and\n\t7. other similar, equivalent or corresponding rights throughout the world\n\t\t based on applicable law or treaty, and any national implementations\n\t\t thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\napplicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\nunconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\nand Related Rights and associated claims and causes of action, whether now\nknown or unknown (including existing as well as future claims and causes of\naction), in the Work (i) in all territories worldwide, (ii) for the maximum\nduration provided by applicable law or treaty (including future time\nextensions), (iii) in any current or future medium and for any number of\ncopies, and (iv) for any purpose whatsoever, including without limitation\ncommercial, advertising or promotional purposes (the “Waiver”). Affirmer makes\nthe Waiver for the benefit of each member of the public at large and to the\ndetriment of Affirmer’s heirs and successors, fully intending that such Waiver\nshall not be subject to revocation, rescission, cancellation, termination, or\nany other legal or equitable action to disrupt the quiet enjoyment of the Work\nby the public as contemplated by Affirmer’s express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\njudged legally invalid or ineffective under applicable law, then the Waiver\nshall be preserved to the maximum extent permitted taking into account\nAffirmer’s express Statement of Purpose. In addition, to the extent the Waiver\nis so judged Affirmer hereby grants to each affected person a royalty-free, non\ntransferable, non sublicensable, non exclusive, irrevocable and unconditional\nlicense to exercise Affirmer’s Copyright and Related Rights in the Work (i) in\nall territories worldwide, (ii) for the maximum duration provided by applicable\nlaw or treaty (including future time extensions), (iii) in any current or\nfuture medium and for any number of copies, and (iv) for any purpose\nwhatsoever, including without limitation commercial, advertising or promotional\npurposes (the “License”). The License shall be deemed effective as of the date\nCC0 was applied by Affirmer to the Work. Should any part of the License for any\nreason be judged legally invalid or ineffective under applicable law, such\npartial invalidity or ineffectiveness shall not invalidate the remainder of the\nLicense, and in such case Affirmer hereby affirms that he or she will not (i)\nexercise any of his or her remaining Copyright and Related Rights in the Work\nor (ii) assert any associated claims and causes of action with respect to the\nWork, in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n\t\t1. No trademark or patent rights held by Affirmer are waived, abandoned,\n\t\t\t surrendered, licensed or otherwise affected by this document.\n\t\t2. Affirmer offers the Work as-is and makes no representations or\n\t\t\t warranties of any kind concerning the Work, express, implied, statutory\n\t\t\t or otherwise, including without limitation warranties of title,\n\t\t\t merchantability, fitness for a particular purpose, non infringement, or\n\t\t\t the absence of latent or other defects, accuracy, or the present or\n\t\t\t absence of errors, whether or not discoverable, all to the greatest\n\t\t\t extent permissible under applicable law.\n\t\t3. Affirmer disclaims responsibility for clearing rights of other persons\n\t\t\t that may apply to the Work or any use thereof, including without\n\t\t\t limitation any person’s Copyright and Related Rights in the Work.\n\t\t\t Further, Affirmer disclaims responsibility for obtaining any necessary\n\t\t\t consents, permissions or other rights required for any use of the Work.\n\t\t4. Affirmer understands and acknowledges that Creative Commons is not a\n\t\t\t party to this document and has no duty or obligation with respect to\n\t\t\t this CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/%40csstools/sass-import-resolve@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/sass-import-resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/sass-import-resolve/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/sass-import-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/events@3.0.0", + "group": "@types", + "name": "events", + "version": "3.0.0", + "description": "TypeScript definitions for events", + "hashes": [ + { + "alg": "SHA-512", + "content": "11a39bab022f6b22396bc742ce116b8cacd5c0a2f18e81bd4fa3e9779084a34ecb44a7d0f18a24c39e2be7e5aaec568143ec9746f40060fac7c326b5fd416df6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/events@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/glob@7.1.1", + "group": "@types", + "name": "glob", + "version": "7.1.1", + "description": "TypeScript definitions for Glob", + "hashes": [ + { + "alg": "SHA-512", + "content": "654c5bcca97421f2482d34bab7b8a9e5f41033f2774c962e6c39b79cc6e0b9b34d612eb6797794a682d40bcffb7c93621581d3ac63d09fb86ca435332075f750" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/glob@7.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/minimatch@3.0.3", + "group": "@types", + "name": "minimatch", + "version": "3.0.3", + "description": "TypeScript definitions for Minimatch", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a5cfde3d874d86cf6b9908c1b00d44834b56019537430e06d61e2fbcd65dbdb5000b52dbf3e2b0188b9ba85611392da828aba0dea805256eb1ef5bf9970e075" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/minimatch@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/node@12.0.4", + "group": "@types", + "name": "node", + "version": "12.0.4", + "description": "TypeScript definitions for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "29c7e406af47e0f23a569bb907f2a83deb950c06e68beda60c1a863c6520a0bef25d0b5c586bb6bc95a69919277962b7461d272005f5f7601af3b02a28760285" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/node@12.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/ast@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "ast", + "version": "1.8.5", + "description": "AST utils for webassemblyjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ba9e96213dc4c70d87bd9e5b0a6bd0b2581c858bc563f07a2f70082d98c01065439ccce65b43c0a7c0c60a602e47119cf1104fa86348df424e1c565237279f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/ast@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-module-context@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-module-context", + "version": "1.8.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "309096f22182d3cb4c9367a7724d5a3d6f811390b0f3fee987f546671c32bc66c9c2392d2a40caeefcbb80098c0f1f3c0fb9a10d308d2805b9b440fe819d16f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-module-context@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mamacro@0.0.3", + "author": "Sven Sauleau", + "name": "mamacro", + "version": "0.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8c13087e52e8dc43e91bcf74fa57ec0098ed94f2f7a8ab6c3edf063c32abaac150378c285fc18f93939d8664a0df00210f8ee67baf6a092de8f0a6df23b704c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/mamacro@0.0.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-wasm-bytecode", + "version": "1.8.5", + "description": "WASM's Bytecode constants", + "hashes": [ + { + "alg": "SHA-512", + "content": "23b6d2f8768ed0ad3b228f3daa126ffb3d508a94e9bab6a61b05120e4c0469f89c6d2bc270bf76094644b60ca47cdb64e706f40a82d0c169665d3c066cd65479" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wast-parser@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wast-parser", + "version": "1.8.5", + "description": "WebAssembly text format parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "4210ac433a95d02a6c124458c93cd00e294235467ee63f767fe837e5b1c736a4b6d85a69353cb03457c73eaf195997d80a06de72d73e3e88210fec5fcd5161d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-parser@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.8.5", + "author": "Mauro Bringolf", + "group": "@webassemblyjs", + "name": "floating-point-hex-parser", + "version": "1.8.5", + "description": "A function to parse floating point hexadecimal strings as defined by the WebAssembly specification", + "hashes": [ + { + "alg": "SHA-512", + "content": "df34e4485b30c1938f3479f390ff4e36ae1b8c949e29531cb9a8465ee6eb94b9993fc7e64c8279f1d5bb87fcce5568854ae1b67a6dff1c7dc194237bc32bbd47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\r\n\r\nCopyright (c) 2017 Mauro Bringolf\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-api-error@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-api-error", + "version": "1.8.5", + "description": "Common API errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "35c30b8e814c5e9b004991712798761d945c1210e4be73453802a778fe516ca47369624ddfa342e23a901cac12b488465eee66516954524ef281db6b3bc95b9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-api-error@1.8.5" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-code-frame@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-code-frame", + "version": "1.8.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4580712d36c65061a2ab182b6c8ecc018a5e3c429d5a82bcd170fcc26d09680a86936ce5cb27d2119aa4feb8465b7a7a542cb44d16e833dc8e2ec35f2124cf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-code-frame@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wast-printer@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wast-printer", + "version": "1.8.5", + "description": "WebAssembly text format printer", + "hashes": [ + { + "alg": "SHA-512", + "content": "1205e4e1a9dff232a6b9926ca83f2acb96f3d9fac442106f66bbaff9bab03682d6508b63352172824f32c0bdc94c4cfd2adc539409aa4d736b743d5df60343b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-printer@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40xtuc/long@4.2.2", + "author": "Daniel Wirtz", + "group": "@xtuc", + "name": "long", + "version": "4.2.2", + "description": "A Long class for representing a 64-bit two's-complement integer value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e1ea058d4f07f0fcc54eacfed84180e02200fec73980d0df6f8115920b27c8af9149001d09d67e7e9684befd3b08f5aa6527a0dfd83e192d748a2e722a6401" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/%40xtuc/long@4.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dcodeIO/long.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dcodeIO/long.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dcodeIO/long.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-fsm@1.8.5", + "author": "Mauro Bringolf", + "group": "@webassemblyjs", + "name": "helper-fsm", + "version": "1.8.5", + "description": "FSM implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "248358efa53eef4d8845fede3ee90eb74dfb4709ad1f9f491ef71d59b4d3c878b5f22c6643eb8eb8d85c7427101d3aae0c01f7e7f420165a7763d2aab7226c09" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-fsm@1.8.5" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-buffer@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-buffer", + "version": "1.8.5", + "description": "Buffer manipulation utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bcf8a64787e455f0c52fa1246db93d6c157b24167586f6f6c3cb8ece6b5ebac57fa5d1d0f9b04449db5839fed707f18a3de5ef48377bbb25cdcd6e19d471293" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-buffer@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-wasm-section", + "version": "1.8.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a74c9e78efe1dabdf43f28e7257f715d247a10372f25dfe30bac5afcfc60e25a5f70d8bb254b303a9a834e8650e791cc3158570e287fcaa91acb01d618bc6ac9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-gen@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-gen", + "version": "1.8.5", + "description": "WebAssembly binary format printer", + "hashes": [ + { + "alg": "SHA-512", + "content": "791dfde13f1d1d97e92c9ed4fd9e69152bf19752fadc975111e6e9bfd818739e732e1cf37493c0bb18c1613e17a9ebd4756ebba94dacd27340de406e3491db69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-gen@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/ieee754@1.8.5", + "group": "@webassemblyjs", + "name": "ieee754", + "version": "1.8.5", + "description": "IEEE754 decoder and encoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "75c5fc26e614fe0bf29b320773d0e0c53cd45132dec56c2df2e09358fde8b72b39f7a8a8d0be5a5b4d866f5463629c76fb426eb35878645aa395aeee9859e24e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/ieee754@1.8.5" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40xtuc/ieee754@1.2.0", + "author": "Feross Aboukhadijeh", + "group": "@xtuc", + "name": "ieee754", + "version": "1.2.0", + "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d7f272a0a9c1b0b1cd1e252a98b799703f80c7e459479e6b96581472ed7d0d71a191d19b6ec9e11280cc1361512dc66b0d198faa8ade10613fcc2184ce4cf78" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2008, Fair Oaks Labs, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40xtuc/ieee754@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/ieee754#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/ieee754/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/ieee754.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/leb128@1.8.5", + "group": "@webassemblyjs", + "name": "leb128", + "version": "1.8.5", + "description": "LEB128 decoder and encoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2ed0b24b48fcee443587c1daacad38589fe5aa30556a6c8da5b4dac7bd9664cc53cef17399d07150e5e55ce2363f4cd1e05dc9f0ac78ce3613c662eb9ffff29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012 The Obvious Corporation.\nhttp://obvious.com/\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n\n-------------------------------------------------------------------------\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/leb128@1.8.5" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/utf8@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "utf8", + "version": "1.8.5", + "description": "UTF8 encoder/decoder for WASM", + "hashes": [ + { + "alg": "SHA-512", + "content": "1996d0956b68a414cfd2eedc1eb131fbbdf264aad0a01329c2418422a95a7258e15c291533590c4207bf31ff9cb0c2408c4752c213b22c04b4028477006e4ff3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/utf8@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-edit@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-edit", + "version": "1.8.5", + "description": "> Rewrite a WASM binary", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab3bb0527efbd4f57afcb8a5aa45dc4b4a3325801e63f38a6d72165376bc81ec6ea9be837b6a78c9afdb681787e4943658975f856852bd26eef3a5627a7b6da7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-edit@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-opt@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-opt", + "version": "1.8.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6a7e9ec721b8a883b802f5c66a785f3d2b8046f18a8157c389c2158126cbecadca78419d378673d5bd701d5746ed70f29a9153695b8f6541040e1c2f96762b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-opt@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-parser@1.8.5", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-parser", + "version": "1.8.5", + "description": "WebAssembly binary format parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "297063b65c00dc156e911ff25870bd185f920b305c823d1aee59bdda44ce69ae1c6e369369ae3b6c28d7c3a717e12190a649dc07d3d4da11c6615cb223bc0546" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-parser@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/abbrev@1.1.1", + "author": "Isaac Z. Schlueter", + "name": "abbrev", + "version": "1.1.1", + "description": "Like ruby's abbrev module, but in js", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e77bdfc8890fe1cc8858ea97439db06dcfb0e33d32ab634d0fff3bcf4a6e69385925eb1b86ac69d79ff56d4cd35f36d01f67dff546d7a192ccd4f6a7138a2d1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "This software is dual-licensed under the ISC and MIT licenses.\nYou may use this software under EITHER of the following licenses.\n\n----------\n\nThe ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n----------\n\nCopyright Isaac Z. Schlueter and Contributors\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/abbrev@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/abbrev-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/abbrev-js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/isaacs/abbrev-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/accepts@1.3.7", + "name": "accepts", + "version": "1.3.7", + "description": "Higher-level content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d802d8536b69b654ac6ebd20f70cf0bf1b2f94fac380d4b02e4fc9a4991bafc3e34009269e5c443e34771517bace365eaa71ac55dd4b9e9b06b093eefe4892f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/accepts@1.3.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/accepts#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/accepts/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/accepts.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime-types@2.1.24", + "name": "mime-types", + "version": "2.1.24", + "description": "The ultimate javascript content-type utility.", + "hashes": [ + { + "alg": "SHA-512", + "content": "64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime-types@2.1.24", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/mime-types#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/mime-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/mime-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime-db@1.40.0", + "name": "mime-db", + "version": "1.40.0", + "description": "Media Type Database", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime-db@1.40.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/mime-db#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/mime-db/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/mime-db.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/negotiator@0.6.2", + "name": "negotiator", + "version": "0.6.2", + "description": "HTTP content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8452ca863cbb0cfa3ff37428598ec9d7e758385eb1c53885f07e70953c695093f9398226a470ab2ec4239b051bba0d29bda29c3f3bab2559b25d82140ce1b06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 Federico Romero\nCopyright (c) 2012-2014 Isaac Z. Schlueter\nCopyright (c) 2014-2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/negotiator@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/negotiator#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/negotiator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/negotiator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn@6.1.1", + "name": "acorn", + "version": "6.1.1", + "description": "ECMAScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43fbe546ec186bb6f42935b073a2f28d73514b186104fe819eedbf71266fd11473017946941a996e57d44b8d96b8ed815d3dc0c07a7118baaf6940f70c74b26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2018 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acornjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acornjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acornjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-dynamic-import@4.0.0", + "author": "Jordan Gensler", + "name": "acorn-dynamic-import", + "version": "4.0.0", + "description": "Support dynamic imports in acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "18aa79b50f21d0a30f5886064471d7235b39b54a598b16772071768c0bb8db04827fa227fc6f3bdecebfcb80dd29d856bf386ed53ea6135260be78402aac9861" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Jordan Gensler\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-dynamic-import@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kesne/acorn-dynamic-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kesne/acorn-dynamic-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kesne/acorn-dynamic-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-jsx@5.0.1", + "name": "acorn-jsx", + "version": "5.0.1", + "description": "Alternative, faster React.js JSX parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "014ee99d9920bad8700632a00a0ebdf7c07240d20c8dbb83419f1b6fbf100056703df98a89af00233818fe05a0a828e786df092dd5e607863103429a57ad2771" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2017 by Ingvar Stepanyan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-jsx@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/RReverser/acorn-jsx" + }, + { + "type": "issue-tracker", + "url": "https://github.com/RReverser/acorn-jsx/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/RReverser/acorn-jsx.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-walk@6.1.1", + "name": "acorn-walk", + "version": "6.1.1", + "description": "ECMAScript (ESTree) AST walker", + "hashes": [ + { + "alg": "SHA-512", + "content": "38f74217a1ac3083fe033f9a59f000384b76ffe8950ca13ba32ea5274f7c6a87b9f680262bbeaa57a1b0eb449b67c8c7b86db01f4e7c185e292c56d86a662b54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2018 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-walk@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acornjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acornjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acornjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv@6.10.0", + "author": "Evgeny Poberezkin", + "name": "ajv", + "version": "6.10.0", + "description": "Another JSON Schema Validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "023af821c317abfd9098c904992bf1a9f2cde731a627dda01d701e397ab539e9281f6adf0cdb20743a0bd9fed06910b2ec6fc4e93a71055751b8dada333b461f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ajv@6.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-deep-equal@2.0.1", + "author": "Evgeny Poberezkin", + "name": "fast-deep-equal", + "version": "2.0.1", + "description": "Fast deep equal", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ee797efced664a095d08b38fd3d9cc8074ce3ec754b73175ce0216af135cacfd6e3648700f69c2d3421b9c8dadb640162b7c6c39d0cdac4625cfb531aff589b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-deep-equal@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/fast-deep-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/fast-deep-equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/fast-deep-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-json-stable-stringify@2.0.0", + "author": "James Halliday", + "name": "fast-json-stable-stringify", + "version": "2.0.0", + "description": "deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify", + "hashes": [ + { + "alg": "SHA-512", + "content": "96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-json-stable-stringify@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/fast-json-stable-stringify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/epoberezkin/fast-json-stable-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uri-js@4.2.2", + "author": "Gary Court", + "name": "uri-js", + "version": "4.2.2", + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/uri-js@4.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/garycourt/uri-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/garycourt/uri-js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/garycourt/uri-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv-errors@1.0.1", + "name": "ajv-errors", + "version": "1.0.1", + "description": "Custom error messages in JSON-Schema for Ajv validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c245f3bfe2743ef3da7f44ae378bc133778d44a9d18853895dee7185f0e435e2873fc1ee6b127b4b0946bbfa3ae7de79fcdc1a2c7f0640d306f8a689f6a3c89" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ajv-errors@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@3.4.0", + "author": "Evgeny Poberezkin", + "name": "ajv-keywords", + "version": "3.4.0", + "description": "Custom JSON-Schema keywords for Ajv validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "645ced1f35517462c0cc99a9513f4b3452ded58895384ca571a36912eb4cdba3d54c2b4e0fdd7d20c7c3d350a06d1a2e078d8377d6ad8f1d47b1e0b5e4380e64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ajv-keywords@3.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv-keywords#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv-keywords/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv-keywords.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-colors@3.2.3", + "author": "Brian Woodward", + "name": "ansi-colors", + "version": "3.2.3", + "description": "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).", + "hashes": [ + { + "alg": "SHA-512", + "content": "84751719a81e7e3376891ac80fadf172422fa2d3973a88e140a5883d467898d519f672d95beec530da04d653a412135662cc7fef2b0622e2580a230003d167ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Brian Woodward.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-colors@3.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doowb/ansi-colors" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doowb/ansi-colors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doowb/ansi-colors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-html@0.0.7", + "author": "Tjatse", + "name": "ansi-html", + "version": "0.0.7", + "description": "An elegant lib that converts the chalked (ANSI) text to HTML.", + "hashes": [ + { + "alg": "SHA-512", + "content": "26803111ad437cff66db17c1ff2dabfda29cc1736596daf8fb4412042e13acb7dcc72bdea57d8fbf4b7fc698065796c6b03cc2615f12ce35a0c825b44fdc986c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n" + } + } + } + ], + "purl": "pkg:npm/ansi-html@0.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Tjatse/ansi-html" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Tjatse/ansi-html/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Tjatse/ansi-html.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@3.0.0", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "3.0.0", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/anymatch@3.0.2", + "author": "Elan Shanker", + "name": "anymatch", + "version": "3.0.2", + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1735ac82f254c7436388f1a963342377b12c7a86caffd7eae5703028b57251ec2d686591c236c7e96cac0c8d103752a6f9b45d5169eda89684ebe31a6af968c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2014 Elan Shanker\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/anymatch@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/anymatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/anymatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/anymatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-path@3.0.0", + "author": "Jon Schlinkert", + "name": "normalize-path", + "version": "3.0.0", + "description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9289c07d7ce17a3f9671faa323f5ab6a4c77b1dcca9aaa991b3dd7febf8b6086b56c082860a438e3139bfcd76e04c4587c35b8da4d8bf8a073778f3981dbeb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-path@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/normalize-path" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/normalize-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/normalize-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/picomatch@2.0.7", + "author": "Jon Schlinkert", + "name": "picomatch", + "version": "2.0.7", + "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "254ded7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/picomatch@2.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/picomatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/picomatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/picomatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/are-we-there-yet@1.1.5", + "author": "Rebecca Turner", + "name": "are-we-there-yet", + "version": "1.1.5", + "description": "Keep track of the overall completion of many disparate processes", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f1c32e344ee322506a8cc911e0092599f45338540a113f8c546124efe48991a20fa1f722123db547ec7f1f012088cd89fdc2512fe33bc52fbb8a0cc085426de" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/are-we-there-yet@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/are-we-there-yet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/are-we-there-yet/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/are-we-there-yet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@2.3.6", + "name": "readable-stream", + "version": "2.3.6", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@2.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/process-nextick-args@2.0.0", + "name": "process-nextick-args", + "version": "2.0.0", + "description": "process.nextTick but always with args", + "hashes": [ + { + "alg": "SHA-512", + "content": "de8b943a9421b60adb39ad7b27bfaec4e4e92136166863fbfc0868477f80fbfd5ef6c92bcde9468bf757cc4632bdbc6e6c417a5a7db2a6c7132a22891459f56a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# Copyright (c) 2015 Calvin Metcalf\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\n**THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.**\n" + } + } + } + ], + "purl": "pkg:npm/process-nextick-args@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/process-nextick-args" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/process-nextick-args/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/calvinmetcalf/process-nextick-args.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-diff@4.0.0", + "author": "Jon Schlinkert", + "name": "arr-diff", + "version": "4.0.0", + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "hashes": [ + { + "alg": "SHA-512", + "content": "615210f368193c605e6d057f6bc75aaf8022b73090b348e35f030f6659695cc6868d73d85546b04b142b46c8e18eea7257112f6c781498884a565343fa3d3690" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-diff@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/arr-diff" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/arr-diff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/arr-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-flatten@1.1.0", + "author": "Jon Schlinkert", + "name": "arr-flatten", + "version": "1.1.0", + "description": "Recursively flatten an array or arrays.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f784a57947fa79a3cd51eced362069f0a439a4a7a13df365e1b5bbb049edcee2a3ad30c32da1d89c0120350a7cb653e6825dc3699a5fa6e1d3ecbec2778dab6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-flatten@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/arr-flatten" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/arr-flatten/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/arr-flatten.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-union@3.1.0", + "author": "Jon Schlinkert", + "name": "arr-union", + "version": "3.1.0", + "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0aa72784459d36bf515e0994fc96b7c9ab9bba8281c2b694c0ccfc0961eedcf123c539ba0d8cd835bf3d8be154e7f53e0f431131d774db5cb99851c4ba520ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-union@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/arr-union" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/arr-union/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/arr-union.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-unique@0.3.2", + "author": "Jon Schlinkert", + "name": "array-unique", + "version": "0.3.2", + "description": "Remove duplicate values from an array. Fastest ES5 implementation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b69f96c6e5f4940a99ec5f3e3ef0552462c18f90d7cb9fd62f4bae94e6a6d32172366279e5a38062e366d6bfea262940aacfe7a3cdf0a5c277b46a525624f86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-unique@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/array-unique" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/array-unique/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/array-unique.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/asn1@0.2.4", + "author": "Joyent", + "name": "asn1", + "version": "0.2.4", + "description": "Contains parsers and serializers for ASN.1 (currently BER only)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b1fc5c4f9f43038dec89ee2ff2a07185b7f117e8bc8d6f148484f3d73833cbf8a07454f93ce9461f2f494c772f8a0a7bfe7e6bc8cf24b068ae423b0a956d64d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Mark Cavage, All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/asn1@0.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-asn1#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-asn1/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-asn1.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/asn1.js@4.10.1", + "author": "Fedor Indutny", + "name": "asn1.js", + "version": "4.10.1", + "description": "ASN.1 encoder and decoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "a77d9c385e6ad19aacf6e06238d2982e6e810a50a80423393bd25f7944a59d02c14f161d4cafa95be9d77e59bc52429dd9462511b633e6a122d09b9947d7244b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/asn1.js@4.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/asn1.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/asn1.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/asn1.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bn.js@4.11.8", + "author": "Fedor Indutny", + "name": "bn.js", + "version": "4.11.8", + "description": "Big number implementation in pure javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "73df017f7b4f9e223eb1cb1d936dfb92ed43737ba35d04d283288f50310e7bbb51921aeaae276f87c92506fd07084b28d4e2ce61c1ee0affdc4ba0cdc4a1fe64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/bn.js@4.11.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/bn.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/bn.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/bn.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimalistic-assert@1.0.1", + "name": "minimalistic-assert", + "version": "1.0.1", + "description": "minimalistic-assert ===", + "hashes": [ + { + "alg": "SHA-512", + "content": "52d25c003e3211a1ad8cf7b35ae3bdc02e27c149d51fff3f226df210740fe1bebb717943fd0afd85d213094d710db4845e0d9728d68ff23b11795eef41dd34fc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2015 Calvin Metcalf\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/minimalistic-assert@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/minimalistic-assert" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/minimalistic-assert/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/calvinmetcalf/minimalistic-assert.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/assert@1.5.0", + "name": "assert", + "version": "1.5.0", + "description": "The node.js assert module, re-packaged for web browsers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "103b206b0cf0a2e9f609990282dc496efdfddafe276e4f570c3d3acc8fa4418a0133fdd10562e51322404433a6840028b018d600212428be92fa5219b5c02e6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/assert@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/commonjs-assert" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/commonjs-assert/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/commonjs-assert.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/util@0.10.3", + "author": "Joyent", + "name": "util", + "version": "0.10.3", + "description": "Node.JS util module", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0f9bd853437b1ee659755e285189cdc50c892eef40be88751d4ff5bddbaad28075794205ec61b29937c3120b7b49b52921b913b3bec42301a1443515ebfb5f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/util@0.10.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/node-util" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/node-util/issues" + }, + { + "type": "vcs", + "url": "git://github.com/defunctzombie/node-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inherits@2.0.1", + "name": "inherits", + "version": "2.0.1", + "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", + "hashes": [ + { + "alg": "SHA-512", + "content": "93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/inherits@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/inherits#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/inherits/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/inherits.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/assign-symbols@1.0.0", + "author": "Jon Schlinkert", + "name": "assign-symbols", + "version": "1.0.0", + "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.", + "hashes": [ + { + "alg": "SHA-512", + "content": "43e242ed686ef078664dd06987f4eae7d22846da32e8a026e73ccfbf4d1676e8d7f3695b00bf0aed65639deeef742b0099b17801868338fc8ede4d2497ca88af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/assign-symbols@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/assign-symbols" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/assign-symbols/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/assign-symbols.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/astral-regex@1.0.0", + "author": "Kevin Mårtensson", + "name": "astral-regex", + "version": "1.0.0", + "description": "Regular expression for matching astral symbols", + "hashes": [ + { + "alg": "SHA-512", + "content": "f91c9fea0dc12a845cee37e9eda77cb4ce13b4c89a5af6c5ff5fec41c64f9244bb6a0dc3e6730109ed947ce4ce36d024686d2d3b48a3dc2e4bc267f5122ca31e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Kevin Mårtensson (github.com/kevva)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/astral-regex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kevva/astral-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kevva/astral-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kevva/astral-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-each@1.0.3", + "author": "Paul Miller", + "name": "async-each", + "version": "1.0.3", + "description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cff5a143914fc922ddbd1101c88daf6624d6c029c5d26a0c27584af584300d31ca87a23bfee49c90c7ada1119be540593c2d73d23970fa7fd70a08de1fbcb501" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/async-each@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/async-each/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/async-each/issues" + }, + { + "type": "vcs", + "url": "git://github.com/paulmillr/async-each.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-foreach@0.1.3", + "author": "\"Cowboy\" Ben Alman", + "name": "async-foreach", + "version": "0.1.3", + "description": "An optionally-asynchronous forEach with an interesting interface.", + "hashes": [ + { + "alg": "SHA-512", + "content": "554792303f271060566992b8962cc8d6c7f7c840bba67010fe6ac8ee90b67c1cf6b3fb6ae63596127813c1a7f41abbaefcea174462c68355c5aa96018864d824" + } + ], + "purl": "pkg:npm/async-foreach@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/cowboy/javascript-sync-async-foreach" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cowboy/javascript-sync-async-foreach/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cowboy/javascript-sync-async-foreach.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-limiter@1.0.0", + "author": "Samuel Reed", + "name": "async-limiter", + "version": "1.0.0", + "description": "asynchronous function queue with adjustable concurrency", + "hashes": [ + { + "alg": "SHA-512", + "content": "72c3a558601c44525a23a9be17658a76730aaf81e1761155064d07fd06c914c0abfae3b6930a21c1740fc70ffd382c69d39af9821541152ca2a22c71de07e435" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2017 Samuel Reed \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async-limiter@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/strml/async-limiter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/strml/async-limiter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/strml/async-limiter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/atob@2.1.2", + "author": "AJ ONeal", + "name": "atob", + "version": "2.1.2", + "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a6eae92868e1898bfef7a7f725d86bcb8d323924cd64fced788ac0fbdd830bf12b6b1ffeff9511609a0f272026600f76d966f8f0086c6d30e0f7c16340bbc72" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT OR Apache-2.0)", + "text": { + "content": "At your option you may choose either of the following licenses:\n\n * The MIT License (MIT)\n * The Apache License 2.0 (Apache-2.0)\n\n\nThe MIT License (MIT)\n\nCopyright (c) 2015 AJ ONeal\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2015 AJ ONeal\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/atob@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://git.coolaj86.com/coolaj86/atob.js.git" + }, + { + "type": "vcs", + "url": "git://git.coolaj86.com/coolaj86/atob.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/autoprefixer@9.5.1", + "author": "Andrey Sitnik", + "name": "autoprefixer", + "version": "9.5.1", + "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", + "hashes": [ + { + "alg": "SHA-512", + "content": "58a13123f7921a018091600efb031574539b655ee141e9f9e14a43d640824cddedbe52f75b58cbe3e94f3ff33b330a0fed0e111f32ad3b7250e07c5811c77ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/autoprefixer@9.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/autoprefixer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/autoprefixer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/autoprefixer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-range@0.1.2", + "author": "James Talmage", + "name": "normalize-range", + "version": "0.1.2", + "description": "Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates", + "hashes": [ + { + "alg": "SHA-512", + "content": "6dda24fd7bca208de75299259d5e8fda1c6d30dac26e83a301cc81b909d61213baeb9170ad2351c54f80aa9b32bcee8b80660fb2937e96ee422edc388cf44a34" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-range@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/normalize-range#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/normalize-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/normalize-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/num2fraction@1.2.2", + "author": "yisi", + "name": "num2fraction", + "version": "1.2.2", + "description": "Convert number to fraction", + "hashes": [ + { + "alg": "SHA-512", + "content": "635c1911233b5544e1618fb85be5f8c921f699aa9c03ea7b511fb0f1558d59501dea5c2e5d75b3ff0fc2cf8dc9fdd23623e3d2eb00f937e6c9505fa08d6bc8aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/num2fraction@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yisibl/num2fraction#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yisibl/num2fraction/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yisibl/num2fraction.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss@7.0.16", + "author": "Andrey Sitnik", + "name": "postcss", + "version": "7.0.16", + "description": "Tool for transforming styles with JS plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb5234517b56e95cab17d6a0093498ea655884ad5bb212431346bc2ee2e778b1b4ed201466b5a603ac799c1a09ab6ec5b73077e6b487febc9ba68109fe3eb5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss@7.0.16", + "externalReferences": [ + { + "type": "website", + "url": "https://postcss.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-value-parser@3.3.1", + "author": "Bogdan Chadkin", + "name": "postcss-value-parser", + "version": "3.3.1", + "description": "Transforms css values and at-rule params into the tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "a48484eba01b564a787c343b54707044d5f30002898f0e15c3b9d623ff90defba5cbb48d7e0617be6ea2e48805ca51c62b9b0fff11c06c1ecde3d392e2058dc9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-value-parser@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TrySound/postcss-value-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TrySound/postcss-value-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TrySound/postcss-value-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aws4@1.8.0", + "author": "Michael Hart", + "name": "aws4", + "version": "1.8.0", + "description": "Signs and prepares requests using AWS Signature Version 4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c61d51977e21e858b50c2d9658a7f151356a46c367afa2ec2b3dbe85fc03c502569abc7cf9cef295aa8131c1df975535af676c89f3af297dcb42e2cd67e5d2bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Michael Hart (michael.hart.au@gmail.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aws4@1.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mhart/aws4#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mhart/aws4/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mhart/aws4.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-eslint@10.0.1", + "author": "Sebastian McKenzie", + "name": "babel-eslint", + "version": "10.0.1", + "description": "Custom parser for ESLint", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2016 Sebastian McKenzie \n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babel-eslint@10.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel-eslint" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel-eslint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel-eslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@3.7.1", + "name": "eslint-scope", + "version": "3.7.1", + "description": "ECMAScript scope analyzer for ESLint", + "hashes": [ + { + "alg": "SHA-512", + "content": "5be0744af17881a9b209399473eb884cf634f7cf625d57cabe1c2d989a1c4da62873fde48441e6126bdf63f1a7f4703d555ef98eb4040ac1e2ce4370d5bebc14" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "eslint-scope\nCopyright JS Foundation and other contributors, https://js.foundation\nCopyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-scope@3.7.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/eslint/eslint-scope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint-scope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint-scope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esrecurse@4.2.1", + "name": "esrecurse", + "version": "4.2.1", + "description": "ECMAScript AST recursive visitor", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esrecurse@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/esrecurse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/esrecurse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/estools/esrecurse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/estraverse@4.2.0", + "name": "estraverse", + "version": "4.2.0", + "description": "ECMAScript JS AST traversal functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd9e729f7d6cfcc4dd4153fd9cefd9fd9c1f470f3a349e2614ab1eb1caa527ca8027432c96a4e4dd6447a209c87c041bb9d79b78c29f599a055f5619fd101a7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/estraverse@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/estraverse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/estraverse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/estraverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@1.0.0", + "author": "Toru Nagashima", + "name": "eslint-visitor-keys", + "version": "1.0.0", + "description": "Constants and utilities about visitor keys to traverse AST.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e89ef637c50d6b8eb6c1afca14e0edfcf277214eb4483a42dd05c2d478dcd415d7a5f2f60bd479f8053b8e17b417a19112a54c87826ebbe358ef19fee9d8a951" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-visitor-keys@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/eslint-visitor-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint-visitor-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint-visitor-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-loader@8.0.6", + "author": "Luis Couto", + "name": "babel-loader", + "version": "8.0.6", + "description": "babel module loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "caf680c7b70112387e476a062f6bc83e6bde3ba75a4b94d83f61523eae1be825188d4fe2943e071f27cb21af4a523e8e281711f5f41c97536f50e4d635a27a9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2019 Luís Couto \n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babel-loader@8.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader-utils@1.2.3", + "author": "Tobias Koppers @sokra", + "name": "loader-utils", + "version": "1.2.3", + "description": "utils for webpack loaders", + "hashes": [ + { + "alg": "SHA-512", + "content": "b62bfae86d129a23b1fa92d632d18491f4847a3c6f6fa37ab91ad08df589213efd5bd18ca6029e0809a6f5a5412ad778584827b5c888f02b06aa3a43a02589ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader-utils@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/loader-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/loader-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/loader-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/big.js@5.2.2", + "author": "Michael Mclaughlin", + "name": "big.js", + "version": "5.2.2", + "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa137f661d83d3c331eb9a59ff88396ec98d89952e0a10e241f4d443ba89af8fe4ba8a42afcf3166c017bfa981a1912c508e0eb861e55f9f6a13de0ada6316f1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT Licence (Expat).\r\n\r\nCopyright (c) 2018 Michael Mclaughlin\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\n" + } + } + } + ], + "purl": "pkg:npm/big.js@5.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MikeMcl/big.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MikeMcl/big.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MikeMcl/big.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/emojis-list@2.1.0", + "author": "Kiko Beats", + "name": "emojis-list", + "version": "2.1.0", + "description": "Complete list of standard emojis.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9271c464c82cf0107e3089e892635383f3b23e501d76085ed58060370241739cec262feec88717a120ec2ff5bdca63ac06804674f2075d827dfaa285c11c039e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright © 2015 Kiko Beats\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/emojis-list@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Kikobeats/emojis-list" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Kikobeats/emojis-list/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kikobeats/emojis-list.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json5@1.0.1", + "author": "Aseem Kishore", + "name": "json5", + "version": "1.0.1", + "description": "JSON for humans.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4412eb88ee869dd1de9cd8f72b4d12e82c7d8936e23f689c47b154f685514ae9f287bbe31738d761cf3ccd0256f725731eb8dd68fa40d4efc7d5d581fa56629" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2012-2018 Aseem Kishore, and [others].\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n[others]: https://github.com/json5/json5/contributors\n" + } + } + } + ], + "purl": "pkg:npm/json5@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://json5.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/json5/json5/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/json5/json5.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-istanbul@5.1.4", + "author": "Thai Pangsakulyanont @dtinth", + "name": "babel-plugin-istanbul", + "version": "5.1.4", + "description": "A babel plugin that adds istanbul instrumentation to ES6 code", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4ba610b451203cb788b5cc2b636db35bea3263ffdf97e8fdfb41f8ab73fef4110df8c4a94c5be6b54471b0c4623e4b05a9370676ec7aafcc0a1b7aa697c2267" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2016, Istanbul Code Coverage\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of babel-plugin-istanbul nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/babel-plugin-istanbul@5.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/istanbuljs/babel-plugin-istanbul#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/babel-plugin-istanbul/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/istanbuljs/babel-plugin-istanbul.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-instrument@3.3.0", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-instrument", + "version": "3.3.0", + "description": "Core istanbul API for JS code coverage", + "hashes": [ + { + "alg": "SHA-512", + "content": "97b4c3fd59c1b08076389bd2cb168b5bf69bd7ef7677164d1fdc0b1fbb873cf8a8cb7259f2d9f1d945d474a99d92098fd8414fce0eb8093a143fa7404b7537d9" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-instrument@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-syntax-export-extensions@6.13.0", + "name": "babel-plugin-syntax-export-extensions", + "version": "6.13.0", + "description": "Allow parsing of export extensions", + "hashes": [ + { + "alg": "SHA-512", + "content": "128d2b7116880cc95dfd6ea656178f8ae748b8b5be0abffc7af796de605111f64e452719831e2b87a0403f2bf374473f259bd0f8b902f34b7454616ce855fe96" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-syntax-export-extensions@6.13.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-extensions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-define@1.3.1", + "name": "babel-plugin-transform-define", + "version": "1.3.1", + "description": "Babel plugin that replaces member expressions and typeof statements with strings", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2016 Formidable\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-define@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FormidableLabs/babel-plugin-transform-define" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FormidableLabs/babel-plugin-transform-define/issues" + }, + { + "type": "vcs", + "url": "git://github.com/FormidableLabs/babel-plugin-transform-define.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/traverse@0.6.6", + "author": "James Halliday", + "name": "traverse", + "version": "0.6.6", + "description": "traverse and transform objects by visiting every node on a recursive walk", + "hashes": [ + { + "alg": "SHA-512", + "content": "91d7f824ab3c95b011c56769ed129d373a090611947086a549889bb86c8725b9a4e34a4ecac434f903ef96408e2023a2bc3594d88268dab92bc724cad801f87f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\n\nThis project is free software released under the MIT/X11 license:\nhttp://www.opensource.org/licenses/mit-license.php \n\nCopyright 2010 James Halliday (mail@substack.net)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/traverse@0.6.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/js-traverse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/js-traverse/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/js-traverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-export-extensions@6.22.0", + "name": "babel-plugin-transform-export-extensions", + "version": "6.22.0", + "description": "Compile export extensions to ES2015", + "hashes": [ + { + "alg": "SHA-512", + "content": "9adcc42f320d698a9d56097266b0c357091c151b84eece90505597c707df2801c1fcd91f6c9d8d252cadba0078df2b480bc515b77d04adecb1fbb80dc939032e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-export-extensions@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-export-extensions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-runtime@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-runtime", + "version": "6.26.0", + "description": "babel selfContained runtime", + "hashes": [ + { + "alg": "SHA-512", + "content": "21328dbaadb02a55b57c983db125b9d9e7a9a1881906082f3801c2d2efc262efeac50f445734e10a047af419d25cb1e3cb67fb498e73690e32b7b1fd655c58da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-runtime@6.26.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.11.1", + "author": "Ben Newman", + "name": "regenerator-runtime", + "version": "0.11.1", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f463f249e1586eb3230e77fa36e5ade3754a8dfdb0bce4416c6a82fd3aa9b2fcee1e7c287ec61a7bca3d8410eb23f7be2abcc91c5bc0305332758c1fcc6f10b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-runtime@0.11.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/balanced-match@1.0.0", + "author": "Julian Gruber", + "name": "balanced-match", + "version": "1.0.0", + "description": "Match balanced character pairs, like \"{\" and \"}\"", + "hashes": [ + { + "alg": "SHA-512", + "content": "de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "(MIT)\n\nCopyright (c) 2013 Julian Gruber <julian@juliangruber.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/balanced-match@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/balanced-match" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/balanced-match/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/balanced-match.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base@0.11.2", + "author": "Jon Schlinkert", + "name": "base", + "version": "0.11.2", + "description": "base is the foundation for creating modular, unit testable and highly pluggable node.js applications, starting with a handful of common methods, like `set`, `get`, `del` and `use`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e53e8fe313e0a69d180c5bd25b0119e0da04dda3384014170f39956eb6829058fccc733e99b6bc4b2a81e436d95b247b9981e8e98ec1750a373280389b44de42" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/base@0.11.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/node-base/base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/node-base/base/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/node-base/base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cache-base@1.0.1", + "author": "Jon Schlinkert", + "name": "cache-base", + "version": "1.0.1", + "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d7db749fbc5da15af9434f3eeac17ce5867d56ebdba5516ae492e6d2072c4660af4ced58dddb9324631a39061fd7845ab38a3a7449efa2abe376b50ad6d36d82" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/cache-base@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/cache-base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/cache-base/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/cache-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/collection-visit@1.0.0", + "author": "Jon Schlinkert", + "name": "collection-visit", + "version": "1.0.0", + "description": "Visit a method over the items in an object, or map visit over the objects in an array.", + "hashes": [ + { + "alg": "SHA-512", + "content": "57cf0f24e0aa25fb194b8e580442c38268509040a8910000afd5d1e214fa785905b003ec0ac9371280c74ae04f633ca08eab8633fd0a178bddc138903ba95b77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/collection-visit@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/collection-visit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/collection-visit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/collection-visit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-visit@1.0.0", + "author": "Jon Schlinkert", + "name": "map-visit", + "version": "1.0.0", + "description": "Map `visit` over an array of objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdd989045bef551fc7e7009fb023fb5f148ba7edf8eb2019df45b2d8eb102dc1f5f4e5463166b732cf6ab8ed34963f726ecc92bb780a38834d80809be19a9abb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-visit@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/map-visit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/map-visit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/map-visit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-visit@1.0.1", + "author": "Jon Schlinkert", + "name": "object-visit", + "version": "1.0.1", + "description": "Call a specified method on each value in the given object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e903725fbb93bb0ab13fba660c1aa004329d999c2cd6b5eb894c97339286ebeec9d1a611bae006a1ceb7e8819d2f380e2fbed65302fe129a1326b107c16b3238" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-visit@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object-visit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object-visit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object-visit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isobject@3.0.1", + "author": "Jon Schlinkert", + "name": "isobject", + "version": "3.0.1", + "description": "Returns true if the value is an object and not an array or null.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e51d1899608ce0590dfc670e36181bace9e3cef3d0918d42addc610620e5fe61291facc8732c6b3b7319e9a5ff89061b9e424a9292a564d8fa360682c1cb80" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/isobject@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/isobject" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/isobject/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/isobject.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-value@2.0.6", + "author": "Jon Schlinkert", + "name": "get-value", + "version": "2.0.6", + "description": "Use property paths (`a.b.c`) to get a nested value from an object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e7d144039711f505aa4cbb718fb5fec2b983704597f68300ae3ea6f21baa41f167e6169cea732e31b4068031486736a8cc2938823d91b6a0c4f7612c7c53634" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-value@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/get-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/get-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/get-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-value@1.0.0", + "author": "Jon Schlinkert", + "name": "has-value", + "version": "1.0.0", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8291bddfa8fcfcccda7880f96227fee7bedcd7b4f16839a1bb25604b0b672ffabc5144f24a0f0c79c6fef027f5a2d80ba03ec30c7ef96b1a7ce8447b2c5b1fdd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-value@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/has-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/has-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/has-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-values@1.0.0", + "author": "Jon Schlinkert", + "name": "has-values", + "version": "1.0.0", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "hashes": [ + { + "alg": "SHA-512", + "content": "27c4b4704756b906ea0fdfffb6567188cb8c366c41f0f944c2f630bb1b13991d46e515d478f117fd2267eda0f418c2e27ae6584b0347d1c42e246c2762e9d745" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-values@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/has-values" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/has-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/has-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-number@3.0.0", + "author": "Jon Schlinkert", + "name": "is-number", + "version": "3.0.0", + "description": "Returns true if the value is a number. comprehensive tests.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95ae643d42f022091249a663f70eff035b87a8e04080e84350a4390a47cbf0b6784a2eabe3ed83d2123a6f8a3ad0c5b8523db23490115886540cfc65bce61073" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-number@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-number" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@4.0.0", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "4.0.0", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kind-of@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/set-value@2.0.0", + "author": "Jon Schlinkert", + "name": "set-value", + "version": "2.0.0", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d99d0b45452f61e17b8081457a9e3c92c3ead0d474f5ee682a8157ce768c18d72ef846407c69f22f42bac67a36802a97e9d658119463adc9f4e3f82f67370a85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/set-value@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/set-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/set-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/set-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extend-shallow@2.0.1", + "author": "Jon Schlinkert", + "name": "extend-shallow", + "version": "2.0.1", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc29d3b65c4da0088373782a636698016171ed759689ab2e1762bc31ee566cdf28b4729350a0708cfb4da51b3fadb5199bb2b158068d8fb3f56bfa79d866d5ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extend-shallow@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/extend-shallow" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-extendable@0.1.1", + "author": "Jon Schlinkert", + "name": "is-extendable", + "version": "0.1.1", + "description": "Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. \"can the value have keys?\"", + "hashes": [ + { + "alg": "SHA-512", + "content": "e413142cda1bd6f8055fa123430e62cd60f1ade7162bd00cef6aee80daf44c595d30e8b47e3e8993ecde288b74c468f87047d0209b61e30dce296389e1ff8017" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-extendable@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-extendable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-extendable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-extendable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-plain-object@2.0.4", + "author": "Jon Schlinkert", + "name": "is-plain-object", + "version": "2.0.4", + "description": "Returns true if an object was created by the `Object` constructor.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8793e98179168ad737f0104c61ac1360c5891c564956706ab85139ef11698c1f29245885ea067e6d4f96c88ff2a9788547999d2ec81835a3def2e6a8e94bfd3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-plain-object@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-plain-object" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-plain-object/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-plain-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split-string@3.1.0", + "author": "Jon Schlinkert", + "name": "split-string", + "version": "3.1.0", + "description": "Split a string on a character except when the character is escaped.", + "hashes": [ + { + "alg": "SHA-512", + "content": "04a528c3f4ace2b037057588bd7cd2d6cbcae5fe520467caca280e37540d59ea51167e0febc23daf58805fe65262be9b0f1258e1db3e3e7049dcf85dae1409e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/split-string@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/split-string" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/split-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/split-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extend-shallow@3.0.2", + "author": "Jon Schlinkert", + "name": "extend-shallow", + "version": "3.0.2", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc29d3b65c4da0088373782a636698016171ed759689ab2e1762bc31ee566cdf28b4729350a0708cfb4da51b3fadb5199bb2b158068d8fb3f56bfa79d866d5ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extend-shallow@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/extend-shallow" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/extend-shallow.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-extendable@1.0.1", + "author": "Jon Schlinkert", + "name": "is-extendable", + "version": "1.0.1", + "description": "Returns true if a value is a plain object, array or function.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e413142cda1bd6f8055fa123430e62cd60f1ade7162bd00cef6aee80daf44c595d30e8b47e3e8993ecde288b74c468f87047d0209b61e30dce296389e1ff8017" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-extendable@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-extendable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-extendable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-extendable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-object-path@0.3.0", + "author": "Jon Schlinkert", + "name": "to-object-path", + "version": "0.3.0", + "description": "Create an object path from a list or array of strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f66587767191ba1de89e871a1f3ba4caf099873bebead89f940cbf2511577095f44e381f580f6993db7c08c6f398113825fc39f295db92782d06da98c73344ca" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-object-path@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/to-object-path" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/to-object-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/to-object-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/union-value@1.0.0", + "author": "Jon Schlinkert", + "name": "union-value", + "version": "1.0.0", + "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4efddca9dc98f328d6f59709f563fb25d1d2df89dab73ca50f4a0d44b9586d639f51d0b8110d2c7f77ee6e7aab2b6204aed966a1b166b92d695afbfcf15821a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/union-value@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/union-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/union-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/union-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/set-value@0.4.3", + "author": "Jon Schlinkert", + "name": "set-value", + "version": "0.4.3", + "description": "Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d99d0b45452f61e17b8081457a9e3c92c3ead0d474f5ee682a8157ce768c18d72ef846407c69f22f42bac67a36802a97e9d658119463adc9f4e3f82f67370a85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/set-value@0.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/set-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/set-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/set-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unset-value@1.0.0", + "author": "Jon Schlinkert", + "name": "unset-value", + "version": "1.0.0", + "description": "Delete nested properties from an object using dot notation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca1bf92384ec95d2dd13751c5509f4843d93e6c3423efe3eaa6fc24d4a51288a70b61611222a6c00f76cacda4e23bf613d06b4ad34de5b6d85aba25645c4e036" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unset-value@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/unset-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/unset-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/unset-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-value@0.3.1", + "author": "Jon Schlinkert", + "name": "has-value", + "version": "0.3.1", + "description": "Returns true if a value exists, false if empty. Works with deeply nested values using object paths.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8291bddfa8fcfcccda7880f96227fee7bedcd7b4f16839a1bb25604b0b672ffabc5144f24a0f0c79c6fef027f5a2d80ba03ec30c7ef96b1a7ce8447b2c5b1fdd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-value@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/has-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/has-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/has-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-values@0.1.4", + "author": "Jon Schlinkert", + "name": "has-values", + "version": "0.1.4", + "description": "Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays. ", + "hashes": [ + { + "alg": "SHA-512", + "content": "27c4b4704756b906ea0fdfffb6567188cb8c366c41f0f944c2f630bb1b13991d46e515d478f117fd2267eda0f418c2e27ae6584b0347d1c42e246c2762e9d745" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-values@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/has-values" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/has-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/has-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isobject@2.1.0", + "author": "Jon Schlinkert", + "name": "isobject", + "version": "2.1.0", + "description": "Returns true if the value is an object and not an array or null.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e51d1899608ce0590dfc670e36181bace9e3cef3d0918d42addc610620e5fe61291facc8732c6b3b7319e9a5ff89061b9e424a9292a564d8fa360682c1cb80" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/isobject@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/isobject" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/isobject/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/isobject.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/class-utils@0.3.6", + "author": "Jon Schlinkert", + "name": "class-utils", + "version": "0.3.6", + "description": "Utils for working with JavaScript classes and prototype methods.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8e84f6bf163eece9363c1fc7ac1aee5036930c431cfbf61faeaf3acd60dea69fef419f194319fe5067e5de083b314a33eab12479e973993899a97aeae72cc7a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/class-utils@0.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/class-utils" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/class-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/class-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/define-property@0.2.5", + "author": "Jon Schlinkert", + "name": "define-property", + "version": "0.2.5", + "description": "Define a non-enumerable property on an object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7194d82855aca6df6366c32c716a3cb1cff995b3c2f50d0de6704b81bf9877dd7988bdee741d6e1604b707c602c7ae94547ab4d7c0c0545a1e7bbc7e83182078" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/define-property@0.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/define-property" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/define-property.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-descriptor@0.1.6", + "author": "Jon Schlinkert", + "name": "is-descriptor", + "version": "0.1.6", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9e8ace56a90195ee97a8a03c8b98d10f52ba6cf7e4975f973da4bdf1101fb87bd1e71ae0daee607b907c47c3809ba92f64d53da1387de688bf27f16b62615b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-descriptor@0.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-accessor-descriptor@0.1.6", + "author": "Jon Schlinkert", + "name": "is-accessor-descriptor", + "version": "0.1.6", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b504cd6a9c36cc446de597653d7522b450c1ee58eb37a58dc0b5c16c9afc0fb4a2f730c2ff43cea2f868a52dfbea12ce065be13107dd6d437220f67a03219f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-accessor-descriptor@0.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-data-descriptor@0.1.4", + "author": "Jon Schlinkert", + "name": "is-data-descriptor", + "version": "0.1.4", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb0f43e6e952a013659b0f4e1e7dd4dafe754b2a0277485ef9b077c4c97ada88a386bb29c68c2353e00870363437788425b504901d79225300490b3162282f5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-data-descriptor@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-data-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@5.1.0", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "5.1.0", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kind-of@5.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/static-extend@0.1.2", + "author": "Jon Schlinkert", + "name": "static-extend", + "version": "0.1.2", + "description": "Adds a static `extend` method to a class, to simplify inheritance. Extends the static properties, prototype properties, and descriptors from a `Parent` constructor onto `Child` constructors.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef613dfae2dcdbb32def5f29307b7d54c36200be0b32c9836c1bdaf26c56502913d3b7d2cc418c6140a4d17598ea5a748fa441006e1c277996b99bf6384decd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/static-extend@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/static-extend" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/static-extend/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/static-extend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-copy@0.1.0", + "author": "Jon Schlinkert", + "name": "object-copy", + "version": "0.1.0", + "description": "Copy static properties, prototype properties, and descriptors from one object to another.", + "hashes": [ + { + "alg": "SHA-512", + "content": "efd2d89fa5406fadf382d980b5e54e5a8f55763ef5655072dcf6ec7be56ac43a443fcdd7bae8ccac6a8723001727923f68cd3353b748c8802189f5533eb348b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-copy@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object-copy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object-copy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object-copy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/copy-descriptor@0.1.1", + "author": "Jon Schlinkert", + "name": "copy-descriptor", + "version": "0.1.1", + "description": "Copy a descriptor from object A to object B", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e0674a4571a9045256f040454d837f90022b351724cbdd07a5f45632f294a442aa06dcf3684f46ce090b4e5dc3a4babdb5af612ada423e204fa0b2600456563" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/copy-descriptor@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/copy-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/copy-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/copy-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/define-property@1.0.0", + "author": "Jon Schlinkert", + "name": "define-property", + "version": "1.0.0", + "description": "Define a non-enumerable property on an object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7194d82855aca6df6366c32c716a3cb1cff995b3c2f50d0de6704b81bf9877dd7988bdee741d6e1604b707c602c7ae94547ab4d7c0c0545a1e7bbc7e83182078" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/define-property@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/define-property" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/define-property.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-descriptor@1.0.2", + "author": "Jon Schlinkert", + "name": "is-descriptor", + "version": "1.0.2", + "description": "Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9e8ace56a90195ee97a8a03c8b98d10f52ba6cf7e4975f973da4bdf1101fb87bd1e71ae0daee607b907c47c3809ba92f64d53da1387de688bf27f16b62615b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-descriptor@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-accessor-descriptor@1.0.0", + "author": "Jon Schlinkert", + "name": "is-accessor-descriptor", + "version": "1.0.0", + "description": "Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b504cd6a9c36cc446de597653d7522b450c1ee58eb37a58dc0b5c16c9afc0fb4a2f730c2ff43cea2f868a52dfbea12ce065be13107dd6d437220f67a03219f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-accessor-descriptor@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-accessor-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-accessor-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@6.0.2", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "6.0.2", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kind-of@6.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-data-descriptor@1.0.0", + "author": "Jon Schlinkert", + "name": "is-data-descriptor", + "version": "1.0.0", + "description": "Returns true if a value has the characteristics of a valid JavaScript data descriptor.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb0f43e6e952a013659b0f4e1e7dd4dafe754b2a0277485ef9b077c4c97ada88a386bb29c68c2353e00870363437788425b504901d79225300490b3162282f5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-data-descriptor@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-data-descriptor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-data-descriptor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-data-descriptor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mixin-deep@1.3.1", + "author": "Jon Schlinkert", + "name": "mixin-deep", + "version": "1.3.1", + "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", + "hashes": [ + { + "alg": "SHA-512", + "content": "591a039fffe65c1889d47e34aea6b7bc7d2da1e3f04ac19be398889d6953c926be52ee24ded6144b16b6bf52aa0222edbe5ad2cda131a92d60b64f7a03dcef10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mixin-deep@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/mixin-deep" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/mixin-deep/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/mixin-deep.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/for-in@1.0.2", + "author": "Jon Schlinkert", + "name": "for-in", + "version": "1.0.2", + "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec4c265eb3a3c8bf82871321986e659d6f4c3edd5a21e644c0a850ce8054753574377ceec160d961525ab43bd9d8ecb33d4bdd200643b027ad937728c8c7dc9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/for-in@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/for-in" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/for-in/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/for-in.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pascalcase@0.1.1", + "author": "Jon Schlinkert", + "name": "pascalcase", + "version": "0.1.1", + "description": "Convert a string to pascal-case.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c75dfbbfc8e411cbdbd83ad50354c37ad0e1098d6d35dc6a0e6c6d68fb1c104e907d798257fc18d732c756d776433ebb85858627d001b6db0d3181033097737" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pascalcase@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/pascalcase" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/pascalcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/pascalcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base64-js@1.3.0", + "author": "T. Jameson Little", + "name": "base64-js", + "version": "1.3.0", + "description": "Base64 encoding/decoding in pure JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "00aa5a6251e7f2de1255b3870b2f9be7e28a82f478bebb03f2f6efadb890269b3b7ca0d3923903af2ea38b4ad42630b49336cd78f2f0cf1abc8b2a68e35a9e58" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/base64-js@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/beatgammit/base64-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/beatgammit/base64-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/beatgammit/base64-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/batch@0.6.1", + "author": "TJ Holowaychuk", + "name": "batch", + "version": "0.6.1", + "description": "Simple async batch with concurrency control and progress reporting.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7e54088c44be943e4c7e92e74dbf14e5ea10765cd3421b6afeef08b155f218c2eff61ca4578a6c10c9aba62e332f796bd3d8791dfdc009c3e40131f27f10a57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/batch@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/batch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/batch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/batch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bfj@6.1.1", + "author": "Phil Booth", + "name": "bfj", + "version": "6.1.1", + "description": "Big-friendly JSON. Asynchronous streaming functions for large JSON data sets.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/bfj@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://gitlab.com/philbooth/bfj" + }, + { + "type": "issue-tracker", + "url": "https://gitlab.com/philbooth/bfj/issues" + }, + { + "type": "vcs", + "url": "git+https://gitlab.com/philbooth/bfj.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bluebird@3.5.5", + "author": "Petka Antonov", + "name": "bluebird", + "version": "3.5.5", + "description": "Full featured Promises/A+ implementation with exceptionally good performance", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e9363e860d0cdd7d6fabd969e7ef189201ded33378f39311970464ed58ab925efd71515f9acf1026f2375664dd3a413424fb63765c1f6344392f6e6426711b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018 Petka Antonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bluebird@3.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/petkaantonov/bluebird" + }, + { + "type": "issue-tracker", + "url": "http://github.com/petkaantonov/bluebird/issues" + }, + { + "type": "vcs", + "url": "git://github.com/petkaantonov/bluebird.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/check-types@7.4.0", + "author": "Phil Booth", + "name": "check-types", + "version": "7.4.0", + "description": "A little library for asserting types and values.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/check-types@7.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://gitlab.com/philbooth/check-types.js" + }, + { + "type": "issue-tracker", + "url": "https://gitlab.com/philbooth/check-types.js/issues" + }, + { + "type": "vcs", + "url": "git+https://gitlab.com/philbooth/check-types.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hoopy@0.1.4", + "author": "Phil Booth", + "name": "hoopy", + "version": "0.1.4", + "description": "Like an array, but rounder.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright © 2017 Phil Booth\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/hoopy@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://gitlab.com/philbooth/hoopy#readme" + }, + { + "type": "issue-tracker", + "url": "https://gitlab.com/philbooth/hoopy/issues" + }, + { + "type": "vcs", + "url": "git+https://gitlab.com/philbooth/hoopy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tryer@1.0.1", + "author": "Phil Booth", + "name": "tryer", + "version": "1.0.1", + "description": "Because everyone loves a tryer! Conditional and repeated task invocation for node and browser.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/tryer@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://gitlab.com/philbooth/tryer" + }, + { + "type": "issue-tracker", + "url": "https://gitlab.com/philbooth/tryer/issues" + }, + { + "type": "vcs", + "url": "git+https://gitlab.com/philbooth/tryer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/binary-extensions@1.13.1", + "author": "Sindre Sorhus", + "name": "binary-extensions", + "version": "1.13.1", + "description": "List of binary file extensions", + "hashes": [ + { + "alg": "SHA-512", + "content": "527ecc2040dd502e603697060d5f7ba29d58c24ef8f0ca477054c7a18b3aaa78f56778fb239dd51b79f06612b3a016666dd44d9dbe9645d165c25eed483b991b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/binary-extensions@1.13.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/binary-extensions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/binary-extensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/binary-extensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/block-stream@0.0.9", + "author": "Isaac Z. Schlueter", + "name": "block-stream", + "version": "0.0.9", + "description": "a stream of blocks", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a8adb9c954f208e03b9429b8c04407bcbbc11fa8e9a4104692148ca843b3a34c79fa91a7f15a5d302e0a19dab5da61deccc8b703694e139a17f1b7081c71c31" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) Isaac Z. Schlueter\nAll rights reserved.\n\nThe BSD License\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\n``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/block-stream@0.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/block-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/block-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/block-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/body-parser@1.19.0", + "name": "body-parser", + "version": "1.19.0", + "description": "Node.js body parsing middleware", + "hashes": [ + { + "alg": "SHA-512", + "content": "0df27eaba10f7062990f54165234a9aa9f90edb0d04ec408178cdf500b59eaa93e1ffdff411860f42129dfdb2cfbf4f6bf0d3e1da89d0b479c263fc344b21a2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/body-parser@1.19.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/body-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/body-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/body-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bytes@3.1.0", + "author": "TJ Holowaychuk", + "name": "bytes", + "version": "3.1.0", + "description": "Utility to parse a string bytes to bytes and vice-versa", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcd7fb4f2cd3c7a4b7c9124e6ce015efde7aafc72bdbe3a3f000b976df3048fdc1400a1e5f9f0da07c8253c3fccc690d5d2b634d28ba7f33ba174a4175c61b12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 TJ Holowaychuk \nCopyright (c) 2015 Jed Watson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bytes@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/bytes.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/bytes.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/bytes.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-errors@1.7.2", + "author": "Jonathan Ong", + "name": "http-errors", + "version": "1.7.2", + "description": "Create HTTP error objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a993d4a6ecd988f911e19e3e8e2160c8d5de9f228140b45b7d44b693311960ffcc38f63b804adb2b060a740e9e0e7717556d121e2a1b4252fa22fd1b8084ee2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-errors@1.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/http-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/http-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/http-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/setprototypeof@1.1.1", + "author": "Wes Todd", + "name": "setprototypeof", + "version": "1.1.1", + "description": "A small polyfill for Object.setprototypeof", + "hashes": [ + { + "alg": "SHA-512", + "content": "1392c35fb5aba7ce4a8a5e5b859bf8ea3f2339e6e82aae4932660cde05467461fcc45a4f59750cb0dae53830ab928c4c11e362fd7648c2e46f6385cdc18309a7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Wes Todd\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nSPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\nOF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/setprototypeof@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wesleytodd/setprototypeof" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wesleytodd/setprototypeof/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wesleytodd/setprototypeof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/toidentifier@1.0.0", + "author": "Douglas Christopher Wilson", + "name": "toidentifier", + "version": "1.0.0", + "description": "Convert a string of words to a JavaScript identifier", + "hashes": [ + { + "alg": "SHA-512", + "content": "a39b123ca12483f0c840d987e37574fee7ab2eba7355e764521f2d18dbda797a5fa6ec2329e9e54a8c7fd8efc14e5654b447be246eece58844cfad3c3e500744" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/toidentifier@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/toidentifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/toidentifier/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/toidentifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.7.0", + "name": "qs", + "version": "6.7.0", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014 Nathan LaFreniere and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/raw-body@2.4.0", + "author": "Jonathan Ong", + "name": "raw-body", + "version": "2.4.0", + "description": "Get and validate the raw body of a readable stream.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aaa241b44c95812d1998f19d0853d627716b7a8aaf1b83154259ff902805ece96af7921b3a9d3f056c8cc1b76d9f8553be433c63b921090d97824fed72b0978a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/raw-body@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stream-utils/raw-body#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stream-utils/raw-body/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stream-utils/raw-body.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bonjour@3.5.0", + "author": "Thomas Watson Steen", + "name": "bonjour", + "version": "3.5.0", + "description": "A Bonjour/Zeroconf implementation in pure JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "45a5536e5afe3a71258b4affb9df089eb53b0fe1b4cba689865c5a2dae8fc2dcb8fb1a316e817506c508e39b6e8ef4696e3f5d415a2094286aa27180b2310162" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016 Thomas Watson Steen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bonjour@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/watson/bonjour" + }, + { + "type": "issue-tracker", + "url": "https://github.com/watson/bonjour/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/watson/bonjour.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-flatten@2.1.2", + "author": "Blake Embrey", + "name": "array-flatten", + "version": "2.1.2", + "description": "Flatten nested arrays", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c254042cc167a6bba51dc6c0c5157ffe815798a8a0287770f75159bdd631f0ca782e3b002f60f871f2736533ef8da9170ae82c71a5469f8e684874a88789baa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-flatten@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/array-flatten" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/array-flatten/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/array-flatten.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-equal@1.0.1", + "author": "James Halliday", + "name": "deep-equal", + "version": "1.0.1", + "description": "node's assert.deepEqual algorithm", + "hashes": [ + { + "alg": "SHA-512", + "content": "c9df5ce40762a95711f898dcc1441bf4392125cf2780daf431a844046bc3889c3ca6e59a6f6c99961fa791ab0e9d93fe1064c03faad1a76273261259cef345f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-equal@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-deep-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-deep-equal/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-deep-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dns-equal@1.0.0", + "author": "Thomas Watson Steen", + "name": "dns-equal", + "version": "1.0.0", + "description": "Compare DNS record strings for equality", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfea5a0fa61442c93e01b18210ce0face5d2b2ce6077ae907dc541153291fc7a452fd8c2aa2912f781d8c0ac30e9f4323bb231ac823252efa0d0a6bdb544b60a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Thomas Watson Steen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dns-equal@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/watson/dns-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/watson/dns-equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/watson/dns-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dns-txt@2.0.2", + "author": "Thomas Watson Steen", + "name": "dns-txt", + "version": "2.0.2", + "description": "Encode/decode DNS-SD TXT record RDATA fields", + "hashes": [ + { + "alg": "SHA-512", + "content": "231e4fad68e986e4a851757f66fe606851e39da26d6f4d85dbe4a2dc7b7d77227cefe67f94c9b2f9da4d1ed4c6ada34af79f27757ab68be18b916b161dc29a05" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Thomas Watson Steen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dns-txt@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/watson/dns-txt" + }, + { + "type": "issue-tracker", + "url": "https://github.com/watson/dns-txt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/watson/dns-txt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-indexof@1.1.1", + "author": "Ryan Day", + "name": "buffer-indexof", + "version": "1.1.1", + "description": "find the index of a buffer in a buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3face120f3a8e2bed3d378e5144fad6324ed586b54eb47f3a4a824990f2abce16261dcbbae8a984160937e7e6e71b9f224e17005704c2d7bff16cc2f087ffd6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Ryan Day\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer-indexof@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/soldair/node-buffer-indexof#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/soldair/node-buffer-indexof/issues" + }, + { + "type": "vcs", + "url": "git://github.com/soldair/node-buffer-indexof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/multicast-dns@6.2.3", + "author": "Mathias Buus", + "name": "multicast-dns", + "version": "6.2.3", + "description": "Low level multicast-dns implementation in pure javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e2e89e5e9db3321911c802400ebb759d57c9e082abe228210ab5770ea9fa61659b50ae61cac9c7f29c9d95ede54f500e0d849e95ed67f84e619b4f0284f41ea" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/multicast-dns@6.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/multicast-dns" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/multicast-dns/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/multicast-dns.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dns-packet@1.3.1", + "author": "Mathias Buus", + "name": "dns-packet", + "version": "1.3.1", + "description": "An abstract-encoding compliant module for encoding / decoding DNS packets", + "hashes": [ + { + "alg": "SHA-512", + "content": "050e85e2fc9c2d706f76b259e92de065ec2deab72b92cf4a06033dbeb856fa49c646a73cb84753edfb82c25a1cee79f2e71368309d7b1c61f447fe9fa68f0408" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dns-packet@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/dns-packet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/dns-packet/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/dns-packet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ip@1.1.5", + "author": "Fedor Indutny", + "name": "ip", + "version": "1.1.5", + "description": "[![](https://badge.fury.io/js/ip.svg)](https://www.npmjs.com/package/ip)", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ee1313d8522bbaa8c0506f8974e9e726e93eae8f386687e31e25c5bdc1af3d3e8033e69bdde333e0379589575d3899be92d93d40c0d200681ef424dacb41686" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ip@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/node-ip" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/node-ip/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/node-ip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/thunky@1.0.3", + "author": "Mathias Buus Madsen", + "name": "thunky", + "version": "1.0.3", + "description": "delay the evaluation of a paramless async function and cache the result", + "hashes": [ + { + "alg": "SHA-512", + "content": "beab93b7fb0a37316a14af0328b837dd4edd7a0f7758a607e02136525f613b23027e6ed55e033b189411a4f0209e6827adfe34ec572af1341510a95b6af02ef8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/thunky@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/thunky#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/thunky/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/thunky.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/multicast-dns-service-types@1.1.0", + "author": "Mathias Buus", + "name": "multicast-dns-service-types", + "version": "1.1.0", + "description": "Parse and stringify mdns service types", + "hashes": [ + { + "alg": "SHA-512", + "content": "72702c495c480ec62dd2fec7982d21599170c174a1f84e8f802ad1103b8dfc4b2380bc00e5746694c1e14a20cfaede87c58d604e2bc46bf661ec6b4e0e82debd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/multicast-dns-service-types@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/multicast-dns-service-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/multicast-dns-service-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/multicast-dns-service-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/braces@2.3.2", + "author": "Jon Schlinkert", + "name": "braces", + "version": "2.3.2", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "10830722fd945c7585636c6e6d418acfe86af6136410d8f83e3bebee1e7c726260a642b6c8c94a03c238f387fb312b6d933540cbf94bed7f710da20b77a6afcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/braces@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/braces" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/braces/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/braces.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fill-range@4.0.0", + "author": "Jon Schlinkert", + "name": "fill-range", + "version": "4.0.0", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "hashes": [ + { + "alg": "SHA-512", + "content": "55ca4b4d6a960e24deaee8238fc7b7f9eb1b83eb244b733d7b9e14b91de209e20331708b4ec007f214d2cc3414fd7ebfeaddde62438aa1949e7f63e553a5355d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fill-range@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/fill-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/fill-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/fill-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-regex-range@2.1.1", + "author": "Jon Schlinkert", + "name": "to-regex-range", + "version": "2.1.1", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65958d7c28d4a245d70c65c5a597a1248919aaaf7505c50b16afcf8bb3398b8267c5776130a00aebcdb3f1b096de8f078f5c2ebb3a0a716dc37d5cda3fa56e36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-regex-range@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/to-regex-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/to-regex-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/to-regex-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/repeat-element@1.1.3", + "author": "Jon Schlinkert", + "name": "repeat-element", + "version": "1.1.3", + "description": "Create an array by repeating the given value n times.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c588d7d1712bbb28addebccc983ae0b3bf72f5d135bbc82d46dbff92b4c8caf18e95a9dd8c1bbaff423c38821b6e08e8c5be59e6b3f88c98baa9bd6fc44bf59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/repeat-element@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/repeat-element" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/repeat-element/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/repeat-element.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/snapdragon@0.8.2", + "author": "Jon Schlinkert", + "name": "snapdragon", + "version": "0.8.2", + "description": "Fast, pluggable and easy-to-use parser-renderer factory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "16dc8e9d637fc021d355738cc2f4afdba77e928e6f5a52030face8509ecb5bcbe1f99042f107658ef7913fe72b36bb41c22a04516cbfe1d32d6c18c0e22a0d96" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/snapdragon@0.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/snapdragon" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/snapdragon/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/snapdragon.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-cache@0.2.2", + "author": "Jon Schlinkert", + "name": "map-cache", + "version": "0.2.2", + "description": "Basic cache object for storing key-value pairs.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f32fde57d4106428b29f54a9ad74ab0a6a89374c8d4404def8f3bccedc2aaefadb7512c0dde609174c9a47461ac8b5a431bb1048a592f4dda03dc18473852c66" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-cache@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/map-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/map-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/map-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-resolve@0.5.2", + "author": "Simon Lydell", + "name": "source-map-resolve", + "version": "0.5.2", + "description": "Resolve the source map and/or sources for a generated file.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1edcfe467b175a4e7e3f6b25c79261dd0ebabe1423d429659b4cef9da63df3e345c7e0efd8217f7f93bfb7cc7e29a35dadd200b2bb8dce887f2a989a95ba809f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2016, 2017 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-resolve@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/source-map-resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/source-map-resolve/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/source-map-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/decode-uri-component@0.2.0", + "author": "Sam Verschueren", + "name": "decode-uri-component", + "version": "0.2.0", + "description": "A better decodeURIComponent", + "hashes": [ + { + "alg": "SHA-512", + "content": "8637fec68bdc127df5c3f11461d4d7421ffcb2614bfddcd88e88501842208f235abda25f058da9e45e76ec1a3554f013c6fd15613502d9b39c5efa85c24efc3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sam Verschueren (github.com/SamVerschueren)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/decode-uri-component@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SamVerschueren/decode-uri-component#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SamVerschueren/decode-uri-component/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SamVerschueren/decode-uri-component.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-url@0.2.1", + "author": "Simon Lydell", + "name": "resolve-url", + "version": "0.2.1", + "description": "Like Node.js’ `path.resolve`/`url.resolve` for the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "66e179e6155441a69cce0388c2a5b390470489d9a50ffc65e38c755199e1397718b853764bafab731a46f82d4ddd2a34c2f348dc39892025057eed92c61066be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-url@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/resolve-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/resolve-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/resolve-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-url@0.4.0", + "author": "Simon Lydell", + "name": "source-map-url", + "version": "0.4.0", + "description": "Tools for working with sourceMappingURL comments.", + "hashes": [ + { + "alg": "SHA-512", + "content": "414e1f6b40fa6923a6ad3fbb387a545f0fa34bce13d0c2da40db45b3cc732cd7ba02b8f8e0c6a077b5846f2556e4b358a003d5577e5a2ace1acf121f549ad3a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-url@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/source-map-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/source-map-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/source-map-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/urix@0.1.0", + "author": "Simon Lydell", + "name": "urix", + "version": "0.1.0", + "description": "Makes Windows-style paths more unix and URI friendly.", + "hashes": [ + { + "alg": "SHA-512", + "content": "026d68bac02148b05e07d706ffb93baf6474ce3e74b834656473c66dace2779b3dae517517f40a60e6c429222e9d28c83a4259ab04512e9bdec2312433ba52aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/urix@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/urix#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/urix/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/urix.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/use@3.1.1", + "author": "Jon Schlinkert", + "name": "use", + "version": "3.1.1", + "description": "Easily add plugin support to your node.js application.", + "hashes": [ + { + "alg": "SHA-512", + "content": "46b8567c55a4342cf77637d215987bb92c2ee3dd50461c0d687c80801dac1a5e249a6ce76f9654bae1e98962d512c5ce7690da9182bfc79fbda38960838d5433" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/use@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/use" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/use/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/use.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/snapdragon-node@2.1.1", + "author": "Jon Schlinkert", + "name": "snapdragon-node", + "version": "2.1.1", + "description": "Snapdragon utility for creating a new AST node in custom code, such as plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b6ee5e3168c62dfd1490e53477be9582001e4a6ff73321ca9414e33f0b87d870b9db6547353e48d300c8e87f6a4159a493c0e51deaa5077051951a3eda2309f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/snapdragon-node@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/snapdragon-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/snapdragon-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/snapdragon-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/snapdragon-util@3.0.1", + "author": "Jon Schlinkert", + "name": "snapdragon-util", + "version": "3.0.1", + "description": "Utilities for the snapdragon parser/compiler.", + "hashes": [ + { + "alg": "SHA-512", + "content": "99b2a431d40ab235f80402f86d16138f6d5e74e7fc70ded71dd6142447be667f7d85511870cbca3dcb7522a35eefe0193e2ae7f01083390047419927aa62a565" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/snapdragon-util@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/snapdragon-util" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/snapdragon-util/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/snapdragon-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-regex@3.0.2", + "author": "Jon Schlinkert", + "name": "to-regex", + "version": "3.0.2", + "description": "Generate a regex from a string or array of strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "156b6578d02d67f2a2daab6a7a3d825d339ac8e1fd6c70d017e438f15a56c835e36d8c40e18cfc883077d735ce05494e1c72a27436ea195ad352f40c3e604607" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-regex@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/to-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/to-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/to-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/define-property@2.0.2", + "author": "Jon Schlinkert", + "name": "define-property", + "version": "2.0.2", + "description": "Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7194d82855aca6df6366c32c716a3cb1cff995b3c2f50d0de6704b81bf9877dd7988bdee741d6e1604b707c602c7ae94547ab4d7c0c0545a1e7bbc7e83182078" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/define-property@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/define-property" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/define-property/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/define-property.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regex-not@1.0.2", + "author": "Jon Schlinkert", + "name": "regex-not", + "version": "1.0.2", + "description": "Create a javascript regular expression for matching everything except for the given string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "27a4838d4803c508f936eb273ad745c43c0dffe1d6ca447c1842f072d27b99daa1732cb5c44738491147517bf14e9ebad586952808df44b67d702a92ead9f7d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, 2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regex-not@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/regex-not" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/regex-not/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/regex-not.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/safe-regex@1.1.0", + "author": "James Halliday", + "name": "safe-regex", + "version": "1.1.0", + "description": "detect possibly catastrophic, exponential-time regular expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "6895dc89fe319da354cef52e0b981c6f8ea84d2ef3be0e23a4c4e7baab6b10f951def16be29c6d753c1a17542cdc49e39fd1caf9997042e8be6bbcf44b2c08ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/safe-regex@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/safe-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/safe-regex/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/safe-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ret@0.1.15", + "author": "Roly Fentanes", + "name": "ret", + "version": "0.1.15", + "description": "Tokenizes a string that represents a regular expression.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d3958a5af8e2febcc30d1b6e314a5406109dc1fd1cc47d494b72dedbe46ff2b5abfec0fae9942a55305bb0cd76e479c26b6fa218a358856f44bdbf7efbe789a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011 by Roly Fentanes\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE. \n" + } + } + } + ], + "purl": "pkg:npm/ret@0.1.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fent/ret.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fent/ret.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fent/ret.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/brorand@1.1.0", + "author": "Fedor Indutny", + "name": "brorand", + "version": "1.1.0", + "description": "Random number generator for browsers and node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "70a57cb4c084a50b3884afe293bd5de8bacf3a7a64a46051d30cf1aabebc8369bf2c1d86c55610ae802330965154cd58e010a308a737bc06a6c52cce63644ffb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/brorand@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/brorand" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/brorand/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/brorand.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-aes@1.2.0", + "name": "browserify-aes", + "version": "1.2.0", + "description": "aes, for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbb0875ea1aeb29527fd297968eec46b4c56180b444cf5cd4808c7a38f097cb74f59c327837dd77b8ce716f4307aa73fbb3939cd2388dc7e760989e309f6f984" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 browserify-aes contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-aes@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-aes" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-aes/issues" + }, + { + "type": "vcs", + "url": "git://github.com/crypto-browserify/browserify-aes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-xor@1.0.3", + "author": "Daniel Cousens", + "name": "buffer-xor", + "version": "1.0.3", + "description": "A simple module for bitwise-xor on buffers", + "hashes": [ + { + "alg": "SHA-512", + "content": "e7bd6cd13ee76562babc1ebb1c8e5dc9417bc1788d71f68f3cf4e5eb3602340a4036322f6094e0ee196e77ff9c269740852edd573a8c2e67e17c7477ac070e8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Daniel Cousens\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer-xor@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/buffer-xor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/buffer-xor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/buffer-xor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cipher-base@1.0.4", + "author": "Calvin Metcalf", + "name": "cipher-base", + "version": "1.0.4", + "description": "abstract base class for crypto-streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a486de727ba6469b0bf8d2e503673b5ac93d9384b4067e78ff4fbd4dfd7cde65ea379dff1fa325bbcc64ec3d8904c9ade6e5fddc032a47faa7bb60eaccd54d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 crypto-browserify contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cipher-base@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/cipher-base#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/cipher-base/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/cipher-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-hash@1.2.0", + "name": "create-hash", + "version": "1.2.0", + "description": "create hashes for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf4d1b0863470c6f261c090fec2b53d6a56ef9b15050f8d8abfe08bf70b79168d3155d74cc88df4a87aa5e8f40b30b3c8304870c68ff865daee0e1888daa5e0a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 crypto-browserify contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-hash@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/createHash" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/createHash/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/crypto-browserify/createHash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/md5.js@1.3.5", + "author": "Kirill Fomichev", + "name": "md5.js", + "version": "1.3.5", + "description": "node style md5 on pure JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "c62b4ff96c4d3dc4d33a09d325cae1334c6f74f7a98a93d27f723c108a4629e14b8eddcf9492c80c6deef045f9dd922e6e46fee54dbedeb10b6291211e1cdd92" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Kirill Fomichev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/md5.js@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/md5.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/md5.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/md5.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hash-base@3.0.4", + "author": "Kirill Fomichev", + "name": "hash-base", + "version": "3.0.4", + "description": "abstract base class for hash-streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1344e810d7f4b113a2a6c564af5c7bd18fdd3f5e8d49bd94a1a1f9d817e7fa66c1ad4787844bb59fad0ccf6a59b26a07ca6425e95678ad89179b66e956b1b8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Kirill Fomichev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hash-base@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/hash-base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/hash-base/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/hash-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ripemd160@2.0.2", + "name": "ripemd160", + "version": "2.0.2", + "description": "Compute ripemd160 of bytes or strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a2e226a08b6e56bac568882e01e25abba5b5df029dc3f6fe42c1f918df7bdf7f0dbea640e36350fc19a37bb29b31bc24b1f1d90fa8e642119c9fc5c9891b620" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 crypto-browserify\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ripemd160@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/ripemd160#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/ripemd160/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/ripemd160.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sha.js@2.4.11", + "author": "Dominic Tarr", + "name": "sha.js", + "version": "2.4.11", + "description": "Streamable SHA hashes in pure javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "40c129e41edc7ed13b00f3a393963ac60adb5aef9690b550c24f0936367c9ca45c899681c845ba32e6e2780893a12efe770beb8c6847f23457cf7315774018a9" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT AND BSD-3-Clause)", + "text": { + "content": "Copyright (c) 2013-2018 sha.js contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\nCopyright (c) 1998 - 2009, Paul Johnston & Contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this\nlist of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nNeither the name of the author nor the names of its contributors may be used to\nendorse or promote products derived from this software without specific prior\nwritten permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n" + } + } + } + ], + "purl": "pkg:npm/sha.js@2.4.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/sha.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/sha.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/crypto-browserify/sha.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/evp_bytestokey@1.0.3", + "author": "Calvin Metcalf", + "name": "evp_bytestokey", + "version": "1.0.3", + "description": "The insecure key derivation algorithm from OpenSSL", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdfd86a384e88271ff2af08848fece52c1e7f39853f67524c7103d0445b1167f8e8fda3c64d2e6ff8d217658122f2b8e8a6b2b4ca2d4304a2b41ec69fda3d078" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 crypto-browserify contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/evp_bytestokey@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/EVP_BytesToKey/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/EVP_BytesToKey.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-cipher@1.0.1", + "author": "Calvin Metcalf", + "name": "browserify-cipher", + "version": "1.0.1", + "description": "ciphers for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0f864cf401129b7f8ad142dda14e9007aa7e3b5f79652e45069fec442732e3c18f0b46cda9d2fee58ef239132a113bf99ec6b36e9cd1028ac66cfa0c36cf3d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 Calvin Metcalf & contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-cipher@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-cipher#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-cipher/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/crypto-browserify/browserify-cipher.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-des@1.0.2", + "author": "Calvin Metcalf", + "name": "browserify-des", + "version": "1.0.2", + "description": "browserify-des ===", + "hashes": [ + { + "alg": "SHA-512", + "content": "062a0ed717f7845c33e2473a881848de27831689a9321acc9670c50b8ff4fef779328929b8073747e2d86f04c0f40e5873da6af5460fa9f7caa56d8e6eec17e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 Calvin Metcalf, Fedor Indutny & contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-des@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-des#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-des/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/browserify-des.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/des.js@1.0.0", + "author": "Fedor Indutny", + "name": "des.js", + "version": "1.0.0", + "description": "DES implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "434238a5f16bbf654f777e3fbdf2eb14ea119a5623dce579d22edfb24a6cd636562b5900a4c5964fd1ba45151e61e74b7010c8867483694bc931bdc085495a10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/des.js@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/des.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/des.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/des.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-rsa@4.0.1", + "name": "browserify-rsa", + "version": "4.0.1", + "description": "RSA for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "01d1044741e4b29827a36691f7b4807fabe2d32d24f0db8ea469d51f73bdf6b700e50eac87c43172782d1ee27ab97c277c05cd3381a7d466fbfcc575f9899ba2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015 Calvin Metcalf & contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-rsa@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-rsa#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-rsa/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/crypto-browserify/browserify-rsa.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/randombytes@2.1.0", + "name": "randombytes", + "version": "2.1.0", + "description": "random bytes from browserify stand alone", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd897788e5fee022945aec468bd5248627ba7eca97a92f4513665a89ce2d3450f637641069738c15bb8a2b84260c70b424ee81d59a78d49d0ba53d2847af1a99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 crypto-browserify\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/randombytes@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/randombytes" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/randombytes/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/crypto-browserify/randombytes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-sign@4.0.4", + "name": "browserify-sign", + "version": "4.0.4", + "description": "adds node crypto signing for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "fefac0e5f82e54028a0154cd2638129b5b514031d453a0dbc0ef4844ebbfd160330bc3ca86e7034a1d7c27444cbd5787027e69b8c77e4070b67ab3d135ff259a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014-2015 Calvin Metcalf and browserify-sign contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-sign@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-sign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-sign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/browserify-sign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-hmac@1.1.7", + "name": "create-hmac", + "version": "1.1.7", + "description": "node style hmacs in the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "3091bd962899fa881ce13cd4c2ebdb111d4945d82f505481e7e551fe0e61f367c668845631675db4a0478bbfec5617e3419e927a197286f418adc6246942292e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 crypto-browserify contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-hmac@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/createHmac" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/createHmac/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/createHmac.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/elliptic@6.4.1", + "author": "Fedor Indutny", + "name": "elliptic", + "version": "6.4.1", + "description": "EC cryptography", + "hashes": [ + { + "alg": "SHA-512", + "content": "88b842e942de9ab9633d96fe42eb51e5340607ea5d5ba2860f94527a04bef2ca2b3994feadd4056ec405260bcddde46a3402ea25eaf8a10d7a62f247954f21cd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/elliptic@6.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/elliptic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/elliptic/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/elliptic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hash.js@1.1.7", + "author": "Fedor Indutny", + "name": "hash.js", + "version": "1.1.7", + "description": "Various hash functions that could be run by both browser and node", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5a39ab241ade33e1238034db1e3af8980ef8c42629c8911826a7b2db28fd984d3995c56065f3bb3fbb32bdafee3805c9414a9d97ecad61a9e35fcfd25b05e5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/hash.js@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/hash.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/hash.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/hash.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hmac-drbg@1.0.1", + "author": "Fedor Indutny", + "name": "hmac-drbg", + "version": "1.0.1", + "description": "Deterministic random bit generator (hmac)", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ed8b780ca8b7597e13906353337ff01a9cb8aa8755938898048f6e99b9843d7db90ba26cc67210b0b38172ad2778564a417e2361684d4e9fe94ecfcf788ef5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/hmac-drbg@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/hmac-drbg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/hmac-drbg/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/hmac-drbg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimalistic-crypto-utils@1.0.1", + "author": "Fedor Indutny", + "name": "minimalistic-crypto-utils", + "version": "1.0.1", + "description": "Minimalistic tools for JS crypto modules", + "hashes": [ + { + "alg": "SHA-512", + "content": "2486256edea0f22e6329f277c73eeb1742d79afd93903c412d492205e67b6c0c781a79cd32bf311691a73b19fa1a14c41f1dd28d1ad912853e8f4e29ad7d64b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/minimalistic-crypto-utils@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/minimalistic-crypto-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/minimalistic-crypto-utils/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/minimalistic-crypto-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-asn1@5.1.4", + "name": "parse-asn1", + "version": "5.1.4", + "description": "utility library for parsing asn1 files for use with browserify-sign.", + "hashes": [ + { + "alg": "SHA-512", + "content": "467651a3510f53a2419eb6b6bc61e3d32869e9e6f28c166999408b1d6885871973bc1082a40b99ede96c069d4f5406d0374ff4e150ffd7dadfce5052c0bb2d33" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, crypto-browserify contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-asn1@5.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/parse-asn1#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/parse-asn1/issues" + }, + { + "type": "vcs", + "url": "git://github.com/crypto-browserify/parse-asn1.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pbkdf2@3.0.17", + "author": "Daniel Cousens", + "name": "pbkdf2", + "version": "3.0.17", + "description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ae87b2fa8c0ec9106bb65b10f0b503f575d3a9689342e0a9431057dd41a8d21a018f362e0ec8373647b4276d8d9b47d4230551b082f4dd34966813b45ac5430" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Daniel Cousens\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pbkdf2@3.0.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/pbkdf2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/pbkdf2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/pbkdf2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-zlib@0.2.0", + "author": "Devon Govett", + "name": "browserify-zlib", + "version": "0.2.0", + "description": "Full zlib module for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d7d384a6aeef5a0b07e9692f9012500c5bc94b5b8f71b14e438bfd094f37f5d3be6595d464ee97a44ea1342aaf948223fb87d9bd1889e83b00437f361b08b24d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015 Devon Govett \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nThis project contains parts of Node.js.\nNode.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/browserify-zlib@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/devongovett/browserify-zlib" + }, + { + "type": "issue-tracker", + "url": "https://github.com/devongovett/browserify-zlib/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/devongovett/browserify-zlib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pako@1.0.10", + "name": "pako", + "version": "1.0.10", + "description": "zlib port to javascript - fast, modularized, with browser support", + "hashes": [ + { + "alg": "SHA-512", + "content": "35473068ac54c56ad92e90c6fb3ff165a0a04084e403f0efe15fd3e9bc3b54e37a9755f3fd59eb06aad88d9435d936a6287cc84d37ce1086148f8f32d8a5c898" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT AND Zlib)", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pako@1.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/pako" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/pako/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/pako.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer@4.9.1", + "author": "Feross Aboukhadijeh", + "name": "buffer", + "version": "4.9.1", + "description": "Node.js Buffer API, for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6afaadd244c3b11a2bcb84135a51d0bae210d34307a327e1f44ff341d5732d4d5130353adf145de00318b25b406eff15841a18d52a051c3210ab532dbeb825a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh, and other contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer@4.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ieee754@1.1.13", + "author": "Feross Aboukhadijeh", + "name": "ieee754", + "version": "1.1.13", + "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object", + "hashes": [ + { + "alg": "SHA-512", + "content": "75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2008 Fair Oaks Labs, Inc.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/ieee754@1.1.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/ieee754#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/ieee754/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/ieee754.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-from@1.1.1", + "name": "buffer-from", + "version": "1.1.1", + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.from`, uses native implementation if available.", + "hashes": [ + { + "alg": "SHA-512", + "content": "13e5d0091c126da6a20a1b6fea4e83c2073e6f1f81b3abee2891c7979928c7f05a29b8625f3a903b02b870edb6c84946a763829a3c15853dc79b18323c69c97d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016, 2018 Linus Unnebäck\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer-from@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/buffer-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/buffer-from/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/buffer-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/builtin-status-codes@3.0.0", + "author": "Ben Drucker", + "name": "builtin-status-codes", + "version": "3.0.0", + "description": "The map of HTTP status codes from the builtin http module", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e9185c35f038055a59dc0df8d36b6adc4385bcf0ed660bc7bcc99d80bd06392836a4b524f0a3e2917fa9c72ba1512391724726ffe53ebe4d2c5f3fb4321ac99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.me)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/builtin-status-codes@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/builtin-status-codes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/builtin-status-codes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/builtin-status-codes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/builtins@2.0.0", + "name": "builtins", + "version": "2.0.0", + "description": "List of node.js builtin modules", + "hashes": [ + { + "alg": "SHA-512", + "content": "b980636a45a2a5f68efdb5c8ec4f2baba929c074592b970d62b52fd8ecd9488fc5be674cc97276b46f5d29c8c40b9607987a54030b1aae058864d59dc5bfdb9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Julian Gruber \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/builtins@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/builtins#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/builtins/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/juliangruber/builtins.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cacache@11.3.2", + "author": "Kat Marchán", + "name": "cacache", + "version": "11.3.2", + "description": "Fast, fault-tolerant, cross-platform, disk-based, data-agnostic, content-addressable cache.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e9874333b87fab4d0cc63cd4fd7c09eb3e63268ca7d24fab6bc4978aecd42e1d1695c36e15ccf4564e683d3297303954193b413514120252515e35a28f21f1c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cacache@11.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/cacache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/cacache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/cacache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chownr@1.1.1", + "author": "Isaac Z. Schlueter", + "name": "chownr", + "version": "1.1.1", + "description": "like `chown -R`", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c9d1bab36b296626d567360cd37923acf033dabe96d8804aff6f460bf3fd863b7c4912122716684a3149c42508d9ba62bb297185854cbcf4faec25695a90156" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chownr@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/chownr#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/chownr/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/chownr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/figgy-pudding@3.5.1", + "author": "Kat Marchán", + "name": "figgy-pudding", + "version": "3.5.1", + "description": "Delicious, festive, cascading config/opts definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1bb6723f1fc7f6a5abc630df30e349a548a39f4cad925499817c1795223de4370d2cc30833c91ab47794c954ec287459adbe93de58f37f30271fb961741336f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/figgy-pudding@3.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/figgy-pudding#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/figgy-pudding/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/figgy-pudding.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lru-cache@5.1.1", + "author": "Isaac Z. Schlueter", + "name": "lru-cache", + "version": "5.1.1", + "description": "A cache object that deletes the least-recently-used items.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b166656c43f63ac1cd917acc97919893f8ca93bd0c06783a514e1823fa860d86e07fa61b3f812f9aa2126d70a826244ab3ed5b4a9147560431bc9d7b176962e6" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lru-cache@5.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-lru-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-lru-cache/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-lru-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yallist@3.0.3", + "author": "Isaac Z. Schlueter", + "name": "yallist", + "version": "3.0.3", + "description": "Yet Another Linked List", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dc4f31d5ecdbec4199187b50d6edc6c32e6d18a731e6645e6bfe2c8fdd99d0b4c889fa98f38ac0a230d23e4a3fb1405e695e1487c52077b836ec053cd8fdcd8" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yallist@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/yallist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/yallist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/yallist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mississippi@3.0.0", + "author": "max ogden", + "name": "mississippi", + "version": "3.0.0", + "description": "a collection of useful streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc7a3cbfea2d0f5275d23fed0be54da062bd91e0ae07284aa2f02f767ef8766c4997dfa65879f1e8432c0cde25811a0c23f798a369dc840c678886d43dbe689f" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/mississippi@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/maxogden/mississippi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/maxogden/mississippi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/maxogden/mississippi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexify@3.7.1", + "author": "Mathias Buus", + "name": "duplexify", + "version": "3.7.1", + "description": "Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3bcfcbafdb03324b9d642a10f52ac757260e5643ab7ddd19dea91c541e7b245d5b6561890ba8cd20a92b50677a63d3bde0ebcee33c21eba8d7c2cdac0b621e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/duplexify@3.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/duplexify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/duplexify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/duplexify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/end-of-stream@1.4.1", + "author": "Mathias Buus", + "name": "end-of-stream", + "version": "1.4.1", + "description": "Call a callback when a readable/writable/duplex stream has completed or failed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "faec358a720754f428695b87cd1c97776d6270cf9c9ede02cc3e6b5be342d708ce5124ceb3e4deec53afec084deef4bdc7fa08ca12cfe4f4751fea614001eee5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/end-of-stream@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/end-of-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/end-of-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/end-of-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-shift@1.0.0", + "author": "Mathias Buus", + "name": "stream-shift", + "version": "1.0.0", + "description": "Returns the next buffer/object in a stream's readable queue", + "hashes": [ + { + "alg": "SHA-512", + "content": "0228aca05a90d2f6c67198103d8d5c74fd88efa82569503f45ab984781b8b613458244eaafdd325d3a382d85fad0997eb0894f3471dd192c28d3502f6ca51255" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-shift@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/stream-shift" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/stream-shift/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/stream-shift.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flush-write-stream@1.1.1", + "author": "Mathias Buus", + "name": "flush-write-stream", + "version": "1.1.1", + "description": "A write stream constructor that supports a flush function that is called before finish is emitted", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd9e17845677f7ddae22ad173aa6fd02b7a89ee792629844ea861ba6de7edeed3a2569256ec3e436fdd92a43fd073febfb531609a328490dbc3fce7ed5873bef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/flush-write-stream@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/flush-write-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/flush-write-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/flush-write-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/from2@2.3.0", + "author": "Hugh Kennedy", + "name": "from2", + "version": "2.3.0", + "description": "Convenience wrapper for ReadableStream, with an API lifted from \"from\" and \"through2\"", + "hashes": [ + { + "alg": "SHA-512", + "content": "38c717ff8202feea843d58067b27cddb62c993a019acc911647c5c1c1301bc749c0c68304e6d864f65a482da1cc9ddc97d97df8e3da46140d75c8234164f56d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "## The MIT License (MIT) ##\n\nCopyright (c) 2014 Hugh Kennedy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/from2@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hughsk/from2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hughsk/from2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hughsk/from2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parallel-transform@1.1.0", + "author": "Mathias Buus Madsen", + "name": "parallel-transform", + "version": "1.1.0", + "description": "Transform stream that allows you to run your transforms in parallel without changing the order", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f6bd2988bb7f2e225bdd714edf0e4cabc63df7813532fc004ee5951b1a8c31342a2906afcea03e366cfe1498cac9a0fca4e14a9fd26bb79ad5818470990fcca" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parallel-transform@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/parallel-transform#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/parallel-transform/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/parallel-transform.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cyclist@0.2.2", + "author": "Mathias Buus Madsen", + "name": "cyclist", + "version": "0.2.2", + "description": "Cyclist is an efficient cyclic list implemention.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34919528f4bcd577a31dc2e168b252ee995a6f47cadec94f875d6611279e0ead96e1923991428afcb4517550ef8c9b1ea236cf07b6708e7c8ec9b83722079afc" + } + ], + "purl": "pkg:npm/cyclist@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/cyclist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/cyclist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/cyclist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pumpify@1.5.1", + "author": "Mathias Buus", + "name": "pumpify", + "version": "1.5.1", + "description": "Combine an array of streams into a single duplex stream using pump and duplexify", + "hashes": [ + { + "alg": "SHA-512", + "content": "a02959237ec7bee50927148a2ab0b5edb67d0aed1962110018fb0f532f4a94c526bfd74a5f6a3bed1526abb7f75e32316f0c86c18cdbcd0d4bd8ab3cb08ada75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pumpify@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/pumpify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/pumpify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/pumpify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pump@2.0.1", + "author": "Mathias Buus Madsen", + "name": "pump", + "version": "2.0.1", + "description": "pipe streams together and close all of them if one of them closes", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f0672fa9dd216cd4fcad77f8d872de30a6fe3d1e2602a9df5195ce5955d93457ef18cefea34790659374d198f2f57edebd4f13f420c64627e58f154d81161c3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pump@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/pump#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/pump/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/pump.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-each@1.2.3", + "author": "Mathias Buus", + "name": "stream-each", + "version": "1.2.3", + "description": "Iterate all the data in a stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "be5302d9ff08daefdb646aa475f2d05bfd776628697a3ffb3e64a2310b1b61d771b93b09a7cbd17b6c7616f544c5983b15a39db38dd1380b852703d1e0c4d92f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-each@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/stream-each" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/stream-each/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/stream-each.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/move-concurrently@1.0.1", + "author": "Rebecca Turner", + "name": "move-concurrently", + "version": "1.0.1", + "description": "Promises of moves of files or directories with rename, falling back to recursive rename/copy on EXDEV errors, with configurable concurrency and win32 junction support.", + "hashes": [ + { + "alg": "SHA-512", + "content": "85dac5c593b2703fe0e80e92a08d9b079340ff9344a83d39ebdf92e3b59984fbe6e3ab03e746477586859a7b9ae659dd75ef6b0871a399f2bb67c06e0adfcf71" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/move-concurrently@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://www.npmjs.com/package/move-concurrently" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/move-concurrently/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/move-concurrently.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/copy-concurrently@1.0.5", + "author": "Rebecca Turner", + "name": "copy-concurrently", + "version": "1.0.5", + "description": "Promises of copies of files, directories and symlinks, with concurrency controls and win32 junction fallback.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f676899df5fb150c5b5a15c6da459b985f0b5d9a7cea6c00d2c21496631601fd0f33b1d51414c5d54705c60cc5a66c4cc09f591d46bb48d53fca4c538be17d8" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/copy-concurrently@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://www.npmjs.com/package/copy-concurrently" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/copy-concurrently/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/copy-concurrently.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-write-stream-atomic@1.0.10", + "author": "Isaac Z. Schlueter", + "name": "fs-write-stream-atomic", + "version": "1.0.10", + "description": "Like `fs.createWriteStream(...)`, but atomic.", + "hashes": [ + { + "alg": "SHA-512", + "content": "81e844ce63e7da7030af7f5e6b2fb1dd7df845af8cd909555132e19173e359d78ef1117d92cce4d75e9abe00493376723478075c1371f9598f6850b7ea4d0fcc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-write-stream-atomic@1.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/fs-write-stream-atomic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/fs-write-stream-atomic/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/fs-write-stream-atomic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/iferr@0.1.5", + "author": "Nadav Ivgi", + "name": "iferr", + "version": "0.1.5", + "description": "Higher-order functions for easier error handling", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d43453798fb4e59f40fe4f1ce5a148ca07e0ad56eea6ca7d091056a4e9d1b5f2636df58910ea5cc609d69fc287c8499d652c5df144727df152b2f729e470568" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Nadav Ivgi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/iferr@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shesek/iferr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shesek/iferr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shesek/iferr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/run-queue@1.0.3", + "author": "Rebecca Turner", + "name": "run-queue", + "version": "1.0.3", + "description": "A promise based, dynamic priority queue runner, with concurrency limiting.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9edca6cb8f3da34fd04299540e7a5801852c3b9d0af5206b21568a0960ce273609b6cd1ff561fd445264c9a81e6e4c39fb2d688b4d11ef29cd5bf775d8606e9a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/run-queue@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/run-queue" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/run-queue/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/run-queue.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/promise-inflight@1.0.1", + "author": "Rebecca Turner", + "name": "promise-inflight", + "version": "1.0.1", + "description": "One promise for multiple requests in flight to avoid async duplication", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb358fc8438569004961c18c1c1293289deee9306c9cc14e21949ae9c7b57bf66baec3a59c74476da6cc8cb88160aa7e9f8e17f5e508e9550f6ae9025c7b86e2" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/promise-inflight@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/promise-inflight#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/promise-inflight/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/promise-inflight.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ssri@6.0.1", + "author": "Kat Marchán", + "name": "ssri", + "version": "6.0.1", + "description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d14883ea2e28f9d8cb60a106af1ffc7f754d6a54ab5650001978e1ec47d7360dd8b85deac5cb799cd5a95ff9d2c92a5f445089bf1edf84a301644d4380e8601" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ssri@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/ssri#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/ssri/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/ssri.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unique-filename@1.1.1", + "author": "Rebecca Turner", + "name": "unique-filename", + "version": "1.1.1", + "description": "Generate a unique filename for use in temporary directories or caches.", + "hashes": [ + { + "alg": "SHA-512", + "content": "566a748c8a76967df95135eeaf2be3ce48c6751c9ff5bda54d7b9261488f9b345c977143b58a80c0e9d3264027803f525a19e82730db4cac1a3ab67e493b7135" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unique-filename@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/unique-filename" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/unique-filename/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/unique-filename.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unique-slug@2.0.1", + "author": "Rebecca Turner", + "name": "unique-slug", + "version": "2.0.1", + "description": "Generate a unique character string suitible for use in files and URLs.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce85abf4e6dac402c3dc338f7e33d2ab1b787e766259b9711c881e5aa5bcc7b52a0f312d1c440bce38b672e258405094e8a9a826290e600665ad31c779b8f1db" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unique-slug@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/unique-slug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/unique-slug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/iarna/unique-slug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/y18n@4.0.0", + "author": "Ben Coe", + "name": "y18n", + "version": "4.0.0", + "description": "the bare-bones internationalization library used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "b866475e41e7845d1779e00f82729f3efd5b80a018c95be634bd7194ab0f6193da207c46b62da11eabce090bfbd5732c2f1bb54237ab824aa88149e6b390f761" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/y18n@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/y18n" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/y18n/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/y18n.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/callsites@3.1.0", + "author": "Sindre Sorhus", + "name": "callsites", + "version": "3.1.0", + "description": "Get callsites from the V8 stack trace API", + "hashes": [ + { + "alg": "SHA-512", + "content": "66fe039ecf486d75e63e48114548c06894207cde315f9a7af9140585652ab1c76fbcadb12bf64bf1bdc85c826c8fee2c0fe7f6e0dc275b2d8163c009f36241d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/callsites@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/callsites#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/callsites/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/callsites.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase@5.3.1", + "author": "Sindre Sorhus", + "name": "camelcase", + "version": "5.3.1", + "description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", + "hashes": [ + { + "alg": "SHA-512", + "content": "17102fec7a47ad76e1dda3e8e28daac476b2da590b637c79330dca784e0a404f32b157f3896791643c1c8dabafc01486102fe75d43f3672f337a1e07a24a8e9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase@5.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chai@4.2.0", + "author": "Jake Luer", + "name": "chai", + "version": "4.2.0", + "description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6db729dd87c7094ccc3af2aab33b5ccdead5801292b048a30b248d9471db5f7546d67b24bea8f3e517eca35806c03eb0ea8395dde23ad292ae30e579315ee9dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Chai.js Assertion Library\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chai@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "http://chaijs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/chai/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chaijs/chai.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pathval@1.1.0", + "author": "Veselin Todorov", + "name": "pathval", + "version": "1.1.0", + "description": "Object value retrieval given a string path", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e9eb31aaa537444dd47ade57a12583de20eaa988d04db5cec1a5648bace8deed4688b04e5a63ddabfc0ba7400eebb17bdeb7796b277267657dbd50f4ca5f229" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2011-2013 Jake Luer jake@alogicalparadox.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated\ndocumentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\nTHE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pathval@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/pathval" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/pathval/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/pathval.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chardet@0.7.0", + "author": "Dmitry Shirokov", + "name": "chardet", + "version": "0.7.0", + "description": "Character detector", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ff4e88fb7f5cfdf07876718a36055afce44a48456a948bbaed4521b187f72a523aab9c97bd97d504ec8506776bd0da9fa44872e44b339b40f64f2d40ba4d0c2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2018 Dmitry Shirokov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chardet@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/runk/node-chardet" + }, + { + "type": "issue-tracker", + "url": "http://github.com/runk/node-chardet/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/runk/node-chardet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chokidar@2.1.6", + "author": "Paul Miller", + "name": "chokidar", + "version": "2.1.6", + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a4f1f01671150ec58edbb652ed8ad8f7038e633b0480c47e2d3853a81066d5b25e9c2faa4f316532eddc19fdc6a77e3dd011d3fa1474a77ff97573afd693356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chokidar@2.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/chokidar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/chokidar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/paulmillr/chokidar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/anymatch@2.0.0", + "author": "Elan Shanker", + "name": "anymatch", + "version": "2.0.0", + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1735ac82f254c7436388f1a963342377b12c7a86caffd7eae5703028b57251ec2d686591c236c7e96cac0c8d103752a6f9b45d5169eda89684ebe31a6af968c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2014 Elan Shanker\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/anymatch@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/anymatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/anymatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/anymatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/micromatch@3.1.10", + "author": "Jon Schlinkert", + "name": "micromatch", + "version": "3.1.10", + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3168a4825f67f4cdf0f9ba6c6371def0bfb0f5e17ddf7f31465f0800ee6f8838b3c12cf3885132533a36c6bae5a01eb80036d37fcb80f2f46aaadb434ce99c72" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/micromatch@3.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/micromatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/micromatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/micromatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extglob@2.0.4", + "author": "Jon Schlinkert", + "name": "extglob", + "version": "2.0.4", + "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae06260a4f17a35a42e215d93947afd0683760b76cc90511b776bc648f05398d3e519d74243d30b4fe74cec1d45c3c92cd02dd056eaa672db5884e65778f0030" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extglob@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/extglob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/extglob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/extglob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-brackets@2.1.4", + "author": "Jon Schlinkert", + "name": "expand-brackets", + "version": "2.1.4", + "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", + "hashes": [ + { + "alg": "SHA-512", + "content": "871c74dcfd9d271b2ce9c7887ab8bd72660e4f8491b37664dda7d9c16a4eb11a8baa9ae14d1f2efbe4a50beb051ac42bed61853dd305ec68dcd678c32c32ba50" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/expand-brackets@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/expand-brackets" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/expand-brackets/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/expand-brackets.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/posix-character-classes@0.1.1", + "author": "Jon Schlinkert", + "name": "posix-character-classes", + "version": "0.1.1", + "description": "POSIX character classes for creating regular expressions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5381805cddfba8ed8b7b25b8ae171498193a0ca33f1f2e813a4c2f56c753ffbbe2df79384c380aa6bb21029e505a6896febb59bd847897504b705b83b37d426" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/posix-character-classes@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/posix-character-classes" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/posix-character-classes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/posix-character-classes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fragment-cache@0.2.1", + "author": "Jon Schlinkert", + "name": "fragment-cache", + "version": "0.2.1", + "description": "A cache for managing namespaced sub-caches", + "hashes": [ + { + "alg": "SHA-512", + "content": "18c0406d6f5a9ed07c8994472e81b0d1bdc700db79edd8996053bf1cbd491880b53232ab766871beb25bba99d5be9cacd33b33ef2040a57750c9f7a92a5cb690" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fragment-cache@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/fragment-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/fragment-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/fragment-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nanomatch@1.2.13", + "author": "Jon Schlinkert", + "name": "nanomatch", + "version": "1.2.13", + "description": "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e9a1ed93d116c7c014c150e7ed01f04f683122d3ab9f6946a2d2613a627d6469c7374a74c4adf6ff87e5fde155f323ae2b2851d82265d2bddc061829b03aa08" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nanomatch@1.2.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/nanomatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/nanomatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/nanomatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.pick@1.3.0", + "author": "Jon Schlinkert", + "name": "object.pick", + "version": "1.3.0", + "description": "Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6a6bf50ccbf082a189a3f87e6a734eeabd22fd76a72cfd6644359d496ed5819404cffa254e7bbefc804e8c4a28e7c829ce4730ee5fa854f8b038499d3d62315" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object.pick@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object.pick" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object.pick/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object.pick.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-path@2.1.1", + "author": "Jon Schlinkert", + "name": "normalize-path", + "version": "2.1.1", + "description": "Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9289c07d7ce17a3f9671faa323f5ab6a4c77b1dcca9aaa991b3dd7febf8b6086b56c082860a438e3139bfcd76e04c4587c35b8da4d8bf8a073778f3981dbeb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-path@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/normalize-path" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/normalize-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/normalize-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/remove-trailing-separator@1.1.0", + "author": "darsain", + "name": "remove-trailing-separator", + "version": "1.1.0", + "description": "Removes separators from the end of the string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe14be634bb768e7c811389a8a2ad41700c10f39973ef3be8c07ca4e2b549e020fcdd29ce99d0ba058ccfc22b93cbe02f9e2b01e88651c06fa1f45457e6994b3" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/remove-trailing-separator@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/darsain/remove-trailing-separator#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/darsain/remove-trailing-separator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/darsain/remove-trailing-separator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob-parent@3.1.0", + "author": "Elan Shanker", + "name": "glob-parent", + "version": "3.1.0", + "description": "Strips glob magic from a string to provide the parent directory path", + "hashes": [ + { + "alg": "SHA-512", + "content": "24360ebdfc62a3fb78d8729dc6401868288137ba188aec7290ec4ac5d6945b9427d33698377811416a25af07677f4b2133dfc43f479bbae4e6ca85cdaf5702e7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2015 Elan Shanker\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob-parent@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es128/glob-parent" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es128/glob-parent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/es128/glob-parent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-glob@3.1.0", + "author": "Jon Schlinkert", + "name": "is-glob", + "version": "3.1.0", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "hashes": [ + { + "alg": "SHA-512", + "content": "505a430eb3e033aaa99c5348fab87fa776d46aaf6128b64df1b3145b3c667276554b7a267f820f2be06b7b09675a33b55a652c318b928ca878509b95e3e2ea9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-glob@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-extglob@2.1.1", + "author": "Jon Schlinkert", + "name": "is-extglob", + "version": "2.1.1", + "description": "Returns true if a string has an extglob.", + "hashes": [ + { + "alg": "SHA-512", + "content": "49b29b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-extglob@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-extglob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-extglob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-extglob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-dirname@1.0.2", + "author": "Elan Shanker", + "name": "path-dirname", + "version": "1.0.2", + "description": "Node.js path.dirname() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "00bccd3e9c8dabd02a5cc0637b29888c50c0900147d3a987247fdc4811c0814d2ce2f7e9067e9bda77fcb6244bbda80a0fc45b4e9ab614a4c183b725f65ddced" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) Elan Shanker and Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-dirname@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es128/path-dirname#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es128/path-dirname/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/es128/path-dirname.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-binary-path@1.0.1", + "author": "Sindre Sorhus", + "name": "is-binary-path", + "version": "1.0.1", + "description": "Check if a filepath is a binary file", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5f455957734b82c440e3d6743369638d4a96d37f1d059897f31c5ee9c2523c0e4586a0704179ae0f8392b2d288f0c314269d289f81b2a4234e90bf42e3823f9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-binary-path@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-binary-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-binary-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-binary-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.1", + "author": "Jon Schlinkert", + "name": "is-glob", + "version": "4.0.1", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "hashes": [ + { + "alg": "SHA-512", + "content": "505a430eb3e033aaa99c5348fab87fa776d46aaf6128b64df1b3145b3c667276554b7a267f820f2be06b7b09675a33b55a652c318b928ca878509b95e3e2ea9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-glob@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/is-glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/is-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/is-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readdirp@2.2.1", + "author": "Thorsten Lorenz", + "name": "readdirp", + "version": "2.2.1", + "description": "Recursive version of fs.readdir with streaming api.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4953ff2af95805672c70ac9f925483ac87e2b2c161a976cdcd4ea8a488aa43319592726018c8a220aa43be011bcd5897d7797475cf1cfb687178bb80b21fabd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nCopyright (c) 2012-2015 Thorsten Lorenz\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/readdirp@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/readdirp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/readdirp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/paulmillr/readdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/upath@1.1.2", + "author": "Angelos Pikoulas", + "name": "upath", + "version": "1.1.2", + "description": "A proxy to `path`, replacing `\\` with `/` for all results & new methods to normalize & join keeping leading `./` and add, change, default, trim file extensions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "699c06a5a9853bad60dce95f4fb390087aa11a75b8de2787f5665e3fb43137f1bf8d2e237ea524671a2bcaf26054f11cae5e4d2ff8201ec4a62cc1ee1fae0b86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright(c) 2014-2017 Angelos Pikoulas (agelos.pikoulas@gmail.com)\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/upath@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/anodynos/upath/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/anodynos/upath/issues" + }, + { + "type": "vcs", + "url": "git://github.com/anodynos/upath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chrome-trace-event@1.0.2", + "author": "Trent Mick, Sam Saccone", + "name": "chrome-trace-event", + "version": "1.0.2", + "description": "A library to create a trace of your node app per Google's Trace Event format.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b239ddc991ebad68aee1163b0241e08e7f3419f00cd994b352464b57f26ce7d2dd9a1e890d385fd12526387539deb16edab571c5f0b3277d1491c7dc87719bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "# This is the MIT license\n\nCopyright (c) 2015 Joyent Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/chrome-trace-event@1.0.2", + "externalReferences": [ + { + "type": "vcs", + "url": "github.com:samccone/chrome-trace-event" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tslib@1.9.3", + "author": "Microsoft Corp.", + "name": "tslib", + "version": "1.9.3", + "description": "Runtime library for TypeScript helper functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e78b7e4d2b38e032bc1ebf2b074c202bb4b0e93efc9ef3357fd04e04c989f8dcfeffeeabd0c0f87d0469077b06ccba5567b5b8a099c4fbadd5f704da3dc1126" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": "Apache License\r\n\r\nVersion 2.0, January 2004\r\n\r\nhttp://www.apache.org/licenses/ \r\n\r\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n1. Definitions.\r\n\r\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\r\n\r\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\r\n\r\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\r\n\r\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\r\n\r\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\r\n\r\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\r\n\r\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\r\n\r\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\r\n\r\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\r\n\r\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\r\n\r\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\r\n\r\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\r\n\r\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\r\n\r\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\r\n\r\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\r\n\r\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\r\n\r\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\r\n\r\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\r\n\r\nEND OF TERMS AND CONDITIONS\r\n" + } + } + } + ], + "purl": "pkg:npm/tslib@1.9.3", + "externalReferences": [ + { + "type": "website", + "url": "http://typescriptlang.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Microsoft/tslib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-css@3.4.28", + "author": "Jakub Pawlowicz", + "name": "clean-css", + "version": "3.4.28", + "description": "A well-tested CSS minifier", + "hashes": [ + { + "alg": "SHA-512", + "content": "1095034fb9c35450ef690800a361bf3c9bf19a9d68fdcea25cb6ecc2c05b5055e2d4dafe02303670a99f6ca0cc8ccbf311eef98373fa2646830c02a4f7a03ce4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2015 JakubPawlowicz.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clean-css@3.4.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakubpawlowicz/clean-css" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakubpawlowicz/clean-css/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jakubpawlowicz/clean-css.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.8.1", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.8.1", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-width@2.2.0", + "author": "Ilya Radchenko", + "name": "cli-width", + "version": "2.2.0", + "description": "Get stdout window width, with two fallbacks, tty and then a default.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1913160f1a4e07a0e0936139528fb778406fb4e3a58a6326a5b1622ae2c59d0cd80dabed2c56372b9a276b8d6380dfd675166d1bbbadb954954cbe076d91c693" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Ilya Radchenko \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-width@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/knownasilya/cli-width" + }, + { + "type": "issue-tracker", + "url": "https://github.com/knownasilya/cli-width/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/knownasilya/cli-width.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone-deep@2.0.2", + "author": "Jon Schlinkert", + "name": "clone-deep", + "version": "2.0.2", + "description": "Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa9d5da3a36995865970b53e4d0f77f80ef7e60d6435c9c7ef941b0b5a25a4a26985edfa0aa9231442b43f2152a19948dffd633b92a70e0eb8c5dc168841ffcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone-deep@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/clone-deep" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/clone-deep/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/clone-deep.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/for-own@1.0.0", + "author": "Jon Schlinkert", + "name": "for-own", + "version": "1.0.0", + "description": "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0e00192c206af128af0ae24ca75a443bcb5ce8ba74313fe0969f27255708fcd4a5b7be52e5194c79ec328670ffcb1f6d7a1b3aa7b2d9cfa1c175e8dc6cd1872" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/for-own@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/for-own" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/for-own/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/for-own.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shallow-clone@1.0.0", + "author": "Jon Schlinkert", + "name": "shallow-clone", + "version": "1.0.0", + "description": "Make a shallow clone of an object, array or primitive.", + "hashes": [ + { + "alg": "SHA-512", + "content": "275cdd5c2932e4698d9ee6ae11244e56edf53104a72e862f972127ea3d99b64e90e441c5221c6432161cbfabee0f39765c4ce846bf39e90c3332058cfd399983" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/shallow-clone@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/shallow-clone" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/shallow-clone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/shallow-clone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mixin-object@2.0.1", + "author": "Jon Schlinkert", + "name": "mixin-object", + "version": "2.0.1", + "description": "Mixin the own and inherited properties of other objects onto the first object. Pass an empty object as the first arg to shallow clone.", + "hashes": [ + { + "alg": "SHA-512", + "content": "00b185d49b7da2e7a171a5da1e19fab75c86591a8668790f16776d1551df6573af90867fca819a4a2d001d54da7dbdd904683876bfdb0f09da10aa825f372130" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mixin-object@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/mixin-object" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/mixin-object/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/mixin-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/for-in@0.1.8", + "author": "Jon Schlinkert", + "name": "for-in", + "version": "0.1.8", + "description": "Iterate over the own and inherited enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec4c265eb3a3c8bf82871321986e659d6f4c3edd5a21e644c0a850ce8054753574377ceec160d961525ab43bd9d8ecb33d4bdd200643b027ad937728c8c7dc9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/for-in@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/for-in" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/for-in/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/for-in.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/compressible@2.0.17", + "name": "compressible", + "version": "2.0.17", + "description": "Compressible Content-Type / mime checking", + "hashes": [ + { + "alg": "SHA-512", + "content": "005debecfe5d5b12fc331c884d132539140d68e036224005693af893b054ba68cfb51a460d36699743dbd5708ee89783081769d76e8282cf6c331a928e063246" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 Jonathan Ong \nCopyright (c) 2014 Jeremiah Senkpiel \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/compressible@2.0.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/compressible#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/compressible/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/compressible.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/compression@1.7.4", + "name": "compression", + "version": "1.7.4", + "description": "Node.js compression middleware", + "hashes": [ + { + "alg": "SHA-512", + "content": "8da4880f33fda59552e197d0f93cefb625a17691611364431f3f10264a57f522292eaf3c56e785e63270eadfba09441c02803ab7ec7cf4c2eb580aa97c313c89" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/compression@1.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/compression#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/compression/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/compression.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bytes@3.0.0", + "author": "TJ Holowaychuk", + "name": "bytes", + "version": "3.0.0", + "description": "Utility to parse a string bytes to bytes and vice-versa", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcd7fb4f2cd3c7a4b7c9124e6ce015efde7aafc72bdbe3a3f000b976df3048fdc1400a1e5f9f0da07c8253c3fccc690d5d2b634d28ba7f33ba174a4175c61b12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 TJ Holowaychuk \nCopyright (c) 2015 Jed Watson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bytes@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/bytes.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/bytes.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/bytes.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/on-headers@1.0.2", + "author": "Douglas Christopher Wilson", + "name": "on-headers", + "version": "1.0.2", + "description": "Execute a listener when a response is about to write headers", + "hashes": [ + { + "alg": "SHA-512", + "content": "a59004f8524ba32213cad76a2b4539b3e148a6337424fdcecc58bfbbc471f84579fd6f894d61971bcc45cdebc4ec08c17c3a87bfff2f2fca90b088479ea464ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/on-headers@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/on-headers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/on-headers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/on-headers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/connect-history-api-fallback@1.6.0", + "author": "Ben Ripkens", + "name": "connect-history-api-fallback", + "version": "1.6.0", + "description": "Provides a fallback for non-existing directories so that the HTML 5 history API can be used.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b9e01f7dabf394a07eb8cd86117f71c13f9cf6e06dfc8790f7a97bb6dc9191a228295f94ace2bf599c393783467cb900b6c7694f689f9495605cd5958159d2e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2012 Ben Ripkens http://bripkens.de\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/connect-history-api-fallback@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bripkens/connect-history-api-fallback#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bripkens/connect-history-api-fallback/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/bripkens/connect-history-api-fallback.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/constants-browserify@1.0.0", + "author": "Julian Gruber", + "name": "constants-browserify", + "version": "1.0.0", + "description": "node's constants module for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "c45c4ec2a23347f7b593580b896128a6148232a5dcc151c81fb6a47fb6ffbf1714786ba7963de1bd969aab1c07b13827f889ddb64409812ced20359eba65890d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/constants-browserify@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/constants-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/constants-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/constants-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/content-disposition@0.5.3", + "author": "Douglas Christopher Wilson", + "name": "content-disposition", + "version": "0.5.3", + "description": "Create and parse Content-Disposition header", + "hashes": [ + { + "alg": "SHA-512", + "content": "16f7994cdb86c34e1cc6502259bce2eb34c02ff9617a16966d3b6096e261e3f13de43a8cc139a16b7299375680580f1c148847ccc654bcb7af930e51aa4fad49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/content-disposition@0.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/content-disposition#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/content-disposition/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/content-disposition.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookie@0.4.0", + "author": "Roman Shtylman", + "name": "cookie", + "version": "0.4.0", + "description": "HTTP server cookie parsing and serialization", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8824e5f43aa9470acce8da6054abe4ab11b0a3eb0ecaa5f7eac7ad3361b3d315a3b8fb26204631f07193695af693ca50c7695ecf3e6047cd279c662321b4f83" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 Roman Shtylman \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cookie@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/cookie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/cookie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/cookie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@4.0.0", + "author": "David Clark", + "name": "cosmiconfig", + "version": "4.0.0", + "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a23572f00053d81f2db95e64cfa5a7d8be7dc22c0909f052ecb1cabbf0c41dd4a874394e98ce19f8795d8c545e06f561106685841a5b5ab5d47e9ed18f325e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 David Clark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cosmiconfig@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davidtheclark/cosmiconfig#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davidtheclark/cosmiconfig/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davidtheclark/cosmiconfig.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-directory@0.3.1", + "author": "Jon Schlinkert", + "name": "is-directory", + "version": "0.3.1", + "description": "Returns true if a filepath exists on the file system and it's directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c950a11b36a1445bdb92c727d8c9701a2b263ced768bdfb39cdaee0b9815127b46deabb4c50333b0683f2456ebb2a0ce1ed1c53dc8be57968fe53f48fb278aab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-directory@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-directory" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-directory/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-directory.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-yaml@3.13.1", + "author": "Vladimir Zapparov", + "name": "js-yaml", + "version": "3.13.1", + "description": "YAML 1.2 parser and serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24307ece5d727b62b37d3a4dff497ae7bb8897f723a4fb6e67a97e22992da7a6ebd36039a8fd0119a2ac199186880e4de356f04e4ce20480485a2ceca7052f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2011-2015 by Vitaly Puzrin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-yaml@3.13.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/js-yaml" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/js-yaml/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/js-yaml.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-from-string@2.0.2", + "author": "Vsevolod Strukchinsky", + "name": "require-from-string", + "version": "2.0.2", + "description": "Require module from string", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fb0242563286deb2492db47ca14d5b52d1fc6914b8f185b7cc6ba064df08a63fbb1d3d118bdc4c82837b0041e9c57c07bec50fa801cf39366b6fab444e33cdd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-from-string@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/require-from-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/require-from-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/require-from-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-ecdh@4.0.3", + "author": "Calvin Metcalf", + "name": "create-ecdh", + "version": "4.0.3", + "description": "createECDH but browserifiable", + "hashes": [ + { + "alg": "SHA-512", + "content": "99ff930b1f3059cf55a6ec5f3f686dd2248848b667b742605a5ace29988dab25195a78c868221535002b3079c264a7c461183a20cec0f8d789a0df207ff5acd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 createECDH contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-ecdh@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/createECDH" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/createECDH/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/createECDH.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/crypto-browserify@3.12.0", + "author": "Dominic Tarr", + "name": "crypto-browserify", + "version": "3.12.0", + "description": "implementation of crypto for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f3e2ca4887ece78ced958cbf88761129449dd837ab0ccc84d20628e4e852b652f4eaaee4905befdc0994d236c32264dbd47aad02aaeac5f9d01bca218e63a5a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/crypto-browserify@3.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/crypto-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/crypto-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/crypto-browserify/crypto-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/diffie-hellman@5.0.3", + "author": "Calvin Metcalf", + "name": "diffie-hellman", + "version": "5.0.3", + "description": "pure js diffie-hellman", + "hashes": [ + { + "alg": "SHA-512", + "content": "92a6a0fcd97e7f71b0c8adb97e150c623f350543ab67d22e26c8c870313989c34cf452470159b755c503c5d2cfa10b53b94ca55a6e992249d8270c1a3f1b14ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017 Calvin Metcalf\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/diffie-hellman@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/diffie-hellman" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/diffie-hellman/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/diffie-hellman.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/miller-rabin@4.0.1", + "author": "Fedor Indutny", + "name": "miller-rabin", + "version": "4.0.1", + "description": "Miller Rabin algorithm for primality test", + "hashes": [ + { + "alg": "SHA-512", + "content": "d75e5f2e1bd956a5b01cf6c29729edc4455f5437e5f432cb4ee26fab78363bf3b18bc022368b801ef0d2cc74b4be250973e579be6ddeabdd57c2a9fd769e2344" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/miller-rabin@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/miller-rabin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/miller-rabin/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/miller-rabin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/public-encrypt@4.0.3", + "author": "Calvin Metcalf", + "name": "public-encrypt", + "version": "4.0.3", + "description": "browserify version of publicEncrypt & privateDecrypt", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd5a5af282994b3e5b4cc4c50a57357d03a7cb2133a65e68ce98b507961cbc1adda213231f6adfb01b725dcb8dbb08ec0c85e6058945d8de45949621476f6df1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017 Calvin Metcalf\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/public-encrypt@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/publicEncrypt" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/publicEncrypt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/publicEncrypt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/randomfill@1.0.4", + "name": "randomfill", + "version": "1.0.4", + "description": "random fill from browserify stand alone", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3b95c6d1f3e321716714890fbd7be470c7c3324763fbaa7b75e729d495b9b74d4fdf8db833e06b2f7d25034de9ad082b550aa6f865c1059723cd4e1f5b0532f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 crypto-browserify\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/randomfill@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/randomfill" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/randomfill/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/randomfill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-blank-pseudo@0.1.4", + "author": "Jonathan Neal", + "name": "css-blank-pseudo", + "version": "0.1.4", + "description": "Style form elements when they are empty", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/css-blank-pseudo@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstools/css-blank-pseudo#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstools/css-blank-pseudo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstools/css-blank-pseudo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-has-pseudo@0.10.0", + "author": "Jonathan Neal", + "name": "css-has-pseudo", + "version": "0.10.0", + "description": "Style elements relative to other elements in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/css-has-pseudo@0.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstools/css-has-pseudo#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstools/css-has-pseudo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstools/css-has-pseudo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-parser@5.0.0", + "name": "postcss-selector-parser", + "version": "5.0.0", + "description": "> Selector parser with built in methods for working with selector strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9ab26a478686b3b4050e7efed1937ef8b920050084745ac862bc5854aed3a684bf60661e85f0fcc85bfb0ed56391c4448b82f90a1423bc20ac272ada1a8254" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-selector-parser@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-selector-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-selector-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-selector-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssesc@2.0.0", + "author": "Mathias Bynens", + "name": "cssesc", + "version": "2.0.0", + "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef66af6f6bc222c34306548c62ec6dd829a0e99e134c6aa27db946b3b2171a2861b84ce08426fd3eed58eafcd53cb0b4dce4d79c02ac4e6f760a165de2ecd505" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssesc@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/cssesc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/cssesc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/cssesc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/indexes-of@1.0.1", + "author": "Dominic Tarr", + "name": "indexes-of", + "version": "1.0.1", + "description": "line String/Array#indexOf but return all the indexes in an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "6eea7ee2d6a9dc7ca6a5af89049506ed7b8eb1d350e9fc6dd0c1f25cc2ae2c12a7d0eaac4dfbd4c6452bae8117d7e07656c487bc28e221c655c51b586b89e594" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/indexes-of@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/indexes-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/indexes-of/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/indexes-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uniq@1.0.1", + "author": "Mikola Lysenko", + "name": "uniq", + "version": "1.0.1", + "description": "Removes duplicates from a sorted array in place", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b0fb3cf9d1834a3c3297b3ef5df9a2808d5c298cdc2acef3692e2808aee4f81c0f6531935d32ab3dc74ee428707f2fd591ceaa78f83953539b38c06d9eb1da0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2013 Mikola Lysenko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uniq@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikolalysenko/uniq#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikolalysenko/uniq/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mikolalysenko/uniq.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-loader@2.1.1", + "author": "Tobias Koppers @sokra", + "name": "css-loader", + "version": "2.1.1", + "description": "css loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "c28bc7823031f1920c1922fca53cacede740d42966cf11de63a9ff77dee0839a1d82cc4480a8d42cf474be2ab20be1563022fdb1faa80bf402501a3adad2ef3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-loader@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/css-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/css-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/css-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/icss-utils@4.1.1", + "author": "Glen Maddern", + "name": "icss-utils", + "version": "4.1.1", + "description": "ICSS utils for postcss ast", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ec568ca7ff55784759186232dc58b79da3300ce050a565476313d9c8afcb9663bc6cefccbd0c04e0c33db0194eccfbbcf9e4a7a79a64e43760d527b6eace300" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License (ISC)\nCopyright 2018 Glen Maddern\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/icss-utils@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/icss-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/icss-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/icss-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-extract-imports@2.0.0", + "author": "Glen Maddern", + "name": "postcss-modules-extract-imports", + "version": "2.0.0", + "description": "A CSS Modules transform to extract local aliases for inline imports", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea3b7d5d9c148709915216ff0a4c89634db43d868f26c0b2b775236da5a8e9711b1fff781e6bfa30fedf1b60b934353f05c1f3c8663136d1ef33e2d37fd1eb63" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2015 Glen Maddern\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-modules-extract-imports@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-extract-imports" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-extract-imports.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-local-by-default@2.0.6", + "author": "Mark Dalgleish", + "name": "postcss-modules-local-by-default", + "version": "2.0.6", + "description": "A CSS Modules transform to make local scope the default", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f872ab943c868077ceab695ac1c0ef1fc117e421d6f016eec24df10e8e26501d5430947452913807e4d2c398c9b9fb58503bcbba759f9338e2436dacb5858a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Mark Dalgleish \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-modules-local-by-default@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-local-by-default#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-local-by-default/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-local-by-default.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-parser@6.0.2", + "name": "postcss-selector-parser", + "version": "6.0.2", + "description": "> Selector parser with built in methods for working with selector strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9ab26a478686b3b4050e7efed1937ef8b920050084745ac862bc5854aed3a684bf60661e85f0fcc85bfb0ed56391c4448b82f90a1423bc20ac272ada1a8254" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-selector-parser@6.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-selector-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-selector-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-selector-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssesc@3.0.0", + "author": "Mathias Bynens", + "name": "cssesc", + "version": "3.0.0", + "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef66af6f6bc222c34306548c62ec6dd829a0e99e134c6aa27db946b3b2171a2861b84ce08426fd3eed58eafcd53cb0b4dce4d79c02ac4e6f760a165de2ecd505" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssesc@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/cssesc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/cssesc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/cssesc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-scope@2.1.0", + "author": "Glen Maddern", + "name": "postcss-modules-scope", + "version": "2.1.0", + "description": "A CSS Modules transform to extract export statements from local-scope classes", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d36309c0e02d477b504a657231d426221e2c5d49ef4b59854a69dabd94ae5a082324a0e905c99eda8a0b7eb2b7e3951a65258de022897a29435e7dd31025d97" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\n\nCopyright (c) 2015, Glen Maddern\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-modules-scope@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-scope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-scope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-scope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-values@2.0.0", + "author": "Glen Maddern", + "name": "postcss-modules-values", + "version": "2.0.0", + "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bb205691f61950ebfd14805baa33a6166827c0d448fc58c83c0390e08271f5506289bd357fba0aaafca6942e2c73cce8b74ffb45e829415dc1c60b375de6e9c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\n\nCopyright (c) 2015, Glen Maddern\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/postcss-modules-values@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-values#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/icss-replace-symbols@1.1.0", + "author": "Glen Maddern", + "name": "icss-replace-symbols", + "version": "1.1.0", + "description": "Replacing symbols during the linking phase of ICSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "72121a637561da68764374465edb5a0c8cde88fbda55727e0b80c087fc37737ed2299fd4e8f18c9ae89c476110429f5b286f332cc0a5ec8f8fb48a0e38fa7c1a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/icss-replace-symbols@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/icss-replace-symbols#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/icss-replace-symbols/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/icss-replace-symbols.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/schema-utils@1.0.0", + "author": "webpack Contrib", + "name": "schema-utils", + "version": "1.0.0", + "description": "webpack Validation Utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "bff8b053ac2fc062bc1db53dca2dff9e11b33f4c864ae8503332fac9289e735152ad96439219b89e83925b3acd168fe311cf92258ea3453c2ec1b49724f0d49d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/schema-utils@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/schema-utils" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/schema-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/schema-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-prefers-color-scheme@3.1.1", + "author": "Jonathan Neal", + "name": "css-prefers-color-scheme", + "version": "3.1.1", + "description": "Use light and dark color schemes in all browsers", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/css-prefers-color-scheme@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstools/css-prefers-color-scheme#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstools/css-prefers-color-scheme/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstools/css-prefers-color-scheme.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssdb@4.4.0", + "author": "Jonathan Neal", + "name": "cssdb", + "version": "4.4.0", + "description": "A comprehensive list of CSS features and their positions in the process of becoming implemented web standards", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display,\n communicate, and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data\n in a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\napplicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\nunconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\nand Related Rights and associated claims and causes of action, whether now\nknown or unknown (including existing as well as future claims and causes of\naction), in the Work (i) in all territories worldwide, (ii) for the maximum\nduration provided by applicable law or treaty (including future time\nextensions), (iii) in any current or future medium and for any number of\ncopies, and (iv) for any purpose whatsoever, including without limitation\ncommercial, advertising or promotional purposes (the “Waiver”). Affirmer makes\nthe Waiver for the benefit of each member of the public at large and to the\ndetriment of Affirmer’s heirs and successors, fully intending that such Waiver\nshall not be subject to revocation, rescission, cancellation, termination, or\nany other legal or equitable action to disrupt the quiet enjoyment of the Work\nby the public as contemplated by Affirmer’s express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\njudged legally invalid or ineffective under applicable law, then the Waiver\nshall be preserved to the maximum extent permitted taking into account\nAffirmer’s express Statement of Purpose. In addition, to the extent the Waiver\nis so judged Affirmer hereby grants to each affected person a royalty-free, non\ntransferable, non sublicensable, non exclusive, irrevocable and unconditional\nlicense to exercise Affirmer’s Copyright and Related Rights in the Work (i) in\nall territories worldwide, (ii) for the maximum duration provided by applicable\nlaw or treaty (including future time extensions), (iii) in any current or\nfuture medium and for any number of copies, and (iv) for any purpose\nwhatsoever, including without limitation commercial, advertising or promotional\npurposes (the “License”). The License shall be deemed effective as of the date\nCC0 was applied by Affirmer to the Work. Should any part of the License for any\nreason be judged legally invalid or ineffective under applicable law, such\npartial invalidity or ineffectiveness shall not invalidate the remainder of the\nLicense, and in such case Affirmer hereby affirms that he or she will not (i)\nexercise any of his or her remaining Copyright and Related Rights in the Work\nor (ii) assert any associated claims and causes of action with respect to the\nWork, in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or\n warranties of any kind concerning the Work, express, implied, statutory\n or otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to\n this CC0 or use of the Work.\n\nFor more information, please see\nhttps://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/cssdb@4.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstools/cssdb#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstools/cssdb/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstools/cssdb.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-is@0.1.3", + "author": "Thorsten Lorenz", + "name": "deep-is", + "version": "0.1.3", + "description": "node's assert.deepEqual algorithm except for NaN being equal to NaN", + "hashes": [ + { + "alg": "SHA-512", + "content": "a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, 2013 Thorsten Lorenz \nCopyright (c) 2012 James Halliday \nCopyright (c) 2009 Thomas Robinson <280north.com>\n\nThis software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-is@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/deep-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/deep-is/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/thlorenz/deep-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/default-gateway@4.2.0", + "author": "silverwind", + "name": "default-gateway", + "version": "4.2.0", + "description": "Get the default network gateway, cross-platform.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ab0cad507554c595ad6d7799273a89afc3c18630e4c37af9ec4dbb539a25e15a73969202fc0cee56743557d3001b929107a5af8879a1e6e0dca0755cf76380" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) silverwind\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/default-gateway@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/silverwind/default-gateway#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/silverwind/default-gateway/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/silverwind/default-gateway.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/define-properties@1.1.3", + "author": "Jordan Harband", + "name": "define-properties", + "version": "1.1.3", + "description": "Define multiple non-enumerable properties at once. Uses `Object.defineProperty` when available; falls back to standard assignment in older engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c90ea8a71f695bed05db1591d3efdd78ef79026c350aa68578118bcba1bd65ae3d8642365cd3f2a0326e55203685dd1dd8cc4f302a7868c0a258bc7fe6f33c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/define-properties@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/define-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/define-properties/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/define-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/del@4.1.1", + "author": "Sindre Sorhus", + "name": "del", + "version": "4.1.1", + "description": "Delete files and folders", + "hashes": [ + { + "alg": "SHA-512", + "content": "6787f3a5b2118cebbb94ee630844d25a8a940d57b420f3a57ee801b05eacb9e9f62ca0e555be1066928433d3fe6ee349e0a23578dec8d3cdf0fe96ca529b2b59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/del@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/del#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/del/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/del.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globby@6.1.0", + "author": "Sindre Sorhus", + "name": "globby", + "version": "6.1.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c9453207d84787e3891af8b5a283e12a4f638d498a5594d7f1ea9c9de7ddbf545d536df96327b7a5c227bba12c1c5622c6a8e756a1c49dbb6b71c0117d6e399" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globby@6.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globby#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globby/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globby.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-cwd@2.1.0", + "author": "Sindre Sorhus", + "name": "is-path-cwd", + "version": "2.1.0", + "description": "Check if a path is the current working directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "7274b9e9e47d48f02c70befb8a4efa01356aa0f0114ea3c856430357145a587d3acd3fbaf82cc8ae8611274555be6d19d737c0bf1bf3f62fc3dcfa636aab7937" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-path-cwd@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-in-cwd@2.1.0", + "author": "Sindre Sorhus", + "name": "is-path-in-cwd", + "version": "2.1.0", + "description": "Check if a path is in the current working directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "1635754535b8f04ec258cede13f276349bc010455e92d79c0c15411391e1de733525dd24be11ed5faf0faf7c6c0dff39ef1b77638024c1550b2b5564bbad9a69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-path-in-cwd@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-in-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-in-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-in-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-inside@2.1.0", + "author": "Sindre Sorhus", + "name": "is-path-inside", + "version": "2.1.0", + "description": "Check if a path is inside another path", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa1b0247f12cc78538860ffd235f4e5540099065ad8d16073118143191364c3763f8083e92db596a72eea5f75d372825cf3e747149665b351a237ec60df371fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-path-inside@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-inside#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-inside/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-inside.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-map@2.1.0", + "author": "Sindre Sorhus", + "name": "p-map", + "version": "2.1.0", + "description": "Map over promises concurrently", + "hashes": [ + { + "alg": "SHA-512", + "content": "afacca00230d8633c931397c29c147e258bffe092b5d67db0fa7de57c97a768447973963156189d803fa88a682257c9998050c38fb6f6d6ec45e46d63bfa4b10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-map@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-node@2.0.4", + "author": "Ilya Kantor", + "name": "detect-node", + "version": "2.0.4", + "description": "Detect Node.JS (as opposite to browser environment) (reliable)", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f4348b90a674ef14301336e1cde6ba0fc12046f37ac5b2e3be3175c7f7fdcdd5e15b9f8c1c3e3b6dbe330b10f589d11194620404edc1a04b7b4dc5ba8218cee" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Ilya Kantor\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/detect-node@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iliakan/detect-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iliakan/detect-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iliakan/detect-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/diff@4.0.1", + "name": "diff", + "version": "4.0.1", + "description": "A javascript text diff implementation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "038eaab4581dfa0ee90d98a7a67c22449b716c2d61a607f4bb33f7886f3db1c1e4d00502ec0d531b17f93a288e52ffc931947c18eb7c84bf74d215746cecb9c4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Software License Agreement (BSD License)\n\nCopyright (c) 2009-2015, Kevin Decker \n\nAll rights reserved.\n\nRedistribution and use of this software in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above\n copyright notice, this list of conditions and the\n following disclaimer.\n\n* Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n* Neither the name of Kevin Decker nor the names of its\n contributors may be used to endorse or promote products\n derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + } + } + } + ], + "purl": "pkg:npm/diff@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kpdecker/jsdiff#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kpdecker/jsdiff/issues" + }, + { + "type": "vcs", + "url": "git://github.com/kpdecker/jsdiff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/doctrine@3.0.0", + "name": "doctrine", + "version": "3.0.0", + "description": "JSDoc parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "96c1b246e62be3f3c8074b718be172db138c23674669382e09aa2dcc51a4559b8a479bac29f71158814a34cdd036b53b861ffec366f04d6f997973cae65f2e56" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n" + } + } + } + ], + "purl": "pkg:npm/doctrine@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/doctrine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/doctrine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/doctrine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-walk@0.1.1", + "author": "Raynos", + "name": "dom-walk", + "version": "0.1.1", + "description": "iteratively walk a DOM node", + "hashes": [ + { + "alg": "SHA-512", + "content": "e90bd35bd9ab19e21e82b15776d422f6993b3bf9d22ba9527575b67aa52ca4de4b583ed44e38b616ac3957660b8c1a4712853d5e5fde5163690de66fa323afdb" + } + ], + "purl": "pkg:npm/dom-walk@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/dom-walk" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/dom-walk/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/dom-walk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domain-browser@1.2.0", + "author": "2013+ Bevry Pty Ltd", + "name": "domain-browser", + "version": "1.2.0", + "description": "Node's domain module for the web browser. This is merely an evented try...catch with the same API as node, nothing more.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e78f288ce9e472665d87f96f10ff32cc038f358738b47accc06815332159e66150c16e72f154d9dfbb51e0101bc26cbfbbd45af1325dc4ea5a4a1fb19edce5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\n\n

License

\n\nUnless stated otherwise all works are:\n\n\n\nand licensed under:\n\n\n\n

MIT License

\n\n
\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n
\n\n\n" + } + } + } + ], + "purl": "pkg:npm/domain-browser@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bevry/domain-browser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bevry/domain-browser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bevry/domain-browser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexer@0.1.1", + "author": "Raynos", + "name": "duplexer", + "version": "0.1.1", + "description": "Creates a duplex stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ed0fa606dfbd190888bff464da24a431593643d38e7ee11e214e4ff1d54ca8a9a77227dc7d0a04a2d519550d017c536b312cb4a716409a32286a9631c85a032" + } + ], + "purl": "pkg:npm/duplexer@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/duplexer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/duplexer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/duplexer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ejs@2.6.1", + "author": "Matthew Eernisse", + "name": "ejs", + "version": "2.6.1", + "description": "Embedded JavaScript templates", + "hashes": [ + { + "alg": "SHA-512", + "content": "eef9aeca1e7e92e53224a78f8507d140185757909ef919da79e400acabb51003292f759b80cb79586eae419a4456f6124acc4c5d128e7b0b4393d45a4ca5d194" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/ejs@2.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mde/ejs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mde/ejs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mde/ejs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/emoji-regex@7.0.3", + "author": "Mathias Bynens", + "name": "emoji-regex", + "version": "7.0.3", + "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b004b444210ecbbd8141d16c91bf086ae4de6a3e173a3cc8c3e9b620805948e58c83825fb4bf1ab95476cc385a8b83b85f5b39aef13e59d50a1f8664c8848b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/emoji-regex@7.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/emoji-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/emoji-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/emoji-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/enhanced-resolve@4.1.0", + "author": "Tobias Koppers @sokra", + "name": "enhanced-resolve", + "version": "4.1.0", + "description": "Offers a async require.resolve function. It's highly configurable.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65a02ec75ae282ad5eda742bced1e7e21dae82fa73671b3ae2a9de35a87ef0c87f2b4091a8914973e5285e752cabed725fe0e64053cf755a9ba0a009f3d7b423" + } + ], + "purl": "pkg:npm/enhanced-resolve@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/enhanced-resolve" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/enhanced-resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webpack/enhanced-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/memory-fs@0.4.1", + "author": "Tobias Koppers @sokra", + "name": "memory-fs", + "version": "0.4.1", + "description": "A simple in-memory filesystem. Holds data in a javascript object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d6b824a0b145e0d715746a3873d0b1cb88620d4fbf16c4d92d863f8e6b9f07c42bebd96970bc0b5385bdd1c86e0c340cbce8c17195a312da026960472d7819" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/memory-fs@0.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/memory-fs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/memory-fs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/memory-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/errno@0.1.7", + "name": "errno", + "version": "0.1.7", + "description": "libuv errno details exposed", + "hashes": [ + { + "alg": "SHA-512", + "content": "749ea806be5243555277daa493b0724606ffd521f82598c21d25bf9abeb7fd07173bdccb571bc9e8ecb5de78a8d37af1a529d50c38c5a2bef94a355e6563d6fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/errno@0.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/node-errno#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/node-errno/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/node-errno.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prr@1.0.1", + "author": "Rod Vagg", + "name": "prr", + "version": "1.0.1", + "description": "A better Object.defineProperty()", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e65040a6ad6ed1563ea60d62a34d77caba0ed3146762cfd3f5f0731c3b84472fe456ecc08e18dbe98f98f8ed19e9ea77baaf87d9d95cf251612929b83eb6c8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2014 Rod Vagg\n---------------------------\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prr@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/prr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/prr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/prr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tapable@1.1.3", + "author": "Tobias Koppers @sokra", + "name": "tapable", + "version": "1.1.3", + "description": "Just a little module for plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db0b2f43ee06c01bcb3cb5ac35f2c20d81ac5bac5beda782eaeb6ad908743c5c20132ecaeddb266bd26c99bdb34908fb1af600c941929ed2edb2ffbe1a680bd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) Tobias Koppers @sokra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tapable@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/tapable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/tapable/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/tapable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.13.0", + "author": "Jordan Harband", + "name": "es-abstract", + "version": "1.13.0", + "description": "ECMAScript spec abstract operations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5849b6a0185fa08dac22678ce0e176cc4d95dc161d485f8a9d28bd4a2773e757d01ddefe26e17c5e0723f7fd28f8e59e21e212fcc8ae36796bb90ac97f5e8640" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/es-abstract@1.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/es-abstract#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/es-abstract/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/es-abstract.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es-to-primitive@1.2.0", + "author": "Jordan Harband", + "name": "es-to-primitive", + "version": "1.2.0", + "description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4023a5960649b5a528f6689805c2c285351a1cd8c91773d8b35562743ec0c22123d6463129e41372d2c07b300e1f964a447d20d8880f9fa2b0078213f22469bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/es-to-primitive@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/es-to-primitive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/es-to-primitive/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/es-to-primitive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.1.4", + "author": "Jordan Harband", + "name": "is-callable", + "version": "1.1.4", + "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ecbb0b7165f317ebb3abca5f4b090faea670b4674060a709eda52f3d9b51ff4cb174ccd7f37cb315ffd59affa319b23d1a72912300ed0a175c53e9974b97de7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-callable@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/is-callable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/is-callable/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/is-callable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-date-object@1.0.1", + "author": "Jordan Harband", + "name": "is-date-object", + "version": "1.0.1", + "description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5841a4b1b00892c1cbd2df7301937c130959d62be1e117c5594768d1c5e84cd7a41c54e747a8f9f854f1e644ae254abdfc9fd26b8aeac89cb70ff74c6c60d7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-date-object@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/is-date-object#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/is-date-object/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/is-date-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-symbol@1.0.2", + "author": "Jordan Harband", + "name": "is-symbol", + "version": "1.0.2", + "description": "Determine if a value is an ES6 Symbol or not.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bf08f06a2969ef75cc6a200471c8e878bf551410e087a600dad16620a4a0c532ccdcacf71f7e0e6e8704a03c22c3d965b19aaea2b22b33f3bb734f4d6db8686" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-symbol@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/is-symbol#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/is-symbol/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/is-symbol.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-symbols@1.0.0", + "author": "Jordan Harband", + "name": "has-symbols", + "version": "1.0.0", + "description": "Determine if the JS environment has Symbol support. Supports spec, or shams.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9772c2b85e8c8033704c32a47581848a1623b79a513db120e3aaed9669d23e551b82607c2ce22b2896d86050526e73da25ec4c2ad88f3bc8667918d1cf64ddf8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-symbols@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/has-symbols#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/has-symbols/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/has-symbols.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-regex@1.0.4", + "author": "Jordan Harband", + "name": "is-regex", + "version": "1.0.4", + "description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag", + "hashes": [ + { + "alg": "SHA-512", + "content": "92f45dc43b31663873517d3b6672f27734b54d4fd32654d41c763860b2fcededfba14038f437e42ea832f958c5a1ca30cb6f5c2af7128aefa422fef6f234d356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-regex@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/is-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/is-regex/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/is-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint@5.16.0", + "author": "Nicholas C. Zakas", + "name": "eslint", + "version": "5.16.0", + "description": "An AST-based pattern checker for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d3dffd71d446d907ba61cd8bbbbc2af5bf738dbb30ed5fc5a3b8cf5cd226317be72afa9c1c284a108e5ef37774690ba60e2e09d2cb7713379f0cda37283c321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors, https://js.foundation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint@5.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://eslint.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint/issues/" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@4.0.3", + "name": "eslint-scope", + "version": "4.0.3", + "description": "ECMAScript scope analyzer for ESLint", + "hashes": [ + { + "alg": "SHA-512", + "content": "5be0744af17881a9b209399473eb884cf634f7cf625d57cabe1c2d989a1c4da62873fde48441e6126bdf63f1a7f4703d555ef98eb4040ac1e2ce4370d5bebc14" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright JS Foundation and other contributors, https://js.foundation\nCopyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-scope@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/eslint/eslint-scope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint-scope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint-scope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-utils@1.3.1", + "author": "Toru Nagashima", + "name": "eslint-utils", + "version": "1.3.1", + "description": "Utilities for ESLint plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7db04de56db1758e392ae9465e62c76777371477d56262a0d08ac02863a44ffe3ae0f42cc7651e2337f3d51984722f8a2e6d5b05a03364087cfbf13e5c0799f1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Toru Nagashima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-utils@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mysticatea/eslint-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mysticatea/eslint-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mysticatea/eslint-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/espree@5.0.1", + "author": "Nicholas C. Zakas", + "name": "espree", + "version": "5.0.1", + "description": "An Esprima-compatible JavaScript parser built on Acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "c80708431b6632207f8cbdf6773129d9e9c17a276c07bc563cb362c3720892955db353fe87ba85f58c09ab5c94373a7638a5e0029aece05eb58a1eba52ca03d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Espree\nCopyright JS Foundation and other contributors, https://js.foundation\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/espree@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/espree" + }, + { + "type": "issue-tracker", + "url": "http://github.com/eslint/espree.git" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/espree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esquery@1.0.1", + "author": "Joel Feenstra", + "name": "esquery", + "version": "1.0.1", + "description": "A query library for ECMAScript AST using a CSS selector like query language.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7020e2b295ade6f1c7b70318d98ac043889b16400bf116c7e581819d905cf7432896fbdf92441c26ba3f699880414950dea82b612e83eaff067391b9090b1cf7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2013, Joel Feenstra\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the ESQuery nor the names of its contributors may\n be used to endorse or promote products derived from this software without\n specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL JOEL FEENSTRA BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/esquery@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jrfeenst/esquery#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jrfeenst/esquery/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jrfeenst/esquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/file-entry-cache@5.0.1", + "author": "Roy Riojas", + "name": "file-entry-cache", + "version": "5.0.1", + "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", + "hashes": [ + { + "alg": "SHA-512", + "content": "b973ffcc6cf1c45bc57dc646801230a2d9be4dd739e5d74f03317b887b213f8606697330c3bad217da5e0fd0f5b2e8b979b38d8395286ec66ff857e01291afff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Roy Riojas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/file-entry-cache@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/royriojas/file-entry-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/royriojas/file-entry-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/royriojas/file-entry-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flat-cache@2.0.1", + "author": "Roy Riojas", + "name": "flat-cache", + "version": "2.0.1", + "description": "A stupidly simple key/value storage using files to persist some data", + "hashes": [ + { + "alg": "SHA-512", + "content": "570c81dcb92069c7e2936be1a91e2ebf6aef79baa60ef16ee2394dfc2d51cd6a09128f08ef3e10e34e288aa60292ae359a78bc1334279bde5e994f6c79c930b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Roy Riojas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/flat-cache@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/royriojas/flat-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/royriojas/flat-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/royriojas/flat-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flatted@2.0.0", + "author": "Andrea Giammarchi", + "name": "flatted", + "version": "2.0.0", + "description": "A super light and fast circular JSON parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "af9c06c7b61e3b0356365080d3043ceb32b20cb310afefd107cc72ef8338853a617e68e58a34d24971ae1fcae7bca6677d3f62fbbe7399df2370a74c4783ba8c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2018, Andrea Giammarchi, @WebReflection\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/flatted@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WebReflection/flatted#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WebReflection/flatted/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WebReflection/flatted.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write@1.0.3", + "author": "Jon Schlinkert", + "name": "write", + "version": "1.0.3", + "description": "Write data to a file, replacing the file if it already exists and creating any intermediate directories if they don't already exist. Thin wrapper around node's native fs methods.", + "hashes": [ + { + "alg": "SHA-512", + "content": "089d7b3a850b10a5e9039a5e7f7a8b8f90314c9ea64adee0f3885ed9622c90ac2a14ee13f7b77957b4da765d0360393bab250e403e5695494e30285a62b87178" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/write@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/write" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/write/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/write.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ignore@4.0.6", + "author": "kael", + "name": "ignore", + "version": "4.0.6", + "description": "Ignore is a manager and filter for .gitignore rules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e0b3de7591a326e465cfecc3afc4444835ede0b1a563516166f9464f4aaf7162b890024b32860d1cb274b429748d443e4d98d75aa571298f11b8f7e00a87fba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ignore@4.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kaelzhang/node-ignore#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kaelzhang/node-ignore/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kaelzhang/node-ignore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-fresh@3.0.0", + "author": "Sindre Sorhus", + "name": "import-fresh", + "version": "3.0.0", + "description": "Import a module while bypassing the cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "799e47f2b72061acc76ca0b73c6e029473729024b1b4087149210cfb699bfbb7af0f608a17957b73474dba6ec07690e1d197480b0658f6c4529fc7fe287f7ab2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-fresh@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-fresh#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-fresh/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-fresh.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parent-module@1.0.1", + "author": "Sindre Sorhus", + "name": "parent-module", + "version": "1.0.1", + "description": "Get the path of the parent module", + "hashes": [ + { + "alg": "SHA-512", + "content": "190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parent-module@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/parent-module#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/parent-module/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/parent-module.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inquirer@6.3.1", + "author": "Simon Boudrias", + "name": "inquirer", + "version": "6.3.1", + "description": "A collection of common interactive command line user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ec6d9f29381302af1561eb518b1612b11547e8a02ad2dd721bbea3467544bed553f8d53056d88abd9ba7a6c08fc79f14dc56a875f4748b2ce9f250fbffaa79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Simon Boudrias\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/inquirer@6.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/Inquirer.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/Inquirer.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/Inquirer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/external-editor@3.0.3", + "author": "Kevin Gravier", + "name": "external-editor", + "version": "3.0.3", + "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d29fa82f1b12adf9befee93284bf567270795e03b6878511f202a272a79a5b505b9860d233a599d00e4ec0b18724c967449d37809dacb4682cb6695ea24e4f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Kevin Gravier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/external-editor@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mrkmg/node-external-editor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mrkmg/node-external-editor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mrkmg/node-external-editor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/run-async@2.3.0", + "author": "Simon Boudrias", + "name": "run-async", + "version": "2.3.0", + "description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6f56756fd356fc73546b03a129ec9912b63f391aebff62b31cc2a6109f08ec012d9c4e698f181063023a425bb46b4a874d4a8136fea83d3b86dc78dbd4b8381" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Simon Boudrias\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/run-async@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/run-async#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/run-async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/run-async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-promise@2.1.0", + "author": "ForbesLindesay", + "name": "is-promise", + "version": "2.1.0", + "description": "Test whether an object looks like a promises-a+ promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa53f8ffa94a5017d08d9da97714e166f2d401a7e665bf0e03115bf175ed890992df920d82bf3985d386a04b35db87b3d450a7649b7a8dabbf4fe6a5879f1015" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-promise@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/then/is-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/then/is-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/then/is-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rxjs@6.5.2", + "author": "Ben Lesh", + "name": "rxjs", + "version": "6.5.2", + "description": "Reactive Extensions for modern JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "c71da2b672f9b016ea79e89580d3d5b904359c2f09a7659f349857587984956f589aba52f5456737384fdc41f71c5a9ec4ee53969f0685863e58472a71532f1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n" + } + } + } + ], + "purl": "pkg:npm/rxjs@6.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ReactiveX/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ReactiveX/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactivex/rxjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@5.2.0", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "5.2.0", + "description": "Strip ANSI escape codes from a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-ansi@5.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@4.1.0", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "4.1.0", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/optionator@0.8.2", + "author": "George Zahariev", + "name": "optionator", + "version": "0.8.2", + "description": "option parsing and help generation", + "hashes": [ + { + "alg": "SHA-512", + "content": "f885bda4009d9375d69a64d71bc9b7ba919426cb795d11b3c4c4635f302e2755e720536f7e18e322e6240efcac9cf43bab3a95ccbb7bf010abba7b6a4615906c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) George Zahariev\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/optionator@0.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gkz/optionator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gkz/optionator/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gkz/optionator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpp@2.0.1", + "author": "Toru Nagashima", + "name": "regexpp", + "version": "2.0.1", + "description": "Regular expression parser for ECMAScript 2018.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ce3f0f05a6075017d7ad58c6807c6fd646d848757246629e262762609ffda5a646e877d8cf9f4b7d52a37b03104e28d7f345b63255f81ced5938b7f3299d783" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Toru Nagashima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regexpp@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mysticatea/regexpp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mysticatea/regexpp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mysticatea/regexpp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/table@5.4.0", + "author": "Gajus Kuizinas", + "name": "table", + "version": "5.4.0", + "description": "Formats data into a string table.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bbae71484e6047d449f229cbf1061d4b8d87903269d9b425d211b1dc1fa4b43682a2b76e19b853bf4f5bc370b758b0b424335f3c3d5561426cca22e4e13642a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/table@5.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/table#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/table/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/slice-ansi@2.1.0", + "name": "slice-ansi", + "version": "2.1.0", + "description": "Slice a string with ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ceab104ae8b6f7abab34e3b0ff5ec0d534f9c5f4397c2526aa7bd87d954465d0e74dab2fee8c3ace8881edb2a5cc19b5964c8a2647300c693c9ac0053ffd17a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) DC \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/slice-ansi@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/slice-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/slice-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/slice-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string-width@3.1.0", + "author": "Sindre Sorhus", + "name": "string-width", + "version": "3.1.0", + "description": "Get the visual width of a string - the number of columns required to display it", + "hashes": [ + { + "alg": "SHA-512", + "content": "9cea87e7d75e0aaf52447971ab5030f39267b78c3a2af2caa9656293aa00f599255cb3483a5aa0e05db2ad3d4c55a4e302abd5c1d7de67bc3b682bc90fbba093" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/string-width@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/string-width#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/string-width/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/string-width.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/events@3.0.0", + "author": "Irakli Gozalishvili", + "name": "events", + "version": "3.0.0", + "description": "Node's event emitter for all engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "90472fbc2041c965c69d9cba254960029da00485237c2015e8fe93813d7f69a40a726b80102e0e65357523811640bcf6831670efa6adb95caf1e14f1be2d0597" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT\n\nCopyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/events@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Gozala/events#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Gozala/events/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/Gozala/events.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventsource@1.0.7", + "author": "Aslak Hellesøy", + "name": "eventsource", + "version": "1.0.7", + "description": "W3C compliant EventSource client for Node.js and browser (polyfill)", + "hashes": [ + { + "alg": "SHA-512", + "content": "6db079b44baf0be4ae4541bae17f2086f8e08919e2b80e1695e8566c59e8378cfa4f10d7a725fe04c1c5eeb320640aa87be11bc8d4546c7374bae3fda61cb98d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) EventSource GitHub organisation\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eventsource@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/EventSource/eventsource" + }, + { + "type": "issue-tracker", + "url": "http://github.com/EventSource/eventsource/issues" + }, + { + "type": "vcs", + "url": "git://github.com/EventSource/eventsource.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/original@1.0.2", + "author": "Arnout Kazemier", + "name": "original", + "version": "1.0.2", + "description": "Generate the origin from an URL or check if two URL/Origins are the same", + "hashes": [ + { + "alg": "SHA-512", + "content": "87205597a8aaa94389f05a917be97f812f07fa42988eb12775de4f9b531f06db04280d37f0792475b025ffbd840171b2a270ff3c5b2f9951be12f708a6588c06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/original@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/original#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/original/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/original.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url-parse@1.4.7", + "author": "Arnout Kazemier", + "name": "url-parse", + "version": "1.4.7", + "description": "Small footprint URL parser that works seamlessly across Node.js and browser environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b2a5c7e24617de50ff6fbc5d23eabc3427786b5abc3a899bf7fb6da1ea244c27ff33d538fa5df2cfe03b148b1e4c84c3e75e98870e82b2a19fdb74293004289" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/url-parse@1.4.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/url-parse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/url-parse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/url-parse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/querystringify@2.1.1", + "author": "Arnout Kazemier", + "name": "querystringify", + "version": "2.1.1", + "description": "Querystringify - Small, simple but powerful query string parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f96216d38ebf9e12278bf9ad7330434dcb45df4f547b45df288785f377a294baf8a2596b8a612ac73206d830b431482f8b8d05e118e2e26e9484a10d36c12bb4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/querystringify@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/querystringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/querystringify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/querystringify.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/express@4.17.1", + "author": "TJ Holowaychuk", + "name": "express", + "version": "4.17.1", + "description": "Fast, unopinionated, minimalist web framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd905c397f537de847421b6ea6ae7b385f25159dd4662d3c63deddc050a40fca7d77f77663733eca429cc1a30310bfb8ab25289600435fa01b9694777cbdb5d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2009-2014 TJ Holowaychuk \nCopyright (c) 2013-2014 Roman Shtylman \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/express@4.17.1", + "externalReferences": [ + { + "type": "website", + "url": "http://expressjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/express/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/express.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/proxy-addr@2.0.5", + "author": "Douglas Christopher Wilson", + "name": "proxy-addr", + "version": "2.0.5", + "description": "Determine address of proxied request", + "hashes": [ + { + "alg": "SHA-512", + "content": "6afd4c439bf04e23080b053be4a49ffef27a6be0173f432d3fe69806a9b6445962adeec13fab1695f38b73cfbac0842bcb0c9ca92a495a6e7336460591101158" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/proxy-addr@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/proxy-addr#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/proxy-addr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/proxy-addr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ipaddr.js@1.9.0", + "author": "whitequark", + "name": "ipaddr.js", + "version": "1.9.0", + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0a23feb4ef1a31493a07ec68cdd457d26cba14d3e6ed4e2723b1049642587f859ca437c2a998c7fbb98c0f5b747e6a467a47fc35f199574870585e26143cede" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2017 whitequark \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ipaddr.js@1.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/whitequark/ipaddr.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/whitequark/ipaddr.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/whitequark/ipaddr.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/send@0.17.1", + "author": "TJ Holowaychuk", + "name": "send", + "version": "0.17.1", + "description": "Better streaming static file server with Range and conditional-GET support", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfa3b7f5257803a963e130402dcd2d00c9a24f00a50b6369a7ac2246fcf1ab2ac7df24e2630026595c81d9ad1afc3dc84824151d8fe5f953bff49568e99b9b7c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/send@0.17.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/send#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/send/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/send.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/serve-static@1.14.1", + "author": "Douglas Christopher Wilson", + "name": "serve-static", + "version": "1.14.1", + "description": "Serve static files", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c6b910cd8d75228ec50bd2f97a9d20fb730511bb31208256ce685b9933d8379300d7396553724d232f38cfcc60fe4dacd66dba1962ee76ffdfd73dd5209def6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2010 Sencha Inc.\nCopyright (c) 2011 LearnBoost\nCopyright (c) 2011 TJ Holowaychuk\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/serve-static@1.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/serve-static#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/serve-static/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/serve-static.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/faye-websocket@0.10.0", + "author": "James Coglan", + "name": "faye-websocket", + "version": "0.10.0", + "description": "Standards-compliant WebSocket server and client", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e18fddd15db312abcbab34252ae29f65d0fea19f2489ffb60d46160dba0d1b2ceba28bba4a3bbc5015be66c7dc595d609aafcf292cf6fcd393ef524c2b2d9a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/faye-websocket@0.10.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/faye/faye-websocket-node" + }, + { + "type": "issue-tracker", + "url": "http://github.com/faye/faye-websocket-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/faye-websocket-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/websocket-driver@0.7.0", + "author": "James Coglan", + "name": "websocket-driver", + "version": "0.7.0", + "description": "WebSocket protocol handler with pluggable I/O", + "hashes": [ + { + "alg": "SHA-512", + "content": "a01c7a64cd46b39ab68f066e48dfd0c72cbf7db828995f3ebeab268a968f281ffbe218c794ab8cd3b8cd991867e2a6b601d530b20c6b96dabe81a3ec1e0725d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License\n\nCopyright (c) 2010-2017 James Coglan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/websocket-driver@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faye/websocket-driver-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faye/websocket-driver-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/websocket-driver-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-parser-js@0.5.0", + "author": "Tim Caswell", + "name": "http-parser-js", + "version": "0.5.0", + "description": "A pure JS HTTP parser for node.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4867815f9e05f785a0bb9447dd7e63b03b5fe1e1f24688165f55c64f76f81ee5b7b503cce00681ce85238bfe000093570843966793b40e0666270d7de3b803e5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other\ncontributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\nSome files from the tests folder are from joyent/node and mscedex/io.js, a fork\nof nodejs/io.js:\n\n- tests/iojs/test-http-parser-durability.js\n\n This file is from https://github.com/mscdex/io.js/blob/js-http-parser/test/pummel/test-http-parser-durability.js\n with modifications by Jan Schär (jscissr).\n\n \"\"\"\n Copyright io.js contributors. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n\n- tests/fixtures/*\n tests/parallel/*\n tests/testpy/*\n tests/common.js\n tests/test.py\n tests/utils.py\n\n These files are from https://github.com/nodejs/node with changes by\n Jan Schär (jscissr).\n\n Node.js is licensed for use as follows:\n \n \"\"\"\n Copyright Node.js contributors. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n\n This license applies to parts of Node.js originating from the\n https://github.com/joyent/node repository:\n\n \"\"\"\n Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n " + } + } + } + ], + "purl": "pkg:npm/http-parser-js@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/creationix/http-parser-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/creationix/http-parser-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/creationix/http-parser-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/websocket-extensions@0.1.3", + "author": "James Coglan", + "name": "websocket-extensions", + "version": "0.1.3", + "description": "Generic extension manager for WebSocket connections", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aa79d3c818e7ec0e5a37d5437061b08531268ef66f46ff47da2078f9fdd6450cc16a3d3731e94c2ac8ecb708e11a10e83ff55b0622976a9fad96e4a868292a6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License\n\nCopyright (c) 2014-2017 James Coglan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/websocket-extensions@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/faye/websocket-extensions-node" + }, + { + "type": "issue-tracker", + "url": "http://github.com/faye/websocket-extensions-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/websocket-extensions-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/file-loader@1.1.11", + "author": "Tobias Koppers @sokra", + "name": "file-loader", + "version": "1.1.11", + "description": "file loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "37eba11779acc0815ece21d08c649c27fc875d8b770e22c1782fbdbd65be5a350188294c48e955d58ad7422fbb28cd9a037467e01c9b82ffae5c541b7e4ce9be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/file-loader@1.1.11", + "externalReferences": [ + { + "type": "website", + "url": "https://webpack.js.org/loaders/file-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/file-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/file-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/schema-utils@0.4.7", + "author": "webpack Contrib", + "name": "schema-utils", + "version": "0.4.7", + "description": "webpack Validation Utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "bff8b053ac2fc062bc1db53dca2dff9e11b33f4c864ae8503332fac9289e735152ad96439219b89e83925b3acd168fe311cf92258ea3453c2ec1b49724f0d49d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/schema-utils@0.4.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/schema-utils" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/schema-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/schema-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/filesize@3.6.1", + "author": "Jason Mulligan", + "name": "filesize", + "version": "3.6.1", + "description": "JavaScript library to generate a human readable String describing the file size", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a3148a4e1c2e236df7137e8878ae45a9237d6617bbe2c3d8a48ff2722e82b3aa5c06fd8b1e7ca7ef625621758760ffd9ad2b6cf503380dff42ef550df376549" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2018, Jason Mulligan\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n* Redistributions of source code must retain the above copyright notice, this\r\n list of conditions and the following disclaimer.\r\n\r\n* Redistributions in binary form must reproduce the above copyright notice,\r\n this list of conditions and the following disclaimer in the documentation\r\n and/or other materials provided with the distribution.\r\n\r\n* Neither the name of filesize nor the names of its\r\n contributors may be used to endorse or promote products derived from\r\n this software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\n" + } + } + } + ], + "purl": "pkg:npm/filesize@3.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://filesizejs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avoidwork/filesize.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/avoidwork/filesize.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flat@4.1.0", + "author": "Hugh Kennedy", + "name": "flat", + "version": "4.1.0", + "description": "Take a nested Javascript object and flatten it, or unflatten an object with delimited keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fab2e103fb9ff7ad3a5405d1b582ea4897c30f14200c034417c269632e1bc250a714bdd138816932f73a6e1827171ceb33e09f703c6356aba38aa66233cf785" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014, Hugh Kennedy\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/flat@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hughsk/flat" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hughsk/flat/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hughsk/flat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-buffer@2.0.3", + "author": "Feross Aboukhadijeh", + "name": "is-buffer", + "version": "2.0.3", + "description": "Determine if an object is a Buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "35c7402f0a579139b966fbdb93ba303944af56f04a0e028fe7f7b07d71339e64057ece194666a739e2814e34558e46b7405a0de9727ef45dd44aa7c7a93694e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-buffer@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/is-buffer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/is-buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/is-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flatten@1.0.2", + "author": "Joshua Holbrook", + "name": "flatten", + "version": "1.0.2", + "description": "Flatten arbitrarily nested arrays into a non-nested list of non-array items", + "hashes": [ + { + "alg": "SHA-512", + "content": "755b0f03f53043cfb6ba815ee461ed88132ee3c7562d376cb8477b08a1a56650fbf2bd534d606f0ee15a146282a3f65f12bf79524e7abd9a17f3a3ac1e451e22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Joshua Holbrook\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/flatten@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jesusabdullah/node-flatten#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jesusabdullah/node-flatten/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jesusabdullah/node-flatten.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/follow-redirects@1.7.0", + "author": "Ruben Verborgh", + "name": "follow-redirects", + "version": "1.7.0", + "description": "HTTP and HTTPS modules that follow redirects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8b00c42cfa4d1bda6edc571a52d5528956fa33ed24bd4ddd73b2cdd74705e3f990c7d34449827b8bc7b138e30c74da440badd33768e3b2f85a734bbfbc3a2cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2014–present Olivier Lalonde , James Talmage , Ruben Verborgh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR\nIN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/follow-redirects@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/follow-redirects/follow-redirects" + }, + { + "type": "issue-tracker", + "url": "https://github.com/follow-redirects/follow-redirects/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/follow-redirects/follow-redirects.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@3.2.6", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "3.2.6", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, \nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial \nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@3.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fstream@1.0.12", + "author": "Isaac Z. Schlueter", + "name": "fstream", + "version": "1.0.12", + "description": "Advanced file system stream things", + "hashes": [ + { + "alg": "SHA-512", + "content": "5af275f773876b41873c42fe032704260c6f044c327d190dd6f86371adb739a3d530268b0974dde6a02ef360234dc80fd54266cad90e29beb762975eeeb68322" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fstream@1.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/fstream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/fstream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/fstream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gaze@1.1.3", + "author": "Kyle Robinson Young", + "name": "gaze", + "version": "1.1.3", + "description": "A globbing fs.watch wrapper built from the best parts of other fine watch libs.", + "hashes": [ + { + "alg": "SHA-512", + "content": "05174d9bc85b5b31735871114eb7a32eac070df4b81a26cfa2ae708d33c8a091e806d2863e0df10057f198cfbdced6d77a5c5c7f687041c6b3d4fb6615eb9ef2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/gaze@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shama/gaze" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shama/gaze/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shama/gaze.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globule@1.2.1", + "author": "\"Cowboy\" Ben Alman", + "name": "globule", + "version": "1.2.1", + "description": "An easy-to-use wildcard globbing library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "38f4c87e130187b25b0580e96b96fe439a6d98c58ac1c35c15247fd1ceadf15e1fdd9015044b0a358dfb41d56a98b45848c84e50662b6344214a8129cc6aff12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2018 \"Cowboy\" Ben Alman\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globule@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cowboy/node-globule" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cowboy/node-globule/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cowboy/node-globule.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-caller-file@2.0.5", + "author": "Stefan Penner", + "name": "get-caller-file", + "version": "2.0.5", + "description": "[![Build Status](https://travis-ci.org/stefanpenner/get-caller-file.svg?branch=master)](https://travis-ci.org/stefanpenner/get-caller-file) [![Build status](https://ci.appveyor.com/api/projects/status/ol2q94g1932cy14a/branch/master?svg=true)](https://ci.appveyor.com/project/embercli/get-caller-file/branch/master)", + "hashes": [ + { + "alg": "SHA-512", + "content": "dedeab553a1ea197d848677c6282c54760c992242b22252b19c8ef157da60f0ddb9fa9363adc073744cd08b6c13bec3ca93be29a10e4bfe2d2b1c6c9635bc4eb" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License (ISC)\nCopyright 2018 Stefan Penner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-caller-file@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/get-caller-file#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/get-caller-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/get-caller-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/global@4.3.2", + "author": "Raynos", + "name": "global", + "version": "4.3.2", + "description": "Require global variables", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2ffcb0281dd444dc17931b3e771406a684694f2e196cb0ae39bac9861538488b85ea9c19a3290d7abbe44d6cfed6be2811643c54b0cd09de0710e7289c68bd3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Colingo.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/global@4.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/global" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/global/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/global.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/min-document@2.19.0", + "author": "Raynos", + "name": "min-document", + "version": "2.19.0", + "description": "A minimal DOM implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "f56cb50779b77fae9b3cf994e61740e034783c1d8e7c353ff864b7c8007b210a33137b6a5da56fdb33a38256bb30419246ff79f882e63aebe12e438aeb026d09" + } + ], + "purl": "pkg:npm/min-document@2.19.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/min-document" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/min-document/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/min-document.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/process@0.5.2", + "author": "Roman Shtylman", + "name": "process", + "version": "0.5.2", + "description": "process information for node.js and browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d19e7ff76b585a32743d49b0ccee15ff35d349d997e193fb269c7366c471e7797fd463938cfe5ad1544c1bbd3e13a2f63fe37e604fbb498c118e3021d005f0" + } + ], + "purl": "pkg:npm/process@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shtylman/node-process#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shtylman/node-process/issues" + }, + { + "type": "vcs", + "url": "git://github.com/shtylman/node-process.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gzip-size@5.1.1", + "author": "Sindre Sorhus", + "name": "gzip-size", + "version": "5.1.1", + "description": "Get the gzipped size of a string or buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "eacf2dad088af8e33349a0925575fe8aa21c2d5f6d0be13bde3ac9ac94f24b887f009865c47bf314aa8cd582c32564468075fcb8b901797900d278cd8f7f4be3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gzip-size@5.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/gzip-size#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/gzip-size/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/gzip-size.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/handle-thing@2.0.0", + "author": "Fedor Indutny", + "name": "handle-thing", + "version": "2.0.0", + "description": "Wrap Streams2 instance into a HandleWrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ddf4461c05f94c505e92b092c60c00d51f9d234b32cd21452b38594518aff3c2a8a601383dfb06388ec2d6091ec3652c6dd817cad3e9621d431da11d756e32e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/handle-thing@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spdy-http2/handle-thing#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/handle-thing/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/handle-thing.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/handlebars@4.1.2", + "author": "Yehuda Katz", + "name": "handlebars", + "version": "4.1.2", + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "hashes": [ + { + "alg": "SHA-512", + "content": "6807179b93807c4ffc21791c66f09ea4a5375735b5ff7f456f966ea8cb6023f853f17d9882832f058e5d2e1abf7293afc3b2e4d672bf505ef568b1bf66755844" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2017 by Yehuda Katz\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/handlebars@4.1.2", + "externalReferences": [ + { + "type": "website", + "url": "http://www.handlebarsjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wycats/handlebars.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wycats/handlebars.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/neo-async@2.6.1", + "name": "neo-async", + "version": "2.6.1", + "description": "Neo-Async is thought to be used as a drop-in replacement for Async, it almost fully covers its functionality and runs faster ", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Suguru Motegi\nBased on Async.js, Copyright Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/neo-async@2.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/suguru03/neo-async" + }, + { + "type": "issue-tracker", + "url": "https://github.com/suguru03/neo-async/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/suguru03/neo-async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/har-validator@5.1.3", + "author": "Ahmad Nassri", + "name": "har-validator", + "version": "5.1.3", + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e64f64f49658dbc5d4197eca6c9e8f6182b1b7522afa2ace5a7e2b26eb6a68c6a04ceac0e7304b8f9b34eaf17374384c2a28b2dd8758d0237ab213ae8dcdbdf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Ahmad Nassri \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/har-validator@5.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ahmadnassri/node-har-validator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ahmadnassri/node-har-validator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ahmadnassri/node-har-validator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hoist-non-react-statics@3.3.0", + "author": "Michael Ridgway", + "name": "hoist-non-react-statics", + "version": "3.3.0", + "description": "Copies non-react specific statics from a child component to a parent component", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe01a2bf18bc24f296366fd6d234a6cdc30fa5fa4f2dcddd63fe86c615f6850f621a3dda0df925578113ecd8caa528a72e9279bda7daf62886204660d7449f07" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Software License Agreement (BSD License)\n========================================\n\nCopyright (c) 2015, Yahoo! Inc. All rights reserved.\n----------------------------------------------------\n\nRedistribution and use of this software in source and binary forms, with or\nwithout modification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission of Yahoo! Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/hoist-non-react-statics@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mridgway/hoist-non-react-statics#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mridgway/hoist-non-react-statics/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-is@16.8.6", + "name": "react-is", + "version": "16.8.6", + "description": "Brand checking of React Elements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-is@16.8.6", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hosted-git-info@2.7.1", + "author": "Rebecca Turner", + "name": "hosted-git-info", + "version": "2.7.1", + "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b120301bf4bb26e83a0e27bc47fb9f97e32d4b53fe078b9d0bf42e6c22cc0adc9cd42d2e1bc24d45be374182f611e1bcd3e2db944220b5e451367f91db2ef63" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hosted-git-info@2.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/hosted-git-info" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/hosted-git-info/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/hosted-git-info.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hpack.js@2.1.6", + "author": "Fedor Indutny", + "name": "hpack.js", + "version": "2.1.6", + "description": "HPACK implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc9c557a151d30620ab1168db7b6a93b61aaa7405da96e726a21875d799ba6fc600585599c0aa5f8125be113b969dd8c8296d92a7e46ea73277a0ac7d4570d61" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/hpack.js@2.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/hpack.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/hpack.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/hpack.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/obuf@1.1.2", + "author": "Fedor Indutny", + "name": "obuf", + "version": "1.1.2", + "description": "Byte buffer specialized for data in chunks with special cases for dropping bytes in the front, merging bytes in to various integer types and abandoning buffer without penalty for previous chunk merges.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d7d70bb402601d3ea38bd665a1aa694e77c90e219430199c3aae1eee6f2f5f4dce6585a39614b5f723a47586b17d937cd4638d1eea282c2c69035caf762c936" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Fedor Indutny, 2015.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/obuf@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/offset-buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/offset-buffer/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/offset-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wbuf@1.7.3", + "author": "Fedor Indutny", + "name": "wbuf", + "version": "1.7.3", + "description": "Write buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "3bce103a7af489cb1b1462d2d0eddb23916cc31cd1afcfe01f05a40e5405b248523ebc905efad33318f118fe3e8966286ae2e806f7c3a64ace6ae67ed226690c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/wbuf@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/wbuf" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/wbuf/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/wbuf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-entities@1.2.1", + "author": "Marat Dulin", + "name": "html-entities", + "version": "1.2.1", + "description": "Faster HTML entities encode/decode library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f27c6370171df30a2f6de2b1ee1df04e38b87bafab85a56e3cda4cab05a09c787e37d4e8aac0ace97ced59104f43e52dceca0c01d299b5410da15cd4fc432d64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Dulin Marat\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/html-entities@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mdevils/node-html-entities#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mdevils/node-html-entities/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mdevils/node-html-entities.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-minify@0.3.2", + "author": "yize", + "name": "html-minify", + "version": "0.3.2", + "description": "minify html, and any CSS or JS included in your markup", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 yize \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-minify@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yize/html-minify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yize/html-minify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/yize/html-minify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.9.0", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.9.0", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-js@2.6.4", + "author": "Mihai Bazon", + "name": "uglify-js", + "version": "2.6.4", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8babfe32da98dc537be1961b1e5c6189ed56c53b8a4100dbb493097c5426bd28423457c55f648c76172df0d358924c0fe91b02994a6bbff88e1eb4b34376de7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2013 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/uglify-js@2.6.4", + "externalReferences": [ + { + "type": "website", + "url": "http://lisperator.net/uglifyjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mishoo/UglifyJS2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mishoo/UglifyJS2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-deceiver@1.2.7", + "author": "Fedor Indutny", + "name": "http-deceiver", + "version": "1.2.7", + "description": "Deceive HTTP parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e6a4e1b14df6e982d195c49ae3e64edab171c280d669e672dfa7e85673c41046ab5bedf532ea4458dc13b587d75d17ac883d8500460c463b0078d839f121a37" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/http-deceiver@1.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/http-deceiver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/http-deceiver/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/http-deceiver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-proxy@1.17.0", + "author": "Charlie Robbins", + "name": "http-proxy", + "version": "1.17.0", + "description": "HTTP proxying for the masses", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee6cffef6d406e72702156e7692bf50b3dc09b464b4ff501c240bdd95971857bff93f04141f3367d712540d0b6ec1546af4bb0529a6560f40cf4b9da04c47935" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\n node-http-proxy\n\n Copyright (c) 2010-2016 Charlie Robbins, Jarrett Cruger & the Contributors.\n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-proxy@1.17.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejitsu/node-http-proxy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejitsu/node-http-proxy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodejitsu/node-http-proxy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-proxy-middleware@0.19.1", + "author": "Steven Chim", + "name": "http-proxy-middleware", + "version": "0.19.1", + "description": "The one-liner node.js proxy middleware for connect, express and browser-sync", + "hashes": [ + { + "alg": "SHA-512", + "content": "26d1f75198eee285c375c6b6f3f9249db9bf0859addf9bf2d185743cd38c5965a99f7ad3f5657de485cde39d71c011928f2f4bd026a1d4ef5308ccad6e82dd7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Steven Chim\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/http-proxy-middleware@0.19.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chimurai/http-proxy-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chimurai/http-proxy-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chimurai/http-proxy-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/https-browserify@1.0.0", + "author": "James Halliday", + "name": "https-browserify", + "version": "1.0.0", + "description": "https module compatability for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "1230d015b809af5bc30ffd7be5425e497de7710dfe4549c22f9364b614061ef17854d1e5cd3cbc89f25f4eacf8eea88f46a6851f9f3e09bb86df1e755ae0755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nCopyright (c) James Halliday\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/https-browserify@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/https-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/https-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/https-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-cwd@2.1.0", + "author": "Sindre Sorhus", + "name": "import-cwd", + "version": "2.1.0", + "description": "Import a module like with `require()` but from the current working directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "130e4067325016aace5790535b7108a07027a227b52e88d92d729c090ff24d1c95668b0184ad71d558988c719fe690053aaf19c82859a7a9bf7d237ba49c99b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-cwd@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-from@2.1.0", + "author": "Sindre Sorhus", + "name": "import-from", + "version": "2.1.0", + "description": "Import a module like with `require()` but from a given path", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2f7672cbdb04869e19519b31c9020e491e3b75976bd887327bb4d2c66de560d1fb1ee7ab6919a1f4bb31feafd4a57a3f814975c41ef04a0c49d548b2c4f7ffb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-from@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-from/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-from@3.0.0", + "author": "Sindre Sorhus", + "name": "resolve-from", + "version": "3.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from a given path", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-from@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/resolve-from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/resolve-from/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/resolve-from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-local@2.0.0", + "author": "Sindre Sorhus", + "name": "import-local", + "version": "2.0.0", + "description": "Let a globally installed package use a locally installed version of itself if available", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc06991e278af6a8c6a39f1a811060f9b8475f78684d953f39adc611258bcfbb7553ad9f93adda1ee0c9244b5e5e80de4c270f9944fecf7f209073d99249a999" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-local@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-local#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-local/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-local.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-cwd@2.0.0", + "author": "Sindre Sorhus", + "name": "resolve-cwd", + "version": "2.0.0", + "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "71cbbccd04ebcd5afde78e3bd9a5153cb11c077629292611ddc83fde5a35a24ce86cf04cfb520d5c16c16650db9c8fe16c4a1c9dff23d10568e378502ab6dc86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-cwd@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/resolve-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/resolve-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/resolve-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/in-publish@2.0.0", + "author": "Rebecca Turner", + "name": "in-publish", + "version": "2.0.0", + "description": "Detect if we were run as a result of `npm publish`", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0333491448d142df54a13711ca5327d92b2f1979764158c8cc7591ca2ce935deebd3dbb5532ff4334467d151c7af261a64640be584f62e5e417b78d5abb72c5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/in-publish@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/in-publish" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/in-publish/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/in-publish.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/internal-ip@4.3.0", + "author": "Sindre Sorhus", + "name": "internal-ip", + "version": "4.3.0", + "description": "Get your internal IP address", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f319f4dab173e6c22cd03f85d5dab47aaf6be9f138e53a932726a1bd232da2d6997596465d663e6b4a921ced81465f69d2e3a3cf800184c93f90e61136141da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/internal-ip@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/internal-ip#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/internal-ip/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/internal-ip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/interpret@1.2.0", + "author": "Gulp Team", + "name": "interpret", + "version": "1.2.0", + "description": "A dictionary of file extensions and associated module loaders.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a013841f0762e4a7db880a7ec102aa2c730e1264ff644c4da1c62148de304f99725f76a89a8536d4b8a1ac3283761ada8bf40c61622a00715be0b1bd47bd16c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/interpret@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/interpret#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/interpret/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/interpret.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-finite@1.0.2", + "author": "Sindre Sorhus", + "name": "is-finite", + "version": "1.0.2", + "description": "ES2015 Number.isFinite() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "71dc8cb6a5ff04eaaa3410622a5215932b4d1e6e3d32d3256329f5cf1cef24a5a614c946ce6fabcb90417d8c9e63d62634a6d14a8fe8ece5fdc3d6a57b4c20df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-finite@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-finite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-finite/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-finite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-source-maps@3.0.6", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-source-maps", + "version": "3.0.6", + "description": "Source maps support for istanbul", + "hashes": [ + { + "alg": "SHA-512", + "content": "df4978d324a0fa0bc12dcc53acbcd1e19d974d18f71e044203fa76ae76ecff73a24daa23d39e2001bb8fe4370b3adc2a9b2e175bca97047ceb98fdbf6d0f62dc" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-source-maps@3.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-reports@2.2.6", + "author": "Krishnan Anantheswaran", + "name": "istanbul-reports", + "version": "2.2.6", + "description": "istanbul reports", + "hashes": [ + { + "alg": "SHA-512", + "content": "baed45fcbd68e58e8bccf5525595cd3a80ff297a49b9ef5a78b45dd2c33db8c5df66fce8981d16c556a659be6e7bc900daf5561265bb106f80e67ddfd64a872a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-reports@2.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://istanbul.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-base64@2.5.1", + "author": "Dan Kogai", + "name": "js-base64", + "version": "2.5.1", + "description": "Yet another Base64 transcoder in pure-JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "a597bffc61a6c099ddb9bed9821547cfbbe36f62e00b59bc074ec0bb7798a9eaaff5e9a1112072317c5a120914904a897bcee805b4a788662840d20192573b21" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2014, Dan Kogai\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of {{{project}}} nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/js-base64@2.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dankogai/js-base64#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dankogai/js-base64/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dankogai/js-base64.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-loader@0.5.7", + "author": "Tobias Koppers @sokra", + "name": "json-loader", + "version": "0.5.7", + "description": "json loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "40b3ecf038fb9677f77b74184b5ce40a8fb8670a8e885f5dfe7667628cd3212c575827cdb3dcae932e6b270e3f5b7e2cecf39a3656d999019a0793625c26cfe3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-loader@0.5.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/json-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/json-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/json-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-schema@0.2.3", + "author": "Kris Zyp", + "name": "json-schema", + "version": "0.2.3", + "description": "JSON Schema validation and specifications", + "hashes": [ + { + "alg": "SHA-512", + "content": "81624e59816b850f23ee9566d0433c4a5afe10f56ad4f85fea5bf3bc3fd609eaa4af1fdfdb1048d313ac4514bdc429f7238bcab4fe75f5dbecdd33f4f6bdb8c1" + } + ], + "purl": "pkg:npm/json-schema@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriszyp/json-schema#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kriszyp/json-schema/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kriszyp/json-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsprim@1.4.1", + "name": "jsprim", + "version": "1.4.1", + "description": "utilities for primitive JavaScript types", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f66d238c01cfdc88bcfa0f38235651893fdf81ac95aee540c62bbd02da2c1e0b940121e15fd195d1bc68c48f6b9882b63632400086c4961c35a516d12ba195b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012, Joyent, Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/jsprim@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-jsprim#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-jsprim/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-jsprim.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/junit-viewer@4.11.1", + "author": "Luke Preston", + "name": "junit-viewer", + "version": "4.11.1", + "description": "A simple and quick tool to view junit results", + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/junit-viewer@4.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lukejpreston/junit_viewer.git" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lukejpreston/junit_viewer.git" + }, + { + "type": "vcs", + "url": "git+https://github.com/lukejpreston/junit_viewer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xml2js@0.4.19", + "author": "Marek Kubica", + "name": "xml2js", + "version": "0.4.19", + "description": "Simple XML to JavaScript object converter.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c923e2323334fa92c37ed1e05d8e01cb4bacc08dd23ca2c3c3f8b75176e73bc33fa76f33a9ec425283e6405ad80feff5073846252b368b511158a240b622ebba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, 2012, 2013. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xml2js@0.4.19", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Leonidas-from-XIV/node-xml2js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sax@1.2.4", + "author": "Isaac Z. Schlueter", + "name": "sax", + "version": "1.2.4", + "description": "An evented streaming XML parser in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a543bfd4e900d523166d0df2e3391b12f7e9480a8bdfdab59c3ec7b6059d0f1c9301462ab978c57e325adadecb75099b99cfd6451b9d880ba29a963524615b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n====\n\n`String.fromCodePoint` by Mathias Bynens used according to terms of MIT\nLicense, as follows:\n\n Copyright Mathias Bynens \n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sax@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/sax-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/sax-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/sax-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmlbuilder@9.0.7", + "author": "Ozgur Ozcitak", + "name": "xmlbuilder", + "version": "9.0.7", + "description": "An XML builder for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0478f88479f8508407949f04672012c15a693f7ec5966d0e771045ac46ecc409b4379b9a3f12c9aae87e3b09863048b5be627b74ad2f61774a5dda880c0168e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Ozgur Ozcitak\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xmlbuilder@9.0.7", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/oozcitak/xmlbuilder-js" + }, + { + "type": "issue-tracker", + "url": "http://github.com/oozcitak/xmlbuilder-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/oozcitak/xmlbuilder-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/killable@1.0.1", + "author": "Marten de Vries", + "name": "killable", + "version": "1.0.1", + "description": "Keeps track of a server's open sockets so they can be destroyed at a moment's notice.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f3aad2ca954c22ac453297f9e2722ad598d88fbd8b3b9799fcc0e3cfedfc8956950f92f0a75bfbee8971a9ca51949673c39c1ef7d75ac047302ddcc86cc298e" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2014 Marten de Vries\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/killable@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/marten-de-vries/killable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/marten-de-vries/killable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/marten-de-vries/killable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader-runner@2.4.0", + "author": "Tobias Koppers @sokra", + "name": "loader-runner", + "version": "2.4.0", + "description": "Runs (webpack) loaders", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c9abf3d45c5c62308af158db515c46b8ac6197ef2cc4d6c7990e2dcf894f1b6904e1bac4c2f4bf36dce921101b614ef7fe05737c16e0b55c0790e619f95a47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) Tobias Koppers @sokra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader-runner@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/loader-runner#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/loader-runner/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/loader-runner.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.tail@4.1.1", + "author": "John-David Dalton", + "name": "lodash.tail", + "version": "4.1.1", + "description": "The lodash method `_.tail` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbbcbacdf907e13aa04b90d8288a89bb198be714f759452e995319551a43528d14a89444c19a8a986a3dc25ba3d7615b3c697552345fd939c02266f0fdb2ad77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.tail@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.template@4.4.0", + "author": "John-David Dalton", + "name": "lodash.template", + "version": "4.4.0", + "description": "The lodash method `_.template` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f38bd81712249a2754885c62740fca8e31fda40c9ca96fa1f7cd23ec5bb3e6ac51b4ef69801ecc0c54ddcacd4dec0e6672e711883c84ab87eeb258c8b51d53fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.template@4.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.templatesettings@4.1.0", + "author": "John-David Dalton", + "name": "lodash.templatesettings", + "version": "4.1.0", + "description": "The lodash method `_.templateSettings` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2d80bcfe8b701af666609e3aff3bebfdaee299b0fb27772eea3d939c85baa4d9c9d353565a95d28afafee6e785a8288cb18ae3194ca4f61fcd45f0178073765" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.templatesettings@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/log-symbols@2.2.0", + "author": "Sindre Sorhus", + "name": "log-symbols", + "version": "2.2.0", + "description": "Colored symbols for various log levels. Example: ✔︎ Success", + "hashes": [ + { + "alg": "SHA-512", + "content": "55e20016c97221eac424b5c7ce279da366dab0a6cc2ad4f0def7e7e48cc6d174e38405442723479cbda9eef73ec010d2750b94a4dc37336bbac5bf50b0063912" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/log-symbols@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/log-symbols#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/log-symbols/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/log-symbols.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loglevel@1.6.2", + "author": "Tim Perry", + "name": "loglevel", + "version": "1.6.2", + "description": "Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ba03f9c92d18163aebb074db80ea4a28bdf115d58a6aa801b8a5152515acf78e3d90359f0ce2f06a9d503e1c14e653f00c354b653ac3264a917a3723a3ced6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/loglevel@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pimterry/loglevel" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pimterry/loglevel/issues" + }, + { + "type": "vcs", + "url": "git://github.com/pimterry/loglevel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mocha@6.1.4", + "author": "TJ Holowaychuk", + "name": "mocha", + "version": "6.1.4", + "description": "simple, flexible, fun test framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8852028385cdc9ed4ba0f85c4c5eea88c98cc7ee02635c408a7bfc38dc81a04074d28f7227262fb2000ed3db82fd6d03112a25041f1117dfb1b926955418b71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011-2018 JS Foundation and contributors, https://js.foundation\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mocha@6.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://mochajs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mochajs/mocha/issues/" + }, + { + "type": "vcs", + "url": "git+https://github.com/mochajs/mocha.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@7.1.3", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "7.1.3", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@7.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-environment-flags@1.0.5", + "author": "Christopher Hiller", + "name": "node-environment-flags", + "version": "1.0.5", + "description": "> Polyfill/shim for `process.allowedNodeEnvironmentFlags`", + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "purl": "pkg:npm/node-environment-flags@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/boneskull/node-environment-flags#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/boneskull/node-environment-flags/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/boneskull/node-environment-flags.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.getownpropertydescriptors@2.0.3", + "author": "Jordan Harband", + "name": "object.getownpropertydescriptors", + "version": "2.0.3", + "description": "ES2017 spec-compliant shim for `Object.getOwnPropertyDescriptors` that works in ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1c72fdcbfe930ca1d4fa7490181777f318c55c6f7f32b10d2d104ea2c6fdb25c90ed1083e9876ebc3a501d263e7fa993190eada0fe3aafc29a6ddfab92fee41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/object.getownpropertydescriptors@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/object.getownpropertydescriptors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/object.getownpropertydescriptors/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/object.getownpropertydescriptors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.assign@4.1.0", + "author": "Jordan Harband", + "name": "object.assign", + "version": "4.1.0", + "description": "ES6 spec-compliant Object.assign shim. From https://github.com/es-shims/es6-shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b14f62f94c75ec029ca250f60a996fb6107a575dee488b733e7f87be6891401daa396a61515ba27438ee9cfcb53c05ee3bbad0b1d862fcf61c4607a5d298ab9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/object.assign@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/object.assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/object.assign/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/object.assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@6.0.0", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "6.0.0", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-color@6.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wide-align@1.1.3", + "author": "Rebecca Turner", + "name": "wide-align", + "version": "1.1.3", + "description": "A wide-character aware text alignment function for use on the console or with fixed width fonts.", + "hashes": [ + { + "alg": "SHA-512", + "content": "78330e45868f359e2c408bae60f0c7750bdfe20c8217dac4115ff23f119fc0f911a1dc048223145174f1fdd7b1f8c7b4c31c79dd2f8d8141da3fbcb73069439a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/wide-align@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/wide-align#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/wide-align/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/wide-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@13.2.2", + "name": "yargs", + "version": "13.2.2", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@13.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@13.0.0", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "13.0.0", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@13.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-unparser@1.5.0", + "author": "André Cruz", + "name": "yargs-unparser", + "version": "1.5.0", + "description": "Converts back a yargs argv object to its original array form", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Made With MOXY Lda \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-unparser@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-unparser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-unparser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-unparser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@12.0.5", + "name": "yargs", + "version": "12.0.5", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@12.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@11.1.1", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "11.1.1", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@11.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nan@2.14.0", + "name": "nan", + "version": "2.14.0", + "description": "Native Abstractions for Node.js: C++ header for Node 0.8 -> 11 compatibility", + "hashes": [ + { + "alg": "SHA-512", + "content": "51d02a1f216782eed37d02ac08180003aa560e44fc3003bb7748f239e71584de77e78c5b2ea767f2657d4dab7d81ea40ba99b46edd836de6920bcbd2e7632e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2018 NAN contributors\n-----------------------------------\n\n*NAN contributors listed at *\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nan@2.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/nan#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/nan/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/nan.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-forge@0.7.5", + "author": "Digital Bazaar, Inc.", + "name": "node-forge", + "version": "0.7.5", + "description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3adf6a2c26a707aa56e67563af9e0a9cd13d1857e30b48fb071691a24065cf7b5c2385c558decaca40e2e4a72a7297cc34439adbab34f2f5673486cdcd496ca" + } + ], + "licenses": [ + { + "license": { + "name": "(BSD-3-Clause OR GPL-2.0)", + "text": { + "content": "You may use the Forge project under the terms of either the BSD License or the\nGNU General Public License (GPL) Version 2.\n\nThe BSD License is recommended for most projects. It is simple and easy to\nunderstand and it places almost no restrictions on what you can do with the\nForge project.\n\nIf the GPL suits your project better you are also free to use Forge under\nthat license.\n\nYou don't have to do anything special to choose one license or the other and\nyou don't have to notify anyone which license you are using. You are free to\nuse this project in commercial projects as long as the copyright header is\nleft intact.\n\nIf you are a commercial entity and use this set of libraries in your\ncommercial software then reasonable payment to Digital Bazaar, if you can\nafford it, is not required but is expected and would be appreciated. If this\nlibrary saves you time, then it's saving you money. The cost of developing\nthe Forge software was on the order of several hundred hours and tens of\nthousands of dollars. We are attempting to strike a balance between helping\nthe development community while not being taken advantage of by lucrative\ncommercial entities for our efforts.\n\n-------------------------------------------------------------------------------\nNew BSD License (3-clause)\nCopyright (c) 2010, Digital Bazaar, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Digital Bazaar, Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL DIGITAL BAZAAR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------------------\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n" + } + } + } + ], + "purl": "pkg:npm/node-forge@0.7.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/digitalbazaar/forge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/digitalbazaar/forge/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/digitalbazaar/forge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-gyp@3.8.0", + "author": "Nathan Rajlich", + "name": "node-gyp", + "version": "3.8.0", + "description": "Node.js native addon build tool", + "hashes": [ + { + "alg": "SHA-512", + "content": "de0f2561e7eb451cef19e4a8c1d24a00aca4b3ca14a4b11dfc3c8f57878c85596127468d699a88acd5083ee1165930283eac8591f1ab33aecc0baf5b6aa9fabc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 Nathan Rajlich \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-gyp@3.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/node-gyp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/node-gyp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/node-gyp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nopt@3.0.6", + "author": "Isaac Z. Schlueter", + "name": "nopt", + "version": "3.0.6", + "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0652dde4484626938213c7307f6fdbda2037d455637f325d45c25d752259c81b689a27d3ba59767d4ab60cf4d2c8f0e08189e37663c4960b6a09574450eea62" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nopt@3.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/nopt#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/nopt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/nopt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/osenv@0.1.5", + "author": "Isaac Z. Schlueter", + "name": "osenv", + "version": "0.1.5", + "description": "Look up environment settings specific to different operating systems", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0259c08409d315736470dd4e70f598ea5fa81aeae6e4d710d52b1b4140f2bbc22b3fd05dabf53ea4e3274662179c97b614071055c612f9a22b0fb0dc403deda" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/osenv@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/osenv#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/osenv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/osenv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/request@2.88.0", + "author": "Mikeal Rogers", + "name": "request", + "version": "2.88.0", + "description": "Simplified HTTP request client.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32cbed3ab7c6f5972b3b0016f908be17a1db0f40965c487da2eefbb8e6fb14cd963e1c13eec98cf37dcfcda9e124bb205e337cf48afa5763dccd7367329c0a87" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/request@2.88.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/request/request#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/request/request/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/request/request.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.5.2", + "name": "qs", + "version": "6.5.2", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014 Nathan LaFreniere and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tough-cookie@2.4.3", + "author": "Jeremy Stashewsky", + "name": "tough-cookie", + "version": "2.4.3", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e52ec533826d647cb5d25df45931cd4a2c0ba077886a2470d3bdcda10c8c12de66407cc12e31b734dd2ba3305f8611ca5a5ffa9ba1ec9cc3a88ef09c15bf6fa" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2015, Salesforce.com, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/tough-cookie@2.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/salesforce/tough-cookie" + }, + { + "type": "issue-tracker", + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + { + "type": "vcs", + "url": "git://github.com/salesforce/tough-cookie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/psl@1.1.32", + "author": "Lupo Montero", + "name": "psl", + "version": "1.1.32", + "description": "Domain name parser based on the Public Suffix List", + "hashes": [ + { + "alg": "SHA-512", + "content": "13f66c754e072ecffaf206338064e43227164cb3dd01fb492df24594b50000a646912b4d53bdac6634fae929cc0d539f39663f600a220fb2716bd887be781c6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Lupo Montero lupomontero@gmail.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/psl@1.1.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wrangr/psl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wrangr/psl/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/wrangr/psl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uuid@3.3.2", + "name": "uuid", + "version": "3.3.2", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3483470ea0644e4932081cb4705c8d56a4d3cf8a1158522220f31674fd4bd69e826a7ce52fdb45e0554dbe104c5691369b49f64b9868d8676cd10e91b29bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2010-2016 Robert Kieffer and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uuid@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kelektiv/node-uuid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kelektiv/node-uuid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kelektiv/node-uuid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@5.3.0", + "name": "semver", + "version": "5.3.0", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@5.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tar@2.2.2", + "author": "Isaac Z. Schlueter", + "name": "tar", + "version": "2.2.2", + "description": "tar for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "14212143fe2b135cd8bfdad85c9c3f9ac46ab279a58dee631cfea1b9678167bd388d44f2d36739019c96ba3a4c4756b1ea6570f4dc8931fb8ad8230359521f80" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\nCopyright (c) Isaac Z. Schlueter and Contributors\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tar@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-tar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-tar/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-tar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-libs-browser@2.2.0", + "author": "Tobias Koppers @sokra", + "name": "node-libs-browser", + "version": "2.2.0", + "description": "The node core libs for in browser usage.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87fcdc0fc1fd91a0d9f402d45b0941503a3a4ca17c6bba8148248419f8d354861eaac8a848a6805fe04decd822306a7a8922176773f1802bbc292ddbef560ae5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-libs-browser@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/node-libs-browser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/node-libs-browser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/node-libs-browser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-browserify@0.3.0", + "author": "CoderPuppy", + "name": "os-browserify", + "version": "0.3.0", + "description": "The [os](https://nodejs.org/api/os.html) module from node.js, but for browsers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc76e76f376a5895af18e9bb68e3035c7554ca43c6d067617cb927e590e6bdb448fb03e3fd7a01d3f0910243fdbf6f1e67b44420f3c725afbc644622c6c58a99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 CoderPuppy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-browserify@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/CoderPuppy/os-browserify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/CoderPuppy/os-browserify/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/CoderPuppy/os-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-browserify@0.0.0", + "author": "James Halliday", + "name": "path-browserify", + "version": "0.0.0", + "description": "the path module from node core for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "580de9c62d6895441cb25f365b9efabe4aa15121a9d2e06daffdfcd69c71e565cba77342f8007df61506dda196ec7d0a83d3c5af50fcc2fd6225e2027bef4c87" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-browserify@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/path-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/path-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/path-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/process@0.11.10", + "author": "Roman Shtylman", + "name": "process", + "version": "0.11.10", + "description": "process information for node.js and browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d19e7ff76b585a32743d49b0ccee15ff35d349d997e193fb269c7366c471e7797fd463938cfe5ad1544c1bbd3e13a2f63fe37e604fbb498c118e3021d005f0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 Roman Shtylman \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/process@0.11.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shtylman/node-process#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shtylman/node-process/issues" + }, + { + "type": "vcs", + "url": "git://github.com/shtylman/node-process.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/querystring-es3@0.2.1", + "author": "Irakli Gozalishvili", + "name": "querystring-es3", + "version": "0.2.1", + "description": "Node's querystring module for all engines. (ES3 compat fork)", + "hashes": [ + { + "alg": "SHA-512", + "content": "efbdf1843427641305a1b122cedbfc2c897bd1c87931217f8d4415961c05c8120baaaf7a6a79a872d548633f99469d2a6c22804d39fa7afd36337afb19ae6fa8" + } + ], + "purl": "pkg:npm/querystring-es3@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mike-spainhower/querystring#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/mike-spainhower/querystring/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/mike-spainhower/querystring.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-browserify@2.0.2", + "author": "James Halliday", + "name": "stream-browserify", + "version": "2.0.2", + "description": "the stream module from node core for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d7ea19a4947b3f82bd85bb160396dabc7c90351839712900b3f0efc83386ad46a047f0e3919813607ef5b9806d74193fea43dbb40b322faf65f93e4b7a9edaa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nCopyright (c) James Halliday\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-browserify@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/stream-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/stream-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/stream-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-http@2.8.3", + "author": "John Hiesey", + "name": "stream-http", + "version": "2.8.3", + "description": "Streaming http in the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "f934a47c83470e8e09f99a1b40b5a2328b90601f9455816db5103de05a44cf327b65da9c2f8b94510ed691d908e034a8cc69a005413f6b8ecbfb7f0f7a75e153" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2015 John Hiesey\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/stream-http@2.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jhiesey/stream-http#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jhiesey/stream-http/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jhiesey/stream-http.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-arraybuffer@1.0.1", + "author": "John Hiesey", + "name": "to-arraybuffer", + "version": "1.0.1", + "description": "Get an ArrayBuffer from a Buffer as fast as possible", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2416541ca064e2e0b4011bf3e04986e5c3d54eca9b6ccf628966a73aaad80675eb3c564b73510923e012366e58add3bda24bc54e0cd70c03eb6f9d2f5d9ee30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2016 John Hiesey\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/to-arraybuffer@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jhiesey/to-arraybuffer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jhiesey/to-arraybuffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jhiesey/to-arraybuffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xtend@4.0.1", + "author": "Raynos", + "name": "xtend", + "version": "4.0.1", + "description": "extend like a boss", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ca614d620172575200179fd5118e2bbe3168725171ecbdfa7b99cb989bd75250a2b4fc28edad4c050310fcdbf98259bb4bb068c521a774c08b28778ceb4c011" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012-2014 Raynos.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xtend@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/xtend" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/xtend/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/xtend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/timers-browserify@2.0.10", + "author": "J. Ryan Stinnett", + "name": "timers-browserify", + "version": "2.0.10", + "description": "timers module for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "f69865efa0aa9ba161497f577b565400c2ed9b504b90a8f641de40a725a45f3b0c45a03b760afcd647f8c099907ff840be0f041322710e8dddbbfd0a9613e229" + } + ], + "purl": "pkg:npm/timers-browserify@2.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jryans/timers-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jryans/timers-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jryans/timers-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/setimmediate@1.0.5", + "author": "YuzuJS", + "name": "setimmediate", + "version": "1.0.5", + "description": "A shim for the setImmediate efficient script yielding API", + "hashes": [ + { + "alg": "SHA-512", + "content": "3004c9759a7cb0ba8397febc2df4266cff3328f2d0355e81219a0882bb1c14343e46cbcafc1c5e0d03a0cb128aa21d32ffc87706a5459c2a90fe077eade8885c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, and Domenic Denicola\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/setimmediate@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/YuzuJS/setImmediate#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/YuzuJS/setImmediate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/YuzuJS/setImmediate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tty-browserify@0.0.0", + "author": "James Halliday", + "name": "tty-browserify", + "version": "0.0.0", + "description": "the tty module from node core for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "2556b98a3a3e8ffb0ea071a3c34b31c3bdf86f52e10644376ef50635dc675570c25fcd58c7b4c5827672831ac82169f6de16df4da3182f04660311720ee16623" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tty-browserify@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/tty-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/tty-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/tty-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url@0.11.0", + "name": "url", + "version": "0.11.0", + "description": "The core `url` packaged standalone for use with Browserify.", + "hashes": [ + { + "alg": "SHA-512", + "content": "91b6a29496b6f50aed5e7c60abe0dd0841a56d3798336789531b33eaf8d96afac260f30814730a42648a60022e50ada2ee180f9b6f1af29897e4d4d4b4cfcb29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/url@0.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/node-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/node-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/defunctzombie/node-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/punycode@1.3.2", + "author": "Mathias Bynens", + "name": "punycode", + "version": "1.3.2", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e660d1255bbcaf3bb4d5df70a34a6bd2884db2728ddb576733bbf3b30ca74c35565059fc426e55112e17fee3bb32411067b637cb75dfc7d1e82bcc81bea1a15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/punycode@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/punycode" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bestiejs/punycode.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bestiejs/punycode.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/querystring@0.2.0", + "author": "Irakli Gozalishvili", + "name": "querystring", + "version": "0.2.0", + "description": "Node's querystring module for all engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c24bd2ee62ff24cba072ea77feb322b4799df5e70819dda584584af4ddd4510e39d21eba775af763d9ef5f34005b52eafb0cb1eb593fd697ca4b92ae2a2c846e" + } + ], + "purl": "pkg:npm/querystring@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Gozala/querystring#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Gozala/querystring/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/Gozala/querystring.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/util@0.11.1", + "author": "Joyent", + "name": "util", + "version": "0.11.1", + "description": "Node.JS util module", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0f9bd853437b1ee659755e285189cdc50c892eef40be88751d4ff5bddbaad28075794205ec61b29937c3120b7b49b52921b913b3bec42301a1443515ebfb5f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/util@0.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/node-util" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/node-util/issues" + }, + { + "type": "vcs", + "url": "git://github.com/defunctzombie/node-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vm-browserify@0.0.4", + "author": "James Halliday", + "name": "vm-browserify", + "version": "0.0.4", + "description": "vm module for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "37264d4775836a1f8d3e48e1fd89a1b964ac4f86b4985d012588149afac9ef4cf18d35e1e58d80b286f1961d0d7ecd0f085079155a5125fb7b368cc05853302d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vm-browserify@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/vm-browserify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/vm-browserify/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/vm-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-sass@4.14.1", + "author": "Andrew Nesbitt", + "name": "node-sass", + "version": "4.14.1", + "description": "Wrapper around libsass", + "hashes": [ + { + "alg": "SHA-512", + "content": "b230ae3a5bc6c82252e3447c06c705e6f8559508cd374ebd36d435812c722b5bbd8aabe7ead7fb3b547818da305597e2654091b7932632cd7177ee15ffb62bd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013-2016 Andrew Nesbitt\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-sass@4.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sass/node-sass" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sass/node-sass/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sass/node-sass.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cross-spawn@3.0.1", + "author": "IndigoUnited", + "name": "cross-spawn", + "version": "3.0.1", + "description": "Cross platform child_process#spawn and child_process#spawnSync", + "hashes": [ + { + "alg": "SHA-512", + "content": "a53810279282d1dda1718f1ec8bd48ce504f6234e4c87ef65d164f9cbc8abacda605f36342cde496a6c95365482ea66bc80654b7d24e6f787f996332db7fdfe4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 IndigoUnited\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cross-spawn@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/IndigoUnited/node-cross-spawn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/IndigoUnited/node-cross-spawn/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/IndigoUnited/node-cross-spawn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/in-publish@2.0.1", + "author": "Rebecca Turner", + "name": "in-publish", + "version": "2.0.1", + "description": "Detect if we were run as a result of `npm publish`", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0333491448d142df54a13711ca5327d92b2f1979764158c8cc7591ca2ce935deebd3dbb5532ff4334467d151c7af261a64640be584f62e5e417b78d5abb72c5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/in-publish@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/in-publish" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/in-publish/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/in-publish.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nan@2.16.0", + "name": "nan", + "version": "2.16.0", + "description": "Native Abstractions for Node.js: C++ header for Node 0.8 -> 14 compatibility", + "hashes": [ + { + "alg": "SHA-512", + "content": "51d02a1f216782eed37d02ac08180003aa560e44fc3003bb7748f239e71584de77e78c5b2ea767f2657d4dab7d81ea40ba99b46edd836de6920bcbd2e7632e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 [NAN contributors]()\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nan@2.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/nan#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/nan/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/nan.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-graph@2.2.5", + "author": "xzyfer", + "name": "sass-graph", + "version": "2.2.5", + "description": "Parse sass files and extract a graph of imports", + "hashes": [ + { + "alg": "SHA-512", + "content": "54558300739eea646e4f899945de1e284f9df1479dae4e979e1ed287d6f8346b9f40b4233abbdffcc42839dc7ed2cf762fcf457b251435f539f7b8ffdee3696a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/sass-graph@2.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xzyfer/sass-graph#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xzyfer/sass-graph/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xzyfer/sass-graph.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/scss-tokenizer@0.2.3", + "author": "xzyfer", + "name": "scss-tokenizer", + "version": "0.2.3", + "description": "A tokenzier for Sass' SCSS syntax", + "hashes": [ + { + "alg": "SHA-512", + "content": "75813c2e19dc7c151aafa3ce0b13139b42e7f9eae379ccea12f08989be7fed7364770d459141a0c0c3d8dfad056341603d64311d60b1dbd265de87a3c862ccf5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 sasstools\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/scss-tokenizer@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sasstools/scss-tokenizer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sasstools/scss-tokenizer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sasstools/scss-tokenizer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-base64@2.6.4", + "author": "Dan Kogai", + "name": "js-base64", + "version": "2.6.4", + "description": "Yet another Base64 transcoder in pure-JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "a597bffc61a6c099ddb9bed9821547cfbbe36f62e00b59bc074ec0bb7798a9eaaff5e9a1112072317c5a120914904a897bcee805b4a788662840d20192573b21" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2014, Dan Kogai\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of {{{project}}} nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/js-base64@2.6.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dankogai/js-base64#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dankogai/js-base64/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dankogai/js-base64.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@13.3.2", + "name": "yargs", + "version": "13.3.2", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@13.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cliui@5.0.0", + "author": "Ben Coe", + "name": "cliui", + "version": "5.0.0", + "description": "easily create complex multi-column command-line-interfaces", + "hashes": [ + { + "alg": "SHA-512", + "content": "e051be4521bd0cbeee130454657667dd24b7e038833dfccfd153a2130b545a513e011d84220fa14b2beb2205147e176047f52401e5b640781e3fe856ad7b3b8d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cliui@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/cliui#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/cliui/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/cliui.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wrap-ansi@5.1.0", + "author": "Sindre Sorhus", + "name": "wrap-ansi", + "version": "5.1.0", + "description": "Wordwrap a string with ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc068468333de3a81b3691f9a4b54d47ebd7da1b7a9f406ddc65f0541d40b80a99a2c3af1cd1773fbc039e1f0a2e44aa814874ba1efb95eecec20a33f99f5707" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wrap-ansi@5.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/wrap-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/wrap-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/wrap-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/y18n@4.0.3", + "author": "Ben Coe", + "name": "y18n", + "version": "4.0.3", + "description": "the bare-bones internationalization library used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "b866475e41e7845d1779e00f82729f3efd5b80a018c95be634bd7194ab0f6193da207c46b62da11eabce090bfbd5732c2f1bb54237ab824aa88149e6b390f761" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/y18n@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/y18n" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/y18n/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/y18n.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@13.1.2", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "13.1.2", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@13.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@4.1.1", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "4.1.1", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stdout-stream@1.4.1", + "name": "stdout-stream", + "version": "1.4.1", + "description": "Non-blocking stdout stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f87a68b4dca5ea256708785f1e2179233053750a66fc81494360678100b2cfa39a9dc937c0f5b3ad97c9b7de54680bebc53243f7825d16b03afafa0cf16db4c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stdout-stream@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/stdout-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/stdout-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/stdout-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/true-case-path@1.0.3", + "author": "barsh", + "name": "true-case-path", + "version": "1.0.3", + "description": "Given a possibly case-variant version of an existing filesystem path, returns the case-exact, normalized version as stored in the filesystem.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bab3639d41ee7082914c0bea4027eabd7631bcd8eda37073ce23a44d835cb2f6b09847e583e8d6e9977d9f0e97c2e7a9e2add472fa8a456bf564ec7621a9a7b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\r\n Version 2.0, January 2004\r\n http://www.apache.org/licenses/\r\n\r\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n 1. Definitions.\r\n\r\n \"License\" shall mean the terms and conditions for use, reproduction,\r\n and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n \"Licensor\" shall mean the copyright owner or entity authorized by\r\n the copyright owner that is granting the License.\r\n\r\n \"Legal Entity\" shall mean the union of the acting entity and all\r\n other entities that control, are controlled by, or are under common\r\n control with that entity. For the purposes of this definition,\r\n \"control\" means (i) the power, direct or indirect, to cause the\r\n direction or management of such entity, whether by contract or\r\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\r\n outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\r\n exercising permissions granted by this License.\r\n\r\n \"Source\" form shall mean the preferred form for making modifications,\r\n including but not limited to software source code, documentation\r\n source, and configuration files.\r\n\r\n \"Object\" form shall mean any form resulting from mechanical\r\n transformation or translation of a Source form, including but\r\n not limited to compiled object code, generated documentation,\r\n and conversions to other media types.\r\n\r\n \"Work\" shall mean the work of authorship, whether in Source or\r\n Object form, made available under the License, as indicated by a\r\n copyright notice that is included in or attached to the work\r\n (an example is provided in the Appendix below).\r\n\r\n \"Derivative Works\" shall mean any work, whether in Source or Object\r\n form, that is based on (or derived from) the Work and for which the\r\n editorial revisions, annotations, elaborations, or other modifications\r\n represent, as a whole, an original work of authorship. For the purposes\r\n of this License, Derivative Works shall not include works that remain\r\n separable from, or merely link (or bind by name) to the interfaces of,\r\n the Work and Derivative Works thereof.\r\n\r\n \"Contribution\" shall mean any work of authorship, including\r\n the original version of the Work and any modifications or additions\r\n to that Work or Derivative Works thereof, that is intentionally\r\n submitted to Licensor for inclusion in the Work by the copyright owner\r\n or by an individual or Legal Entity authorized to submit on behalf of\r\n the copyright owner. For the purposes of this definition, \"submitted\"\r\n means any form of electronic, verbal, or written communication sent\r\n to the Licensor or its representatives, including but not limited to\r\n communication on electronic mailing lists, source code control systems,\r\n and issue tracking systems that are managed by, or on behalf of, the\r\n Licensor for the purpose of discussing and improving the Work, but\r\n excluding communication that is conspicuously marked or otherwise\r\n designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\r\n on behalf of whom a Contribution has been received by Licensor and\r\n subsequently incorporated within the Work.\r\n\r\n 2. Grant of Copyright License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n copyright license to reproduce, prepare Derivative Works of,\r\n publicly display, publicly perform, sublicense, and distribute the\r\n Work and such Derivative Works in Source or Object form.\r\n\r\n 3. Grant of Patent License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n (except as stated in this section) patent license to make, have made,\r\n use, offer to sell, sell, import, and otherwise transfer the Work,\r\n where such license applies only to those patent claims licensable\r\n by such Contributor that are necessarily infringed by their\r\n Contribution(s) alone or by combination of their Contribution(s)\r\n with the Work to which such Contribution(s) was submitted. If You\r\n institute patent litigation against any entity (including a\r\n cross-claim or counterclaim in a lawsuit) alleging that the Work\r\n or a Contribution incorporated within the Work constitutes direct\r\n or contributory patent infringement, then any patent licenses\r\n granted to You under this License for that Work shall terminate\r\n as of the date such litigation is filed.\r\n\r\n 4. Redistribution. You may reproduce and distribute copies of the\r\n Work or Derivative Works thereof in any medium, with or without\r\n modifications, and in Source or Object form, provided that You\r\n meet the following conditions:\r\n\r\n (a) You must give any other recipients of the Work or\r\n Derivative Works a copy of this License; and\r\n\r\n (b) You must cause any modified files to carry prominent notices\r\n stating that You changed the files; and\r\n\r\n (c) You must retain, in the Source form of any Derivative Works\r\n that You distribute, all copyright, patent, trademark, and\r\n attribution notices from the Source form of the Work,\r\n excluding those notices that do not pertain to any part of\r\n the Derivative Works; and\r\n\r\n (d) If the Work includes a \"NOTICE\" text file as part of its\r\n distribution, then any Derivative Works that You distribute must\r\n include a readable copy of the attribution notices contained\r\n within such NOTICE file, excluding those notices that do not\r\n pertain to any part of the Derivative Works, in at least one\r\n of the following places: within a NOTICE text file distributed\r\n as part of the Derivative Works; within the Source form or\r\n documentation, if provided along with the Derivative Works; or,\r\n within a display generated by the Derivative Works, if and\r\n wherever such third-party notices normally appear. The contents\r\n of the NOTICE file are for informational purposes only and\r\n do not modify the License. You may add Your own attribution\r\n notices within Derivative Works that You distribute, alongside\r\n or as an addendum to the NOTICE text from the Work, provided\r\n that such additional attribution notices cannot be construed\r\n as modifying the License.\r\n\r\n You may add Your own copyright statement to Your modifications and\r\n may provide additional or different license terms and conditions\r\n for use, reproduction, or distribution of Your modifications, or\r\n for any such Derivative Works as a whole, provided Your use,\r\n reproduction, and distribution of the Work otherwise complies with\r\n the conditions stated in this License.\r\n\r\n 5. Submission of Contributions. Unless You explicitly state otherwise,\r\n any Contribution intentionally submitted for inclusion in the Work\r\n by You to the Licensor shall be under the terms and conditions of\r\n this License, without any additional terms or conditions.\r\n Notwithstanding the above, nothing herein shall supersede or modify\r\n the terms of any separate license agreement you may have executed\r\n with Licensor regarding such Contributions.\r\n\r\n 6. Trademarks. This License does not grant permission to use the trade\r\n names, trademarks, service marks, or product names of the Licensor,\r\n except as required for reasonable and customary use in describing the\r\n origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n 7. Disclaimer of Warranty. Unless required by applicable law or\r\n agreed to in writing, Licensor provides the Work (and each\r\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r\n implied, including, without limitation, any warranties or conditions\r\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r\n PARTICULAR PURPOSE. You are solely responsible for determining the\r\n appropriateness of using or redistributing the Work and assume any\r\n risks associated with Your exercise of permissions under this License.\r\n\r\n 8. Limitation of Liability. In no event and under no legal theory,\r\n whether in tort (including negligence), contract, or otherwise,\r\n unless required by applicable law (such as deliberate and grossly\r\n negligent acts) or agreed to in writing, shall any Contributor be\r\n liable to You for damages, including any direct, indirect, special,\r\n incidental, or consequential damages of any character arising as a\r\n result of this License or out of the use or inability to use the\r\n Work (including but not limited to damages for loss of goodwill,\r\n work stoppage, computer failure or malfunction, or any and all\r\n other commercial damages or losses), even if such Contributor\r\n has been advised of the possibility of such damages.\r\n\r\n 9. Accepting Warranty or Additional Liability. While redistributing\r\n the Work or Derivative Works thereof, You may choose to offer,\r\n and charge a fee for, acceptance of support, warranty, indemnity,\r\n or other liability obligations and/or rights consistent with this\r\n License. However, in accepting such obligations, You may act only\r\n on Your own behalf and on Your sole responsibility, not on behalf\r\n of any other Contributor, and only if You agree to indemnify,\r\n defend, and hold each Contributor harmless for any liability\r\n incurred by, or claims asserted against, such Contributor by reason\r\n of your accepting any such warranty or additional liability.\r\n\r\n END OF TERMS AND CONDITIONS\r\n\r\n APPENDIX: How to apply the Apache License to your work.\r\n\r\n To apply the Apache License to your work, attach the following\r\n boilerplate notice, with the fields enclosed by brackets \"{}\"\r\n replaced with your own identifying information. (Don't include\r\n the brackets!) The text should be enclosed in the appropriate\r\n comment syntax for the file format. We also recommend that a\r\n file or class name and description of purpose be included on the\r\n same \"printed page\" as the copyright notice for easier\r\n identification within third-party archives.\r\n\r\n Copyright {yyyy} {name of copyright owner}\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License.\r\n" + } + } + } + ], + "purl": "pkg:npm/true-case-path@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/barsh/true-case-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/barsh/true-case-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/barsh/true-case-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/opener@1.5.1", + "author": "Domenic Denicola", + "name": "opener", + "version": "1.5.1", + "description": "Opens stuff, like webpages and files and executables, cross-platform", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ba5578f4dfcc9a2bbccc8123c9933a3727813a5a11e96a94b36c0fca9214df2e4ee7f4e28999d5e6718357ac0562f99067cdf84e87cc45d11874529fd8cd76d" + } + ], + "licenses": [ + { + "license": { + "name": "(WTFPL OR MIT)", + "text": { + "contentType": "text/txt", + "content": "Dual licensed under WTFPL and MIT:\n\n---\n\nCopyright © 2012–2018 Domenic Denicola \n\nThis work is free. You can redistribute it and/or modify it under the\nterms of the Do What The Fuck You Want To Public License, Version 2,\nas published by Sam Hocevar. See below for more details.\n\n DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n Version 2, December 2004\n\n Copyright (C) 2004 Sam Hocevar \n\n Everyone is permitted to copy and distribute verbatim or modified\n copies of this license document, and changing it is allowed as long\n as the name is changed.\n\n DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. You just DO WHAT THE FUCK YOU WANT TO.\n\n---\n\nThe MIT License (MIT)\n\nCopyright © 2012–2018 Domenic Denicola \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/opener@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/domenic/opener#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/domenic/opener/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/domenic/opener.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/opn@5.5.0", + "author": "Sindre Sorhus", + "name": "opn", + "version": "5.5.0", + "description": "A better node-open. Opens stuff like websites, files, executables. Cross-platform.", + "hashes": [ + { + "alg": "SHA-512", + "content": "88f0566cf3f83843b3475c5f86918b0e1fb2a4a04eca0ba766133d8c1b40ec54b9b0a8c488c670d0415bf368670ce993657f746562e864a5336b8715b7c31ec4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/opn@5.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/opn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/opn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/opn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-limit@2.2.0", + "author": "Sindre Sorhus", + "name": "p-limit", + "version": "2.2.0", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-limit@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-limit#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-limit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-limit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/portfinder@1.0.20", + "author": "Charlie Robbins", + "name": "portfinder", + "version": "1.0.20", + "description": "A simple tool to find an open port on the current machine", + "hashes": [ + { + "alg": "SHA-512", + "content": "49efb68ac6a721c12a7f65cc1e3c942ac91ccf16cf1fb7509e53235d7ebe7726dacb21ef01ffd30a0c8c465cdffc1e900e100414e19eb34a73468ddbcb801b30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "node-portfinder\n\nCopyright (c) 2012 Charlie Robbins\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/portfinder@1.0.20", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indexzero/node-portfinder#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indexzero/node-portfinder/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indexzero/node-portfinder.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-advanced-variables@3.0.0", + "author": "Jonathan Neal", + "name": "postcss-advanced-variables", + "version": "3.0.0", + "description": "Use Sass-like variables, conditionals, and iterators in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-advanced-variables@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-advanced-variables#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-advanced-variables/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-advanced-variables.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-atroot@0.1.3", + "author": "OEvgeny", + "name": "postcss-atroot", + "version": "0.1.3", + "description": "PostCSS plugin to place rules directly at the root", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Evgeny\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/postcss-atroot@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/OEvgeny/postcss-atroot#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/OEvgeny/postcss-atroot/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/OEvgeny/postcss-atroot.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss@5.2.18", + "author": "Andrey Sitnik", + "name": "postcss", + "version": "5.2.18", + "description": "Tool for transforming styles with JS plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb5234517b56e95cab17d6a0093498ea655884ad5bb212431346bc2ee2e778b1b4ed201466b5a603ac799c1a09ab6ec5b73077e6b487febc9ba68109fe3eb5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss@5.2.18", + "externalReferences": [ + { + "type": "website", + "url": "http://postcss.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@3.2.3", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "3.2.3", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-color@3.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-flag@1.0.0", + "author": "Sindre Sorhus", + "name": "has-flag", + "version": "1.0.0", + "description": "Check if argv has a specific flag", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0a25fd7e71e401af848c92f427043343b5fe135e95615466ad7aed2df75f1b977d059db1369b8bcd2d7f9559efdda6395bf87ba0198cd6eee4171fdf073c463" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-flag@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-flag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-flag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-attribute-case-insensitive@4.0.1", + "author": "Dmitry Semigradsky", + "name": "postcss-attribute-case-insensitive", + "version": "4.0.1", + "description": "PostCSS plugin to support case insensitive attributes", + "hashes": [ + { + "alg": "SHA-512", + "content": "27cb1dccd17c825280d19a4d2ce7ed4da36ed766b8f3027deec5434d819147a817f1c4a8444e2d5e85606117a6173dd3bd2bab6e656e310526a9472503484bfd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2016 Dmitry Semigradsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-attribute-case-insensitive@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Semigradsky/postcss-attribute-case-insensitive/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Semigradsky/postcss-attribute-case-insensitive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-color-functional-notation@2.0.1", + "author": "Jonathan Neal", + "name": "postcss-color-functional-notation", + "version": "2.0.1", + "description": "Use space and slash separated color notation in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-color-functional-notation@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-color-functional-notation/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-color-functional-notation.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-values-parser@2.0.1", + "author": "Andrew Powell", + "name": "postcss-values-parser", + "version": "2.0.1", + "description": "A CSS property value parser for use with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "dccde9fb680ca74007ddd6b9df44e55fc9223b59f17539dcdc2eafafc74cc512c8961f14624cf4ff0730a6d4978e1b71d85af44f2488edaf811c343c34becb69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Andrew Powell \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-values-parser@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lesshint/postcss-values-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lesshint/postcss-values-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lesshint/postcss-values-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-color-gray@5.0.0", + "author": "Shinnosuke Watanabe", + "name": "postcss-color-gray", + "version": "5.0.0", + "description": "Use the gray() color function in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f888b2902dda82873e993a019be9d471901370efc24561c266073d68ac7a59a1e2edba10c319e811b57f604b27e808833bad667754d3b28aaaaf93cdc110dfb" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "# ISC License (ISC)\n\n## Copyright 2018 Shinnosuke Watanabe\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n\nFor more information, please see\nhttps://opensource.org/licenses/ISC.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-color-gray@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-color-gray#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-color-gray/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-color-gray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-color-hex-alpha@5.0.3", + "author": "Jonathan Neal", + "name": "postcss-color-hex-alpha", + "version": "5.0.3", + "description": "Use 4 & 8 character hex color notation in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e9836c8405c744d1eee3252c9168b8a75fcc6a7f881e5c80429616d20378619e95c42c972a7efa110fc57d44757aa18ca847fbf24b774283512e084c3a0af85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright © PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-color-hex-alpha@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-color-hex-alpha#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-color-hex-alpha/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-color-hex-alpha.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-color-mod-function@3.0.3", + "author": "Jonathan Neal", + "name": "postcss-color-mod-function", + "version": "3.0.3", + "description": "Modify colors using the color-mod() function in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-color-mod-function@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-color-mod-function#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-color-mod-function/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-color-mod-function.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-color-rebeccapurple@4.0.1", + "author": "Maxime Thirouin", + "name": "postcss-color-rebeccapurple", + "version": "4.0.1", + "description": "PostCSS plugin to transform W3C CSS rebeccapurple color to more compatible CSS (rgb())", + "hashes": [ + { + "alg": "SHA-512", + "content": "db5da125493db92b1bc0ee440aa5639a1fe22ec9a254bd71cbd71ef5355ff97ddc2bf66550895a31da318defd8a6c2fd726507dc8ee2a3efc6d8bc96c79ae0d6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-color-rebeccapurple@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-color-rebeccapurple#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-color-rebeccapurple/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-color-rebeccapurple.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-custom-media@7.0.8", + "author": "Jonathan Neal", + "name": "postcss-custom-media", + "version": "7.0.8", + "description": "Use Custom Media Queries in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "30b8dfd98821b9bf94499a4b582075d612eb10468258ce2561fe1447dba2de23c2405772c2f11a639cade0f9ce0a51ab00219a1d334a3c5f64a2264b7493a663" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright © PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-custom-media@7.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-custom-media#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-custom-media/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-custom-media.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-custom-properties@8.0.10", + "author": "Jonathan Neal", + "name": "postcss-custom-properties", + "version": "8.0.10", + "description": "Use Custom Properties Queries in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce88b09f8b0289415baf829c81c3592c5911ea0550a26eb8ecbfb3d69fca0551d9d4e6304fcedaa674b8d9ab49b71e97957db223b3797e35db162c528503b641" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright © PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-custom-properties@8.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-custom-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-custom-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-custom-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-custom-selectors@5.1.2", + "author": "Jonathan Neal", + "name": "postcss-custom-selectors", + "version": "5.1.2", + "description": "Use Custom Selectors in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "99785db00d7aa2adb16d784826ce8bb1c4eaf29794aef003e30e88f3e0617c82b96501f6b158d2335c5825d69d1417d1f0c212838e3ae88f95f3ad078baf0f7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright © PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-custom-selectors@5.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-custom-selectors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-custom-selectors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-custom-selectors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-dir-pseudo-class@5.0.0", + "author": "Jonathan Neal", + "name": "postcss-dir-pseudo-class", + "version": "5.0.0", + "description": "Use the :dir pseudo-class in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-dir-pseudo-class@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-dir-pseudo-class/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-dir-pseudo-class.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-double-position-gradients@1.0.0", + "author": "Jonathan Neal", + "name": "postcss-double-position-gradients", + "version": "1.0.0", + "description": "Use double-position gradients in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-double-position-gradients@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-double-position-gradients/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-double-position-gradients.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-env-function@2.0.2", + "author": "Jonathan Neal", + "name": "postcss-env-function", + "version": "2.0.2", + "description": "Use env() variables in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-env-function@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-env-function#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-env-function/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-env-function.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-extend-rule@2.0.0", + "author": "Jonathan Neal", + "name": "postcss-extend-rule", + "version": "2.0.0", + "description": "Use the @extend at-rule and functional selectors in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-extend-rule@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-extend-rule#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-extend-rule/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-extend-rule.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss@6.0.23", + "author": "Andrey Sitnik", + "name": "postcss", + "version": "6.0.23", + "description": "Tool for transforming styles with JS plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb5234517b56e95cab17d6a0093498ea655884ad5bb212431346bc2ee2e778b1b4ed201466b5a603ac799c1a09ab6ec5b73077e6b487febc9ba68109fe3eb5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss@6.0.23", + "externalReferences": [ + { + "type": "website", + "url": "https://postcss.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-nesting@5.0.0", + "author": "Jonathan Neal", + "name": "postcss-nesting", + "version": "5.0.0", + "description": "Nest style rules inside each other", + "hashes": [ + { + "alg": "SHA-512", + "content": "224c965c80b06a00a795abe245ec62eea39dc0fc37fb15558e015f1acc66cedbd155a371025af2a4e20aa831399b163e055c6721dd6b9d4281450a0d13654368" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-nesting@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-nesting#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-nesting/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-nesting.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-focus-visible@4.0.0", + "author": "Jonathan Neal", + "name": "postcss-focus-visible", + "version": "4.0.0", + "description": "Use the :focus-visible pseudo-selector in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-focus-visible@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-focus-visible#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-focus-visible/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-focus-visible.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-focus-within@3.0.0", + "author": "Jonathan Neal", + "name": "postcss-focus-within", + "version": "3.0.0", + "description": "Use the :focus-within pseudo-selector in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-focus-within@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-focus-within#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-focus-within/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-focus-within.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-font-variant@4.0.0", + "author": "Maxime Thirouin", + "name": "postcss-font-variant", + "version": "4.0.0", + "description": "PostCSS plugin to transform W3C font-variant properties to more compatible CSS (font-feature-settings)", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd9f3d017e7927705f9fac5004ec0d57be48fb832a8fb7e120b970bb6293fa90c2dd7b2ee6f2346108a5dd0d6298940684de579cdfc3305429f94bd5f752178a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin & Ian Storm Taylor\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-font-variant@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-font-variant#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-font-variant/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-font-variant.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-gap-properties@2.0.0", + "author": "Jonathan Neal", + "name": "postcss-gap-properties", + "version": "2.0.0", + "description": "Use the gap, column-gap, and row-gap shorthand properties in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-gap-properties@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-gap-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-gap-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-gap-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-image-set-function@3.0.1", + "author": "Jonathan Neal", + "name": "postcss-image-set-function", + "version": "3.0.1", + "description": "Display resolution-dependent images using the image-set() function in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-image-set-function@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-image-set-function#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-image-set-function/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-image-set-function.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-initial@3.0.0", + "author": "Maksim Koretskiy", + "name": "postcss-initial", + "version": "3.0.0", + "description": "PostCSS plugin to fallback initial keyword.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e2535b5a2c64ee1e3afff5032b18c03763acc8231954b9d1cbed7c0b0dea4f3cd4a9f29253624bf9542402f08ca75c6b176b714accd277ede65d7ec23bd4d8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Maksim Koretskiy \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-initial@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/maximkoretskiy/postcss-initial#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/maximkoretskiy/postcss-initial/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/maximkoretskiy/postcss-initial.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-lab-function@2.0.1", + "author": "Jonathan Neal", + "name": "postcss-lab-function", + "version": "2.0.1", + "description": "Use lab() and lch() color functions in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-lab-function@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-lab-function#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-lab-function/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-lab-function.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-load-config@2.0.0", + "author": "Michael Ciniawky", + "name": "postcss-load-config", + "version": "2.0.0", + "description": "Autoload Config for PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddfa427e75e8f5077f3bfabf5cbe1c254851b2a8d50f6575561cb7c0e11c2c4e64cf44c6b5d0d7252a224dd1f87bce3b2a985b11a738f846521f8a8b4582202f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright (c) Michael Ciniawsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-load-config@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/michael-ciniawsky/postcss-load-config/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/michael-ciniawsky/postcss-load-config.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-loader@3.0.0", + "author": "Andrey Sitnik", + "name": "postcss-loader", + "version": "3.0.0", + "description": "PostCSS loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b27d8feaec72556c7fb4230a7d15008df98157be4cc6e3093a6733267927c7a26bf6f416dcff7b65787d82171ed4a480058b2775ad940c0c202b359e3215421" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright 2017 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-loader@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-logical@3.0.0", + "author": "Jonathan Neal", + "name": "postcss-logical", + "version": "3.0.0", + "description": "Use logical properties and values in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-logical@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-logical#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-logical/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-logical.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-media-minmax@4.0.0", + "author": "yisi", + "name": "postcss-media-minmax", + "version": "4.0.0", + "description": "Using more intuitive `>=`, `<=`, `>`, `<` instead of media queries min/max prefix.", + "hashes": [ + { + "alg": "SHA-512", + "content": "958c066d4864ebef0d48c2783f64f8f998b4b5b1d40c581d1d70b8cd37bf3fbce4224fa546e684a5971917394bdddc566ab9f073a226a43578306055e2e0c35e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/postcss-media-minmax@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-media-minmax#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-media-minmax/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-media-minmax.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-nested@4.1.2", + "author": "Andrey Sitnik", + "name": "postcss-nested", + "version": "4.1.2", + "description": "PostCSS plugin to unwrap nested rules like how Sass does it", + "hashes": [ + { + "alg": "SHA-512", + "content": "094eca8db14e65236b6c5c2b97cf8a2474e3dbd1a308484bf3a9022b2bdffa4eb7ddf73e15003a22e846c8fcdee5ef9ae0ee5dd9f3fb84394c3a55435e26b55e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-nested@4.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-nested#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-nested/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-nested.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-overflow-shorthand@2.0.0", + "author": "Jonathan Neal", + "name": "postcss-overflow-shorthand", + "version": "2.0.0", + "description": "Use the overflow shorthand in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-overflow-shorthand@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-overflow-shorthand/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-overflow-shorthand.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-page-break@2.0.0", + "author": "shrpne", + "name": "postcss-page-break", + "version": "2.0.0", + "description": "PostCSS plugin postcss-page-break to fallback `break-` properties with `page-break-` alias", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2017 AUTHOR_NAME \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-page-break@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shrpne/postcss-page-break" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shrpne/postcss-page-break/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shrpne/postcss-page-break.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-place@4.0.1", + "author": "Jonathan Neal", + "name": "postcss-place", + "version": "4.0.1", + "description": "Use a place-* shorthand for align-* and justify-* in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-place@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-place#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-place/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-place.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-preset-env@6.6.0", + "author": "Jonathan Neal", + "name": "postcss-preset-env", + "version": "6.6.0", + "description": "Convert modern CSS into something browsers understand", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-preset-env@6.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstools/postcss-preset-env#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstools/postcss-preset-env/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstools/postcss-preset-env.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-nesting@7.0.0", + "author": "Jonathan Neal", + "name": "postcss-nesting", + "version": "7.0.0", + "description": "Nest style rules inside each other", + "hashes": [ + { + "alg": "SHA-512", + "content": "224c965c80b06a00a795abe245ec62eea39dc0fc37fb15558e015f1acc66cedbd155a371025af2a4e20aa831399b163e055c6721dd6b9d4281450a0d13654368" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-nesting@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-nesting#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-nesting/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-nesting.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-pseudo-class-any-link@6.0.0", + "author": "Jonathan Neal", + "name": "postcss-pseudo-class-any-link", + "version": "6.0.0", + "description": "Use the :any-link pseudo-class in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "c629dd82bf6aaaee870e71ca93b949488208ea7bcd9862b121bf0139451fb5e2dcb62721c1a3441adc16beaeba49cfc4b93bbf6caffe7c0c8b4705a43f1fe714" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-pseudo-class-any-link@6.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/postcss-pseudo-class-any-link/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/postcss-pseudo-class-any-link.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-replace-overflow-wrap@3.0.0", + "author": "Matthias Müller", + "name": "postcss-replace-overflow-wrap", + "version": "3.0.0", + "description": "PostCSS plugin to replace overflow-wrap with word-wrap or optionally retain both declarations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "24d62df838944220adb32d7b72a707425089e61b813c3abc178f619674ddef8ec608cbda504ab8a2e234411d04dfccdd2acd69b67ce1a066309ba9afa5b783e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright 2016 Matthias Müller \r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/postcss-replace-overflow-wrap@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MattDiMu/postcss-replace-overflow-wrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MattDiMu/postcss-replace-overflow-wrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-matches@4.0.0", + "author": "Maxime Thirouin", + "name": "postcss-selector-matches", + "version": "4.0.0", + "description": "PostCSS plugin to transform :matches() W3C CSS pseudo class to more compatible CSS selectors", + "hashes": [ + { + "alg": "SHA-512", + "content": "47ca7be3451fc79868f9a81d959dfcf4e38eaf294b246316c27a5b9bd2c1a15fcbe1a2f5d8c451fb3b86589a34dd761401e5ed0208121279fac2782848eab079" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-selector-matches@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-selector-matches#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-selector-matches/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-selector-matches.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-not@4.0.0", + "author": "Maxime Thirouin", + "name": "postcss-selector-not", + "version": "4.0.0", + "description": "PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors", + "hashes": [ + { + "alg": "SHA-512", + "content": "4edff8e51bda8f723f9c21c7306dcbf62a2226323660493c96cbd06e4a3e37ac2b3817cb3b1d32939d43313dd89e177b1b34305e29f378ede0627c2d51ef37a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-selector-not@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-selector-not#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-selector-not/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-selector-not.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-property-lookup@2.0.0", + "author": "Simon Smith", + "name": "postcss-property-lookup", + "version": "2.0.0", + "description": "PostCSS plugin that allows referencing property values without a variable", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Simon Smith \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-property-lookup@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/simonsmith/postcss-property-lookup#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/simonsmith/postcss-property-lookup/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/simonsmith/postcss-property-lookup.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tcomb@3.2.29", + "author": "Giulio Canti", + "name": "tcomb", + "version": "3.2.29", + "description": "Type checking and DDD for JavaScript", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Giulio Canti\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tcomb@3.2.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gcanti/tcomb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gcanti/tcomb/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gcanti/tcomb.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/precss@4.0.0", + "author": "Jonathan Neal", + "name": "precss", + "version": "4.0.0", + "description": "Use Sass-like markup and staged CSS features in CSS", + "licenses": [ + { + "license": { + "id": "CC0-1.0", + "text": { + "contentType": "text/markdown", + "content": "# CC0 1.0 Universal\n\n## Statement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an “owner”) of an original work of\nauthorship and/or a database (each, a “Work”).\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific works\n(“Commons”) that the public can reliably and without fear of later claims of\ninfringement build upon, modify, incorporate in other works, reuse and\nredistribute as freely as possible in any form whatsoever and for any purposes,\nincluding without limitation commercial purposes. These owners may contribute\nto the Commons to promote the ideal of a free culture and the further\nproduction of creative, cultural and scientific works, or to gain reputation or\ngreater distribution for their Work in part through the use and efforts of\nothers.\n\nFor these and/or other purposes and motivations, and without any expectation of\nadditional consideration or compensation, the person associating CC0 with a\nWork (the “Affirmer”), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work and\npublicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\n protected by copyright and related or neighboring rights (“Copyright and\n Related Rights”). Copyright and Related Rights include, but are not limited\n to, the following:\n 1. the right to reproduce, adapt, distribute, perform, display, communicate,\n and translate a Work;\n 2. moral rights retained by the original author(s) and/or performer(s);\n 3. publicity and privacy rights pertaining to a person’s image or likeness\n depicted in a Work;\n 4. rights protecting against unfair competition in regards to a Work,\n subject to the limitations in paragraph 4(i), below;\n 5. rights protecting the extraction, dissemination, use and reuse of data in\n a Work;\n 6. database rights (such as those arising under Directive 96/9/EC of the\n European Parliament and of the Council of 11 March 1996 on the legal\n protection of databases, and under any national implementation thereof,\n including any amended or successor version of such directive); and\n 7. other similar, equivalent or corresponding rights throughout the world\n based on applicable law or treaty, and any national implementations\n thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\n applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\n unconditionally waives, abandons, and surrenders all of Affirmer’s Copyright\n and Related Rights and associated claims and causes of action, whether now\n known or unknown (including existing as well as future claims and causes of\n action), in the Work (i) in all territories worldwide, (ii) for the maximum\n duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “Waiver”). Affirmer\n makes the Waiver for the benefit of each member of the public at large and\n to the detriment of Affirmer’s heirs and successors, fully intending that\n such Waiver shall not be subject to revocation, rescission, cancellation,\n termination, or any other legal or equitable action to disrupt the quiet\n enjoyment of the Work by the public as contemplated by Affirmer’s express\n Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\n judged legally invalid or ineffective under applicable law, then the Waiver\n shall be preserved to the maximum extent permitted taking into account\n Affirmer’s express Statement of Purpose. In addition, to the extent the\n Waiver is so judged Affirmer hereby grants to each affected person a\n royalty-free, non transferable, non sublicensable, non exclusive,\n irrevocable and unconditional license to exercise Affirmer’s Copyright and\n Related Rights in the Work (i) in all territories worldwide, (ii) for the\n maximum duration provided by applicable law or treaty (including future time\n extensions), (iii) in any current or future medium and for any number of\n copies, and (iv) for any purpose whatsoever, including without limitation\n commercial, advertising or promotional purposes (the “License”). The License\n shall be deemed effective as of the date CC0 was applied by Affirmer to the\n Work. Should any part of the License for any reason be judged legally\n invalid or ineffective under applicable law, such partial invalidity or\n ineffectiveness shall not invalidate the remainder of the License, and in\n such case Affirmer hereby affirms that he or she will not (i) exercise any\n of his or her remaining Copyright and Related Rights in the Work or (ii)\n assert any associated claims and causes of action with respect to the Work,\n in either case contrary to Affirmer’s express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n 1. No trademark or patent rights held by Affirmer are waived, abandoned,\n surrendered, licensed or otherwise affected by this document.\n 2. Affirmer offers the Work as-is and makes no representations or warranties\n of any kind concerning the Work, express, implied, statutory or\n otherwise, including without limitation warranties of title,\n merchantability, fitness for a particular purpose, non infringement, or\n the absence of latent or other defects, accuracy, or the present or\n absence of errors, whether or not discoverable, all to the greatest\n extent permissible under applicable law.\n 3. Affirmer disclaims responsibility for clearing rights of other persons\n that may apply to the Work or any use thereof, including without\n limitation any person’s Copyright and Related Rights in the Work.\n Further, Affirmer disclaims responsibility for obtaining any necessary\n consents, permissions or other rights required for any use of the Work.\n 4. Affirmer understands and acknowledges that Creative Commons is not a\n party to this document and has no duty or obligation with respect to this\n CC0 or use of the Work.\n\nFor more information, please see\nhttp://creativecommons.org/publicdomain/zero/1.0/.\n" + } + } + } + ], + "purl": "pkg:npm/precss@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonathantneal/precss#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonathantneal/precss/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonathantneal/precss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.7.2", + "name": "prop-types", + "version": "15.7.2", + "description": "Runtime type checking for React props and similar objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a23f3b0a064809dba5528868815011ec08e50b4df6ed4e1e9782fa780bcea827ae74c0d553435384d695f9bf437f87578123f58173139cf7617deff6a831f972" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prop-types@15.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.io/react/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/prop-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/prop-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/raw-loader@2.0.0", + "author": "Tobias Koppers @sokra", + "name": "raw-loader", + "version": "2.0.0", + "description": "A loader for webpack that allows importing files as a String", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1fee81a82ee698012701e151abd2dcdeb6c6254bc1091faaa74c27d0fd65446bcf6100b4384507c22ade710b23d028f0d46d550020fd50b310307c08e50e9ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/raw-loader@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/raw-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/raw-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/raw-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react@16.8.6", + "name": "react", + "version": "16.8.6", + "description": "React is a JavaScript library for building user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d17d822260e424602988095c7f43832889de4b004f86a25ac0e6b9c02b4a6eeed9102ae64b6e8dbed4882f29d0eba720913fd12782e274939cddb5044b0994f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react@16.8.6", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/scheduler@0.13.6", + "name": "scheduler", + "version": "0.13.6", + "description": "Cooperative scheduler for the browser environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ffcf04564584948f4ff783fa2d28344f321eaabf649831636af392046bc899c80bfca1df730d8a464a7a4112336070c36ae9271bbb929f20fc4d17bd91ff610" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/scheduler@0.13.6", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-hot-loader@4.8.8", + "author": "Dan Abramov", + "name": "react-hot-loader", + "version": "4.8.8", + "description": "Tweak React components in real time.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de67a1e79d026a0cdda9a722d91d30742603372e61645178fde8f68a23978d15f9051237d244cd26dcc315d5d722a8a92232e110f5293cb4ac751d7a1310f37c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-hot-loader@4.8.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gaearon/react-hot-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gaearon/react-hot-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gaearon/react-hot-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-lifecycles-compat@3.0.4", + "name": "react-lifecycles-compat", + "version": "3.0.4", + "description": "Backwards compatibility polyfill for React class components", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c10126c0e8b9ce53d74e536796eda43cc666014975085abf94985f5bd5e7d905acc634efab7174ff89c74a9d89b6a53c1c472955518c16ec7d4f1df2de915cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/react-lifecycles-compat@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactjs/react-lifecycles-compat#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactjs/react-lifecycles-compat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactjs/react-lifecycles-compat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shallowequal@1.1.0", + "author": "Alberto Leal", + "name": "shallowequal", + "version": "1.1.0", + "description": "Like lodash isEqualWith but for shallow equal.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb49b52685194a53c08d756d3cf5bbd1a6567c82ff7523fb0059119e788b0ab2bff0c0caa20dd3c924c199c903f9139b5711f4bf84e8c7aefe175e0f7440f6a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Alberto Leal (github.com/dashed)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/shallowequal@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dashed/shallowequal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dashed/shallowequal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dashed/shallowequal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.7.3", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.7.3", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "\nCopyright (c) 2009-2011, Mozilla Foundation and contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the names of the Mozilla Foundation nor the names of project\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map@0.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rechoir@0.6.2", + "author": "Tyler Kellen", + "name": "rechoir", + "version": "0.6.2", + "description": "Require any supported file as a node module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c533cae467e8b7ceb57ee0b423c10d16f9ecfdf290293063371d4acdd388f70aaccf3b397d9e63f5e58f185cd9bc4071affde69c395123aa1996a64455d0d03" + } + ], + "purl": "pkg:npm/rechoir@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tkellen/node-rechoir" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tkellen/node-rechoir/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tkellen/node-rechoir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-graph@2.2.4", + "author": "xzyfer", + "name": "sass-graph", + "version": "2.2.4", + "description": "Parse sass files and extract a graph of imports", + "hashes": [ + { + "alg": "SHA-512", + "content": "54558300739eea646e4f899945de1e284f9df1479dae4e979e1ed287d6f8346b9f40b4233abbdffcc42839dc7ed2cf762fcf457b251435f539f7b8ffdee3696a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/sass-graph@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xzyfer/sass-graph#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xzyfer/sass-graph/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xzyfer/sass-graph.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@7.1.0", + "name": "yargs", + "version": "7.1.0", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@7.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camelcase@3.0.0", + "author": "Sindre Sorhus", + "name": "camelcase", + "version": "3.0.0", + "description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", + "hashes": [ + { + "alg": "SHA-512", + "content": "17102fec7a47ad76e1dda3e8e28daac476b2da590b637c79330dca784e0a404f32b157f3896791643c1c8dabafc01486102fe75d43f3672f337a1e07a24a8e9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camelcase@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/camelcase#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/camelcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/camelcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/which-module@1.0.0", + "author": "nexdrew", + "name": "which-module", + "version": "1.0.0", + "description": "Find the module object for something that was require()d", + "hashes": [ + { + "alg": "SHA-512", + "content": "07e7a75a19b0e9c8df542ee44bc3e3f690ab292739b7102b47269819ed3cf2c86ffc51961fed118f1ff13e0b6c59fb14b52dbb1643faf7b1380c3860ae0a1cd1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/which-module@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nexdrew/which-module#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nexdrew/which-module/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nexdrew/which-module.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/y18n@3.2.1", + "author": "Ben Coe", + "name": "y18n", + "version": "3.2.1", + "description": "the bare-bones internationalization library used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "b866475e41e7845d1779e00f82729f3efd5b80a018c95be634bd7194ab0f6193da207c46b62da11eabce090bfbd5732c2f1bb54237ab824aa88149e6b390f761" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/y18n@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/y18n" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/y18n/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/y18n.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@5.0.0", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "5.0.0", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-loader@7.1.0", + "author": "J. Tangelder", + "name": "sass-loader", + "version": "7.1.0", + "description": "Sass loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "2688b20f4d18a35a3ad4e26ca0fdacda46f5f4bd7f636a77405702756745ea8a2604629562e672a8759e99105f436b8662c93e087dde0a0b9735fa63ce572968" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sass-loader@7.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/sass-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/sass-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/sass-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/select-hose@2.0.0", + "author": "Fedor Indutny", + "name": "select-hose", + "version": "2.0.0", + "description": "Select protocol using first bytes of incoming data and hose stuff to the handler", + "hashes": [ + { + "alg": "SHA-512", + "content": "984ba068b2be61f9228c1e1fc747ba9089ae25d088b762f109171b1183ea4460ace05da88327d953920065176308ff093ead80b5d3680bf0eec7adddf4a8abca" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/select-hose@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/select-hose#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/select-hose/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/select-hose.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/selfsigned@1.10.4", + "author": "José F. Romaniello", + "name": "selfsigned", + "version": "1.10.4", + "description": "Generate self signed certificates private and public keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "9648da880c9efb00590c206cbb90468b45e22d1c5e525b06a1de593fddb8091484a06b99030fdfef2f512aedbcaf04df88756175abe1074a87d08355e8fd6510" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013 José F. Romaniello\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/selfsigned@1.10.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jfromaniello/selfsigned#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jfromaniello/selfsigned/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jfromaniello/selfsigned.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@1.7.0", + "author": "Eric Ferraiuolo", + "name": "serialize-javascript", + "version": "1.7.0", + "description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d156ffe78589ea4e6ff2c496374f52d28adaf879ebf9c5f8d2bf45d7bd274fe99291ac65b6813fed1dceac8741494bf53a88a86c7d50a1641b0a700ef9ef09d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2014 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/serialize-javascript@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yahoo/serialize-javascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yahoo/serialize-javascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yahoo/serialize-javascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/serve-index@1.9.1", + "author": "Douglas Christopher Wilson", + "name": "serve-index", + "version": "1.9.1", + "description": "Serve directory listings", + "hashes": [ + { + "alg": "SHA-512", + "content": "a571df28d3f8aae8ebb6d78cad205bd2b73c1c9f4cb3f1ab5f0714b54b43e6ce1ec03248f1b4f70b3db34d544c2adae2e3da4bc767b461af3388fe586b6a5967" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2010 Sencha Inc.\nCopyright (c) 2011 LearnBoost\nCopyright (c) 2011 TJ Holowaychuk\nCopyright (c) 2014-2015 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/serve-index@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/serve-index#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/serve-index/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/serve-index.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-errors@1.6.3", + "author": "Jonathan Ong", + "name": "http-errors", + "version": "1.6.3", + "description": "Create HTTP error objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a993d4a6ecd988f911e19e3e8e2160c8d5de9f228140b45b7d44b693311960ffcc38f63b804adb2b060a740e9e0e7717556d121e2a1b4252fa22fd1b8084ee2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\nCopyright (c) 2016 Douglas Christopher Wilson doug@somethingdoug.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-errors@1.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/http-errors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/http-errors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/http-errors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/setprototypeof@1.1.0", + "author": "Wes Todd", + "name": "setprototypeof", + "version": "1.1.0", + "description": "A small polyfill for Object.setprototypeof", + "hashes": [ + { + "alg": "SHA-512", + "content": "1392c35fb5aba7ce4a8a5e5b859bf8ea3f2339e6e82aae4932660cde05467461fcc45a4f59750cb0dae53830ab928c4c11e362fd7648c2e46f6385cdc18309a7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Wes Todd\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\nSPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION\nOF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN\nCONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/setprototypeof@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wesleytodd/setprototypeof" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wesleytodd/setprototypeof/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wesleytodd/setprototypeof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shebang-loader@0.0.1", + "name": "shebang-loader", + "version": "0.0.1", + "description": "#!/usr/bin/env shebang loader for webpack", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2016 unicorn.coffee\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/shebang-loader@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/javascriptismagic/shebang-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/javascriptismagic/shebang-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/javascriptismagic/shebang-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shelljs@0.8.3", + "name": "shelljs", + "version": "0.8.3", + "description": "Portable Unix shell commands for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "372d0a3787724fc652084d1faed71b0091a833f1d302ba723e47a58b5ff4d1a61f9b4b1b0ff1a4ff8c7b3760cff50286a41b22407ee7eaba66d4befd46dbe211" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2012, Artur Adib \nAll rights reserved.\n\nYou may use this project under the terms of the New BSD license as follows:\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Artur Adib nor the\n names of the contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL ARTUR ADIB BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/shelljs@0.8.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/shelljs/shelljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shelljs/shelljs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/shelljs/shelljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/signal-exit@3.0.2", + "author": "Ben Coe", + "name": "signal-exit", + "version": "3.0.2", + "description": "when you want to fire an event no matter how a process exits.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c270f6644fa5f923c2feea12d2f5de13d2f5fb4c2e68ca8a95fcfd00c528dfc26cc8b48159215c1d1d51ae2eb62d9735daf2ebd606f78e5ee2c10860c2901b19" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "The ISC License\n\nCopyright (c) 2015, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/signal-exit@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tapjs/signal-exit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tapjs/signal-exit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tapjs/signal-exit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sockjs@0.3.19", + "author": "Marek Majkowski", + "name": "sockjs", + "version": "0.3.19", + "description": "SockJS-node is a server counterpart of SockJS-client a JavaScript library that provides a WebSocket-like object in the browser. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.", + "hashes": [ + { + "alg": "SHA-512", + "content": "18980b4d9eef61bfc9b4f492675d21b0e608bc462c8db354fb33dd20771469654d5043e2bf3c64bb7d7ceb9b124ae7740dad16e2511e38f966c3ddf32d0721b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2011 VMware, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sockjs@0.3.19", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sockjs/sockjs-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sockjs/sockjs-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sockjs/sockjs-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sockjs-client@1.3.0", + "author": "Bryce Kahle", + "name": "sockjs-client", + "version": "1.3.0", + "description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "da0d2d8ce47e7d1b346a6c4434b8bfab94e2253a98f965c53b36f95305e77652ba4cedd4fe68ab6739e9c7ac37e0754ca1cde0edc636e320bf64c2189c395f93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2012 VMware, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sockjs-client@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "http://sockjs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sockjs/sockjs-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sockjs/sockjs-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/faye-websocket@0.11.1", + "author": "James Coglan", + "name": "faye-websocket", + "version": "0.11.1", + "description": "Standards-compliant WebSocket server and client", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e18fddd15db312abcbab34252ae29f65d0fea19f2489ffb60d46160dba0d1b2ceba28bba4a3bbc5015be66c7dc595d609aafcf292cf6fcd393ef524c2b2d9a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/faye-websocket@0.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faye/faye-websocket-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faye/faye-websocket-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/faye-websocket-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-list-map@2.0.1", + "author": "Tobias Koppers @sokra", + "name": "source-list-map", + "version": "2.0.1", + "description": "Fast line to line SourceMap generator.", + "hashes": [ + { + "alg": "SHA-512", + "content": "71a6f07619d235ffed4c3321fc35d95e591e40bbdd613e717c6601a21a871bbc1bddb050ad094740d58cf4d59239ba175cad73830cfa2734b97b8859abdbf133" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2017 JS Foundation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-list-map@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/source-list-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/source-list-map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/source-list-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.5.12", + "name": "source-map-support", + "version": "0.5.12", + "description": "Fixes stack traces for files with source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "80628e49ab7bdf3d15f3004aa3d006c596727a4733062ade87584792d6edfa46fd69cb0207939f5421760c25a5ced710debe6834dedfd812f4076c4e72827f0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Evan Wallace\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-support@0.5.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/evanw/node-source-map-support#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/evanw/node-source-map-support/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/evanw/node-source-map-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-correct@3.1.0", + "author": "Kyle E. Mitchell", + "name": "spdx-correct", + "version": "3.1.0", + "description": "correct invalid SPDX expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e61c516c210ae1c25e2e3d4611510b22442b788f8f5662cfd0e9562577b5b64ec170f8f50cc837732938b24dc61daac2ada524965a28c570f6a362e234c2d3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/spdx-correct@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jslicense/spdx-correct.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jslicense/spdx-correct.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jslicense/spdx-correct.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-expression-parse@3.0.0", + "author": "Kyle E. Mitchell", + "name": "spdx-expression-parse", + "version": "3.0.0", + "description": "parse SPDX license expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2015 Kyle E. Mitchell & other authors listed in AUTHORS\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/spdx-expression-parse@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jslicense/spdx-expression-parse.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jslicense/spdx-expression-parse.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jslicense/spdx-expression-parse.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-exceptions@2.2.0", + "author": "The Linux Foundation", + "name": "spdx-exceptions", + "version": "2.2.0", + "description": "list of SPDX standard license exceptions", + "hashes": [ + { + "alg": "SHA-512", + "content": "fed4eb60e0bb3cf2359d4020c77e21529a97bb2246f834c72539c850b1b8ac3ca08b8c6efed7e09aad5ed5c211c11cf0660a3834bc928beae270b919930e22e4" + } + ], + "licenses": [ + { + "license": { + "id": "CC-BY-3.0" + } + } + ], + "purl": "pkg:npm/spdx-exceptions@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kemitchell/spdx-exceptions.json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kemitchell/spdx-exceptions.json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kemitchell/spdx-exceptions.json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-license-ids@3.0.4", + "author": "Shinnosuke Watanabe", + "name": "spdx-license-ids", + "version": "3.0.4", + "description": "A list of SPDX license identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ad97606b1623345f7300358823dc29328318519abf668bac617a36dd3bdeb49c5e840c90294d8a67d014270ca96734150b2a208dd67df0f440641caf195a0fa" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + } + ], + "purl": "pkg:npm/spdx-license-ids@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shinnn/spdx-license-ids#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shinnn/spdx-license-ids/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shinnn/spdx-license-ids.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdy@4.0.0", + "author": "Fedor Indutny", + "name": "spdy", + "version": "4.0.0", + "description": "Implementation of the SPDY protocol on node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c4be090b4693336b918e374a03cef2d32cc0157c1e41c5e38f6ec5b28ac13213c21bc4be9c0a229bafcc6b25d49cb3a5e8394a7ba50cb83c8f8655ccc76cee3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/spdy@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/node-spdy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/node-spdy/issues" + }, + { + "type": "vcs", + "url": "git://github.com/indutny/node-spdy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdy-transport@3.0.0", + "author": "Fedor Indutny", + "name": "spdy-transport", + "version": "3.0.0", + "description": "SPDY v2, v3, v3.1 and HTTP2 transport", + "hashes": [ + { + "alg": "SHA-512", + "content": "abb0fc735e3c7ac72807767bc9208049a7647a03265195bc59bfd0d6ed3f5c180328c3bcf34acb4038fc4f089ec3fb588bb8217a62948bfc214983b0135edfe5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/spdy-transport@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spdy-http2/spdy-transport" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/spdy-transport/issues" + }, + { + "type": "vcs", + "url": "git://github.com/spdy-http2/spdy-transport.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@3.4.0", + "name": "readable-stream", + "version": "3.4.0", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@3.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sshpk@1.16.1", + "author": "Joyent, Inc", + "name": "sshpk", + "version": "1.16.1", + "description": "A library for finding and using SSH public keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffd1c812cd595c68523c4f17e82726ecd6a6d73f0a7280aa3dd23b79c9b5377dc4cc07ad59a86f41656a2d9b5a650f880ca5f8232036a34801cea20c9006a01d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sshpk@1.16.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arekinath/node-sshpk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/arekinath/node-sshpk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joyent/node-sshpk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/style-loader@0.23.1", + "author": "Tobias Koppers @sokra", + "name": "style-loader", + "version": "0.23.1", + "description": "style loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "81d9e3046a6f54c294c7265950074bbc74601d259ba59ce1ae19eb1a0536874e908049e9b67f35332def95f5dfddf2ee7dd5a0e0a61fc0c3197a156462c831a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/style-loader@0.23.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/style-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/style-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/style-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/svg-url-loader@2.3.2", + "author": "Hovhannes Babayan", + "name": "svg-url-loader", + "version": "2.3.2", + "description": "Converts SVG file to utf-8 encoded data-uri string", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Hovhannes Babayan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/svg-url-loader@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bhovhannes/svg-url-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bhovhannes/svg-url-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bhovhannes/svg-url-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader-utils@1.1.0", + "author": "Tobias Koppers @sokra", + "name": "loader-utils", + "version": "1.1.0", + "description": "utils for webpack loaders", + "hashes": [ + { + "alg": "SHA-512", + "content": "b62bfae86d129a23b1fa92d632d18491f4847a3c6f6fa37ab91ad08df589213efd5bd18ca6029e0809a6f5a5412ad778584827b5c888f02b06aa3a43a02589ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader-utils@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/loader-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/loader-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/loader-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/big.js@3.2.0", + "author": "Michael Mclaughlin", + "name": "big.js", + "version": "3.2.0", + "description": "A small, fast, easy-to-use library for arbitrary-precision decimal arithmetic", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa137f661d83d3c331eb9a59ff88396ec98d89952e0a10e241f4d443ba89af8fe4ba8a42afcf3166c017bfa981a1912c508e0eb861e55f9f6a13de0ada6316f1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT Expat Licence.\r\n\r\nCopyright (c) 2012 Michael Mclaughlin\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\n" + } + } + } + ], + "purl": "pkg:npm/big.js@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MikeMcl/big.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MikeMcl/big.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MikeMcl/big.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json5@0.5.1", + "author": "Aseem Kishore", + "name": "json5", + "version": "0.5.1", + "description": "JSON for the ES5 era.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4412eb88ee869dd1de9cd8f72b4d12e82c7d8936e23f689c47b154f685514ae9f287bbe31738d761cf3ccd0256f725731eb8dd68fa40d4efc7d5d581fa56629" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2012-2016 Aseem Kishore, and [others](https://github.com/aseemk/json5/contributors).\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json5@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "http://json5.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aseemk/json5/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aseemk/json5.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/terser@4.0.0", + "author": "Mihai Bazon", + "name": "terser", + "version": "4.0.0", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", + "hashes": [ + { + "alg": "SHA-512", + "content": "e069cb0b4c7aebb7891b47b02536bacffc97adb2c6bfcd03f51bba1c8a424263be4383df12d0458b439b49c92ac0be95c90bffec434989e5c7a3600d99d43083" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2018 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/terser@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabiosantoscode/terser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fabiosantoscode/terser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fabiosantoscode/terser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/terser-webpack-plugin@1.3.0", + "author": "webpack Contrib Team", + "name": "terser-webpack-plugin", + "version": "1.3.0", + "description": "Terser plugin for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3845f7b8f7a94df0462bbb08baa0f4241b4be8f02f874f8f57ebcec5667a4f174a8c0081ce348e8711760f283384f1ee478d74f229fa9177f6a01ed1f490eb7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/terser-webpack-plugin@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/terser-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@1.3.0", + "author": "Tobias Koppers @sokra", + "name": "webpack-sources", + "version": "1.3.0", + "description": "Source code handling classes for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "f025d87cf6645af63455669d1c3437ab685406a9362092934dd0cf61be61c271955666bc6f3a932447ab503ae95b05e7b98f6fc59d261849e3603d172e144779" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-sources@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-sources#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-sources/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-sources.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/worker-farm@1.7.0", + "name": "worker-farm", + "version": "1.7.0", + "description": "Distribute processing tasks to child processes with an über-simple API and baked-in durability & custom concurrency options.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aefc3741365cf25031c95aea7121959b9c8ffc827651c07753482b684dcb085a19d189f6c78128552a8929d07f4f933e14b7113e3cf84c369c45fdce09f354cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2014 LevelUP contributors\n---------------------------------------\n\n*LevelUP contributors listed at *\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/worker-farm@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/node-worker-farm" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/node-worker-farm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/node-worker-farm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-js@3.6.0", + "author": "Mihai Bazon", + "name": "uglify-js", + "version": "3.6.0", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8babfe32da98dc537be1961b1e5c6189ed56c53b8a4100dbb493097c5426bd28423457c55f648c76172df0d358924c0fe91b02994a6bbff88e1eb4b34376de7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2019 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/uglify-js@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mishoo/UglifyJS2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mishoo/UglifyJS2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mishoo/UglifyJS2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url-loader@1.1.2", + "author": "Tobias Koppers @sokra", + "name": "url-loader", + "version": "1.1.2", + "description": "A loader for webpack which transforms files into base64 URIs", + "hashes": [ + { + "alg": "SHA-512", + "content": "07b418172beff9f381a8155e79fb31bfa928596b6398768c153e8a656b62e0a470f18503fe1394fb70040af5eecf255ac08071df3ef34117a35c20d23b9924d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/url-loader@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/url-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/url-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/url-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime@2.4.3", + "author": "Robert Kieffer", + "name": "mime", + "version": "2.4.3", + "description": "A comprehensive library for mime-type mapping", + "hashes": [ + { + "alg": "SHA-512", + "content": "c74567f2ca48fb0b89d4ee92ee09db69083c3f187834d1dbeca4883661162a23c4e1128ea65be28e7f8d92662699180febc99cef48f611b793151b2bb306907a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 Benjamin Thomas, Robert Kieffer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime@2.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broofa/node-mime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broofa/node-mime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broofa/node-mime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/watchpack@1.6.0", + "author": "Tobias Koppers @sokra", + "name": "watchpack", + "version": "1.6.0", + "description": "Wrapper library for directory and file watching.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4fdcc5a4e92aca8c7b0690b4f62875dd43ff52364ca825b69bc6728ea097a9b2f263246f2e613477c933f13d0bcd0c8df0e0dcf5c671344cb1cae112157bf31" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/watchpack@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/watchpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/watchpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/watchpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack@4.32.2", + "author": "Tobias Koppers @sokra", + "name": "webpack", + "version": "4.32.2", + "description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b0ecc74820ebff9e4ccfcde7b8a3411dbc2b8f9b14fdf3ebd5a48bf0b5cc1c17543848348da7ddafc1c29ce1111eecd22d1fd7f54b8adaf45b90ef2b9867c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack@4.32.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-bundle-analyzer@3.3.2", + "author": "Yury Grunin", + "name": "webpack-bundle-analyzer", + "version": "3.3.2", + "description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-bundle-analyzer@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ws@6.2.1", + "author": "Einar Otto Stangvik", + "name": "ws", + "version": "6.2.1", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a372aa8a95cd51d4bbc2943304749ed7cd250463bad12a0ad32568dc260981bd8c9286ee5ae057e9d86460fe4e4422dde79cbe49a7e530e5797ea001e77bb1e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Einar Otto Stangvik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ws@6.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/websockets/ws" + }, + { + "type": "issue-tracker", + "url": "https://github.com/websockets/ws/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/websockets/ws.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-middleware@3.7.0", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-middleware", + "version": "3.7.0", + "description": "A development middleware for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "142aea3f2d72cbfb0de94fd268465c1ca4571a5a94d0351a1012f8e6391462807c7e855beb00a76c82751ca231faa5054d6fb726955c0890b167c5404cbe1ef8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-middleware@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-dev-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-log@2.0.0", + "author": "Andrew Powell", + "name": "webpack-log", + "version": "2.0.0", + "description": "A common logger for the webpack ecosystem", + "hashes": [ + { + "alg": "SHA-512", + "content": "717f06daf47ff395181b9f45824a0c6a6c075089124a55776c1311b1bc555d5524da3e8d95e08a8d0fd613d79883d598e30db93bdc3cc0a3f8af335916651c52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 webpack-contrib\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-log@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/webpack-log#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/webpack-log/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/webpack-log.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-server@3.5.1", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-server", + "version": "3.5.1", + "description": "Serves a webpack app. Updates the browser on changes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed374e28ab7b1b7b161213ca574ccffa70f473857d60a509df00dd07042c64da39f28648468548bbaea983b3d89015bc03be26b0ff42da42f09b11879ddcffa7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-server@3.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-dev-server#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-server/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-server.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/worker-loader@2.0.0", + "author": "Tobias Koppers @sokra", + "name": "worker-loader", + "version": "2.0.0", + "description": "worker loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8964b552fe33020484c3ccfa3f46ec1e612206f1524fe4febb98fffbd5a946c936517b52d82457702e32da958dd3e627f1d1b303443dce07a3f6a757ac72f96" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/worker-loader@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/worker-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/worker-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/worker-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xml@1.0.1", + "author": "Dylan Greene", + "name": "xml", + "version": "1.0.1", + "description": "Fast and simple xml generator. Supports attributes, CDATA, etc. Includes tests and examples.", + "hashes": [ + { + "alg": "SHA-512", + "content": "86e0aff481fd4dc7fde73b980ac42b699b569c9bc1b4b544d101cc3acf1b5b26401593437188ec3ead67131f23280f72f817a8f6ffbb3813d18ac4138e29d033" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011-2016 Dylan Greene \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xml@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dylang/node-xml" + }, + { + "type": "issue-tracker", + "url": "http://github.com/dylang/node-xml/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/dylang/node-xml.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yaml-loader@0.5.0", + "author": "Andrey Okonetchnikov", + "name": "yaml-loader", + "version": "0.5.0", + "description": "YAML loader for webpack (converts YAML to JSON)", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Andrey Okonetchnikov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/yaml-loader@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/okonet/yaml-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/okonet/yaml-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/okonet/yaml-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@13.2.4", + "name": "yargs", + "version": "13.2.4", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@13.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@13.1.0", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "13.1.0", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@13.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40jonathansadowski/wpc-test@0.17.0", + "group": "@jonathansadowski", + "name": "wpc-test", + "version": "0.17.0", + "description": "A pure REST-API and JS based version of the WordPress.com admin", + "hashes": [ + { + "alg": "SHA-512", + "content": "da3755f7857d1c5af76cdd40fc476f4798b74a877328de0566a0f0e6e18145a7d0670b12a62aa202608230fb96491972440f7982bdea91dfaa3f97bd7bc889a6" + } + ], + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "The GNU General Public License, Version 2, June 1991 (GPLv2)\n============================================================\n\n> Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\n\nPreamble\n--------\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the GNU General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This General Public License applies to most\nof the Free Software Foundation's software and to any other program whose\nauthors commit to using it. (Some other Free Software Foundation software is\ncovered by the GNU Library General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our\nGeneral Public Licenses are designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\n\nTerms And Conditions For Copying, Distribution And Modification\n---------------------------------------------------------------\n\n**0.** This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis General Public License. The \"Program\", below, refers to any such program or\nwork, and a \"work based on the Program\" means either the Program or any\nderivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this License\nand to the absence of any warranty; and give any other recipients of the Program\na copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n**2.** You may modify your copy or copies of the Program or any portion of it,\nthus forming a work based on the Program, and copy and distribute such\nmodifications or work under the terms of Section 1 above, provided that you also\nmeet all of these conditions:\n\n* **a)** You must cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change.\n\n* **b)** You must cause any work that you distribute or publish, that in whole\n or in part contains or is derived from the Program or any part thereof, to\n be licensed as a whole at no charge to all third parties under the terms of\n this License.\n\n* **c)** If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use in the\n most ordinary way, to print or display an announcement including an\n appropriate copyright notice and a notice that there is no warranty (or\n else, saying that you provide a warranty) and that users may redistribute\n the program under these conditions, and telling the user how to view a copy\n of this License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the Program is\n not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n**3.** You may copy and distribute the Program (or a work based on it, under\nSection 2) in object code or executable form under the terms of Sections 1 and 2\nabove provided that you also do one of the following:\n\n* **a)** Accompany it with the complete corresponding machine-readable source\n code, which must be distributed under the terms of Sections 1 and 2 above on\n a medium customarily used for software interchange; or,\n\n* **b)** Accompany it with a written offer, valid for at least three years, to\n give any third party, for a charge no more than your cost of physically\n performing source distribution, a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of Sections 1\n and 2 above on a medium customarily used for software interchange; or,\n\n* **c)** Accompany it with the information you received as to the offer to\n distribute corresponding source code. (This alternative is allowed only for\n noncommercial distribution and only if you received the program in object\n code or executable form with such an offer, in accord with Subsection b\n above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not signed\nit. However, nothing else grants you permission to modify or distribute the\nProgram or its derivative works. These actions are prohibited by law if you do\nnot accept this License. Therefore, by modifying or distributing the Program (or\nany work based on the Program), you indicate your acceptance of this License to\ndo so, and all its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these terms and\nconditions. You may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for enforcing\ncompliance by third parties to this License.\n\n**7.** If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues), conditions\nare imposed on you (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License, they do not excuse you from the\nconditions of this License. If you cannot distribute so as to satisfy\nsimultaneously your obligations under this License and any other pertinent\nobligations, then as a consequence you may not distribute the Program at all.\nFor example, if a patent license would not permit royalty-free redistribution of\nthe Program by all those who receive copies directly or indirectly through you,\nthen the only way you could satisfy both it and this License would be to refrain\nentirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n**9.** The Free Software Foundation may publish revised and/or new versions of\nthe General Public License from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address new\nproblems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by the Free Software Foundation. If the\nProgram does not specify a version number of this License, you may choose any\nversion ever published by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by the Free Software Foundation,\nwrite to the Free Software Foundation; we sometimes make exceptions for this.\nOur decision will be guided by the two goals of preserving the free status of\nall derivatives of our free software and of promoting the sharing and reuse of\nsoftware generally.\n\n\nNo Warranty\n-----------\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES." + } + } + } + ], + "purl": "pkg:npm/%40jonathansadowski/wpc-test@0.17.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/wp-calypso#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/wp-calypso/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/wp-calypso.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40automattic/tree-select@1.0.3", + "author": "Jake Fried", + "group": "@automattic", + "name": "tree-select", + "version": "1.0.3", + "description": "A selector library for Redux", + "hashes": [ + { + "alg": "SHA-512", + "content": "8863010fad22855d0b6206b833155f1cfd7874db04b9136cdabbfc0628275e0cd979b62980d55b2fe4e6bedfa2ad40ff60aa27cd491ba65e77783ccb5f1ed0c5" + } + ], + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later" + } + } + ], + "purl": "pkg:npm/%40automattic/tree-select@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/wp-calypso" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/wp-calypso/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/wp-calypso.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/cli@7.2.3", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "cli", + "version": "7.2.3", + "description": "Babel command line.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/cli@7.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-cli" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.19.0", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.19.0", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.19.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/core@7.2.2", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "core", + "version": "7.2.2", + "description": "Babel compiler core.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4b21bd5e2fc00f332f75fc8316fb7d5c92b7c1338c82a0b695ce80e165429233872ed4bd67222772c640a0ccf020ac2e56133dfa20f12bfde49e485f69227fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/core@7.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-core" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/generator@7.2.2", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "generator", + "version": "7.2.2", + "description": "Turns an AST into code.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d0eec55434c733f5645011a8d64f4546965c434b1d2dc7450663c6f7801cb3830cc4e431c745f273d49e3da7d032a71fe43023dc8584b18a7ba29ce55000391" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/generator@7.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/types@7.2.2", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "types", + "version": "7.2.2", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "abe324b91c2d8c6ea1a2cdb2524072e0a4784513c08749e4f07e66d114909bed1bcf54f770d656171c4d9e9ec032b2b773df81f854563ecb3e79034d449cbb2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/types@7.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-types" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helpers@7.2.0", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "helpers", + "version": "7.2.0", + "description": "Collection of helper functions used by Babel transforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "25fe5afab6eb2e847878d7549a716ef1c37978d253eaa75374e839207233abced6c32470f4fc20b8b14e598824b4dffad083f87e00d46b026fb3b3e3408cc42d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helpers@7.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/template@7.2.2", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "template", + "version": "7.2.2", + "description": "Generate an AST from a string template.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc56aba295943e046b8c1c924a53b085304f0e228295b94fad7dd304fac39cbe33c8dd7b46be89c279a9b1accaf23b8bc2ff10b1fe9f74e74397a78d561d1e74" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/template@7.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/parser@7.2.3", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "parser", + "version": "7.2.3", + "description": "A JavaScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbad9b55605ee74ba5a89c53885eac8904663b9b170a61190c0bd4662bbcebb535d1453040523b423888fcc81f597917f7ae9aa7dacc8a6b35adf124d39af400" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/parser@7.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-parser" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/traverse@7.2.3", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "traverse", + "version": "7.2.3", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd7d07181f23bde426fd4e60564b5e477f572e74daa5cab47c7ac67d38d12122e5b1c81bbb8d3433e6b86897081deb2d4503c922888b643cc6ba4f7d9c95e2ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/traverse@7.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-split-export-declaration@7.0.0", + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.0.0", + "description": ">", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfbac07b1a6250858be896b7a327dda166c4a6b3db60492afff7b62f16b63b40eecdb1f1ab843ec25bed4dacb9719879048f723f00be8fc220ec11bbd196a5cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-split-export-declaration" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globals@11.9.0", + "author": "Sindre Sorhus", + "name": "globals", + "version": "11.9.0", + "description": "Global identifiers from different JavaScript environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e069fc410652222c252a7bc1cbffcba30efa557d5289dc5aac6e15f9bc781c3358d8327c177a1b3f8878a43d8c29b28681fdf60d793374fe41a5471638b354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globals@11.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve@1.9.0", + "author": "James Halliday", + "name": "resolve", + "version": "1.9.0", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c1a6eb98b98e6316c962fc922cd6895dc3a7ce402062a2886a59983fda189a3b26d739fb789689eff39b8338a5dd7fcae1c8ad79f5cc54e5c0dc2bf34a93ccf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve@1.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@5.6.0", + "name": "semver", + "version": "5.6.0", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@5.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-class-properties@7.3.0", + "group": "@babel", + "name": "plugin-proposal-class-properties", + "version": "7.3.0", + "description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax", + "hashes": [ + { + "alg": "SHA-512", + "content": "72e99f5ce174fa7cd9aeb37c45fd2deccfad17ab1973bbe1430610724f6ad7fe70d8e131943f9be2fe11a4c245695d59ed67034603ba16abf1ab11a5c28f911d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-class-properties@7.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-create-class-features-plugin@7.3.0", + "author": "The Babel Team", + "group": "@babel", + "name": "helper-create-class-features-plugin", + "version": "7.3.0", + "description": "Compile class public and private fields, private methods and decorators to ES6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5afca934061a561db741c8e9311db80b0658d8dcfa86a74e70574f6cda55e7a84be47e8a88585e3bb5e6d5a3dd94b43b7797a66195fb559c0fa7dc77cfeda8a7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-create-class-features-plugin@7.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-create-class-features-plugin" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-replace-supers@7.2.3", + "group": "@babel", + "name": "helper-replace-supers", + "version": "7.2.3", + "description": "Helper function to replace supers", + "hashes": [ + { + "alg": "SHA-512", + "content": "74db1689b548e25353e878ae38806bd68cb1a38d07bc85666f03d49b75d9ef0321e24d96c6bc53a99c12ab0fde1265c34bd9e9d1ecb93366f3f6d0663bd73e61" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-replace-supers@7.2.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-export-default-from@7.2.0", + "group": "@babel", + "name": "plugin-proposal-export-default-from", + "version": "7.2.0", + "description": "Compile export default to ES2015", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-export-default-from@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-default-from" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-export-default-from@7.2.0", + "group": "@babel", + "name": "plugin-syntax-export-default-from", + "version": "7.2.0", + "description": "Allow parsing of export default from", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-export-default-from@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-default-from" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-export-namespace-from@7.2.0", + "group": "@babel", + "name": "plugin-proposal-export-namespace-from", + "version": "7.2.0", + "description": "Compile export namespace to ES2015", + "hashes": [ + { + "alg": "SHA-512", + "content": "93536d1f238cbe50c315e6fd1b93e1517b868fc9bfc22c288e041512127f7ec56c302a4bc8e3f8874b861236092ab448f8454f95be4993e1adf4ff7b94e1b0b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-export-namespace-from@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-export-namespace-from" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-syntax-export-namespace-from@7.2.0", + "group": "@babel", + "name": "plugin-syntax-export-namespace-from", + "version": "7.2.0", + "description": "Allow parsing of export namespace from", + "hashes": [ + { + "alg": "SHA-512", + "content": "3177f995a5e8e9cd486c46de8039b318fc06353b07666132e901b39eee528765025afb9ecb06f679ef82084e3342266cb7153d04ca103bd8bacd41526342a3d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-export-namespace-from@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-namespace-from" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-runtime@7.2.0", + "group": "@babel", + "name": "plugin-transform-runtime", + "version": "7.2.0", + "description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals", + "hashes": [ + { + "alg": "SHA-512", + "content": "c12f2e27006deff6ff9b3135de4b6c25d992e093ff8fb3d049a003b676f8236c0bd332b9d4c434a6617cfc9cb4c14212f7a7ebf9f5d3e92fe27e23d79efae54a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-runtime@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/polyfill@7.2.5", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "polyfill", + "version": "7.2.5", + "description": "Provides polyfills necessary for a full ES2015+ environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f4a62d15ea0c4b8ba9456691a678d6b8cf1b701260ace368ac58b3636590c4d18f3255f82ed13d8e00797305b75896a6d6fd85d5be8047a404c433e8280a3f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/polyfill@7.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-polyfill" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js@2.6.2", + "name": "core-js", + "version": "2.6.2", + "description": "Standard library", + "hashes": [ + { + "alg": "SHA-512", + "content": "6623e9f69665831a5646ed0cf9859b9baf9a43ce1711f1f52515ef7ce73f7c82d623454a84b0b62d7d775f5358ab87d42f32ccabb1df878dc24a8dbf6886943c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2019 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js@2.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.12.1", + "author": "Ben Newman", + "name": "regenerator-runtime", + "version": "0.12.1", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f463f249e1586eb3230e77fa36e5ade3754a8dfdb0bce4416c6a82fd3aa9b2fcee1e7c287ec61a7bca3d8410eb23f7be2abcc91c5bc0305332758c1fcc6f10b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-runtime@0.12.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/preset-env@7.3.1", + "author": "Henry Zhu", + "group": "@babel", + "name": "preset-env", + "version": "7.3.1", + "description": "A Babel preset for each environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef9a6dfeaf7970c2075acb18b727e3565bc8f901194138506cabd1f711fe17f020b70fece167dcd95f41c1dfcfdfd56d8b107ba16c46747e06b5e4d3c1825632" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/preset-env@7.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-preset-env" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.3.1", + "group": "@babel", + "name": "plugin-proposal-object-rest-spread", + "version": "7.3.1", + "description": "Compile object rest and spread to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "9030c7439adf948798e7197af4212a184674298dfaf5e86c08811b4c66f8b221c6e4113db206bf4f4af4394c3264d2cc99913bf44d646eca808f01425b876ce9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.2.0", + "group": "@babel", + "name": "plugin-proposal-unicode-property-regex", + "version": "7.2.0", + "description": "Compile Unicode property escapes in Unicode regular expressions to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d814a11bf779ca86725d97d578f1fdd6eacbe704c6e8049953d338a34de528af2ef145b5cb4f0e32db4148e0034dc26b9cf329bc35d11b71bc7f22e1e28becf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-unicode-property-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-regex@7.0.0", + "group": "@babel", + "name": "helper-regex", + "version": "7.0.0", + "description": "Helper function to check for literal RegEx", + "hashes": [ + { + "alg": "SHA-512", + "content": "75a7e276f5648c93f90085a426ca55fbb4468f58de36db34a98be5995cea0066fa066433125749afa64fceb9a5a56fc05b560919dc3b6ebdb28b0be5091a83bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-regex@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpu-core@4.4.0", + "author": "Mathias Bynens", + "name": "regexpu-core", + "version": "4.4.0", + "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a2fa50d196f00494a8c5a7991eaa65546892ea6621f2c1e91786c853eb0554c8339b18f77298d3e1c4199fdfc655b1a5063a7677168b7d633c6fa08df5ca663" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regexpu-core@4.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regexpu" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regexpu-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regexpu-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerate-unicode-properties@7.0.0", + "author": "Mathias Bynens", + "name": "regenerate-unicode-properties", + "version": "7.0.0", + "description": "Regenerate sets for Unicode properties and values.", + "hashes": [ + { + "alg": "SHA-512", + "content": "be7e4353aca0ea1f213ffd8e910a372bbb9520bbd8e22bb4a08e2ddc715af3550f921189c24470335d0911cdeea637611e3b3f93c189635b11061939b2bebd07" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerate-unicode-properties@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regenerate-unicode-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regenerate-unicode-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-value-ecmascript@1.0.2", + "author": "Mathias Bynens", + "name": "unicode-match-property-value-ecmascript", + "version": "1.0.2", + "description": "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed886473461efade0f358cce18a79d0e15db60805ed57110610c4e3f285c5cd309d1608006aaa3e9c93275dea95916531d5e06b823ca74101488c73ad2db0a57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/unicode-match-property-value-ecmascript@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/unicode-match-property-value-ecmascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-async-to-generator@7.2.0", + "group": "@babel", + "name": "plugin-transform-async-to-generator", + "version": "7.2.0", + "description": "Turn async functions into ES2015 generators", + "hashes": [ + { + "alg": "SHA-512", + "content": "011139c192ca9d380f5bbff57ed4264a2d429a4aaa1e8d83366b73b4586f82d3964837ead02abdffd2fe2a764d61236bc9d05e9215b7af04a176e7f9f51a176a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-async-to-generator@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-block-scoping@7.2.0", + "group": "@babel", + "name": "plugin-transform-block-scoping", + "version": "7.2.0", + "description": "Compile ES2015 block scoping (const and let) to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c0c82515752ad41511bb7f1080701b2e13d35b98228e0a441dd552ace486b008386c7b02872d2fdf94c7cf1bb58d335dd0f23c9f665be6e0faff971241a6b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoping@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-classes@7.2.2", + "group": "@babel", + "name": "plugin-transform-classes", + "version": "7.2.2", + "description": "Compile ES2015 classes to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "124450c6cc68cada5394a26648f62bb0e3230882da7008ed49591de200a111eda45e3142ba7df2a21856e48ee995726109e98cd202ac68631c3bcb629ef080e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-classes@7.2.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-define-map@7.1.0", + "group": "@babel", + "name": "helper-define-map", + "version": "7.1.0", + "description": "Helper function to define a map", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4b07d458ec664a71cfdfaf381f0d8fc7c1dab158f7bad2a300bcd51e7f55756c367c8b801483100036096d1738fad6dd74d161a1a9a4b4c469002c3fbd540fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-define-map@7.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-destructuring@7.2.0", + "group": "@babel", + "name": "plugin-transform-destructuring", + "version": "7.2.0", + "description": "Compile ES2015 destructuring to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7954260d75d3cb9194eae17ca64086887d9349c13f58b2390f3a191512ab7a408a5015954cf4896daaa629384909a0dd433f39e6c540f267909366cfd90ae1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-destructuring@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-destructuring" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-dotall-regex@7.2.0", + "group": "@babel", + "name": "plugin-transform-dotall-regex", + "version": "7.2.0", + "description": "Compile regular expressions using the `s` (`dotAll`) flag to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e92de3a6e9f57846c0c6aed37632e8b40b25e16a5023d0f17e4c9c45c2ab8e1418cd4f3baa95dd927a4183f7be4dd70c7a1a869cb162eed9c5501474d95abac2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-dotall-regex@7.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-dotall-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-for-of@7.2.0", + "group": "@babel", + "name": "plugin-transform-for-of", + "version": "7.2.0", + "description": "Compile ES2015 for...of to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c847d34678eeb24598a3493598752aad559a670addabc0186dfae9a942ce24e6ae7064a9e2634c569b3e62d03c6f2a1ebf14bfbabc14ef9bf285023170282205" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-for-of@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-for-of" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-function-name@7.2.0", + "group": "@babel", + "name": "plugin-transform-function-name", + "version": "7.2.0", + "description": "Apply ES2015 function.name semantics to all functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "5af201a113da250e72547cdc9c9168afba12e4bb343d88b1953604eb79428f646d750125d7933af055d09719c6eb076b68921745d47b288fa143babff508eb09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-function-name@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-function-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-modules-commonjs@7.2.0", + "group": "@babel", + "name": "plugin-transform-modules-commonjs", + "version": "7.2.0", + "description": "This plugin transforms ES2015 modules to CommonJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "41fbf664e5a2929be679d5d024349bc4dab2ed7aff8f663cfca7e28ccd222722a4053996baf080d72787d720ccecd261056ff6697c5eb9c2e3ea2f34fcb009fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-commonjs@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-module-transforms@7.2.2", + "author": "Logan Smyth", + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.2.2", + "description": "Babel helper functions for implementing ES6 module transformations", + "hashes": [ + { + "alg": "SHA-512", + "content": "29836a634202c1fbf5f5bdf55f3be623f99f73294ecdb2eda30930fa67ef18f010de47c29cc2d86c40f761e70be6d3ddf2701815014077a247a762f1664fc9d6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-modules-systemjs@7.2.0", + "group": "@babel", + "name": "plugin-transform-modules-systemjs", + "version": "7.2.0", + "description": "This plugin transforms ES2015 modules to SystemJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd8fd54886dbaada11a092a8d9c0d37b02f7eb88d29591af9f42ca39ff67b5b7f13af8df9b2addb4410e01db303acc216446fc507de30e408a1ddd6c3e0b12d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-systemjs@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-hoist-variables@7.0.0", + "group": "@babel", + "name": "helper-hoist-variables", + "version": "7.0.0", + "description": "Helper function to hoist variables", + "hashes": [ + { + "alg": "SHA-512", + "content": "5252503e416a1542c87325b9b1bce06e4c67d852918305a245ec5cb9a47c44d251cbcf8b2ef7aa3e3c1957f6f0acb6423747941c3ff1f03d2178ad68ceea28e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-hoist-variables@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.3.0", + "group": "@babel", + "name": "plugin-transform-named-capturing-groups-regex", + "version": "7.3.0", + "description": "Compile regular expressions using named groups to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "52610e185f1781a22a0fbe1b0bc83b895dd1623f2531fd01c3b349cef9d2f6a4213389a0fb55872a8b5421d8f1803d911ab8052d964f0853c58f73ff9150d886" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-named-capturing-groups-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexp-tree@0.1.0", + "author": "Dmitry Soshnikov", + "name": "regexp-tree", + "version": "0.1.0", + "description": "Regular Expressions parser in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3668456e2e1be75495bab3f88f80418ae91fbfc6781dda3350fb1cb86d73432b164a247ea3a4f1d8ea455e56fd4878b08782cc118fe2a5dc42da0e31ba5758b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Dmitry Soshnikov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regexp-tree@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DmitrySoshnikov/regexp-tree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DmitrySoshnikov/regexp-tree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DmitrySoshnikov/regexp-tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-table3@0.5.1", + "author": "James Talmage", + "name": "cli-table3", + "version": "0.5.1", + "description": "Pretty unicode tables for the command line. Based on the original cli-table.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014 James Talmage \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-table3@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cli-table/cli-table3" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cli-table/cli-table3/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cli-table/cli-table3.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colors@1.3.3", + "author": "Marak Squires", + "name": "colors", + "version": "1.3.3", + "description": "get colors in your node.js console", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e3b2e530a43798f7cfb2cfde7d3a550aea6ee62c133ed4c106e6869e9dfb909cd9eb424d56bed72f16037714d0cfddfd8d999db5d6dd263447d210dd61d1e22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nOriginal Library\n - Copyright (c) Marak Squires\n\nAdditional Functionality\n - Copyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/colors@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Marak/colors.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Marak/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Marak/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@10.1.2", + "name": "yargs", + "version": "10.1.2", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@10.1.2", + "externalReferences": [ + { + "type": "website", + "url": "http://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@8.1.0", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "8.1.0", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@8.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-new-target@7.0.0", + "group": "@babel", + "name": "plugin-transform-new-target", + "version": "7.0.0", + "description": "Transforms new.target meta property", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e3c0503ff48bb767ebeb027fbca415067238712a0b92325b05a9e08a6e16fd04057be7abf492bcd52b4e024438bfe1aaa693c06c1dbe1afe015c680e63a1747" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-new-target@7.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-new-target" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-parameters@7.2.0", + "group": "@babel", + "name": "plugin-transform-parameters", + "version": "7.2.0", + "description": "Compile ES2015 default and rest parameters to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8af7db1375f64acf858fc9e75ef2894bab23446e20cf03ccb0ffad6990be6731068c0625bc4362c66b75b19e426bab5696cf8194a48628f27a38e5ef5c26e416" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-parameters@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-parameters" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-call-delegate@7.1.0", + "group": "@babel", + "name": "helper-call-delegate", + "version": "7.1.0", + "description": "Helper function to call delegate", + "hashes": [ + { + "alg": "SHA-512", + "content": "471f5346608210fd2959abbd81f47ab9b71b6d7de755ce0898d635e377ed0bbd23aca752bf9ad2db4cb3d9c9828a50f385ec701994373c5c0e2ca7b70bfe5a12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-call-delegate@7.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-regenerator@7.0.0", + "author": "Ben Newman", + "group": "@babel", + "name": "plugin-transform-regenerator", + "version": "7.0.0", + "description": "Explode async and generator functions into a state machine.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a68a91236faa89275e95d733e304d24d7051af2a2adc673bd327bb9bb503e56c349c4dbd217a8c97aafb35dd7958181177be2f96810c95286d1fa08ac55cdf99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-regenerator@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-transform@0.13.3", + "author": "Ben Newman", + "name": "regenerator-transform", + "version": "0.13.3", + "description": "Explode async and generator functions into a state machine.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c97a96ef0dbb8ad718088276aeed8f7473068098efcb08b308da63ef697ab685e18c4776965b9fc142f62b849f238264235dec17bc18f37ea29c54e9a18d9e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-transform@0.13.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-template-literals@7.2.0", + "group": "@babel", + "name": "plugin-transform-template-literals", + "version": "7.2.0", + "description": "Compile ES2015 template literals to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bc70e59f4fcda04dece960e8956861eb09b8651e02a142df171f9112e3a3f65d6997f76ca2b28672c1fe649bbe70bf9b187170d408b32633138b0adb610e030" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-template-literals@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-template-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/plugin-transform-unicode-regex@7.2.0", + "group": "@babel", + "name": "plugin-transform-unicode-regex", + "version": "7.2.0", + "description": "Compile ES2015 Unicode regex to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "804ec0e8bb7b60b9cd38bdcf6fd04d799be2f9df25eed711ac6e3ea702632bd843db15f8984be39505bad06f441267d755844fbfd55141cc9e8085470aa97f00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-unicode-regex@7.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserslist@4.3.7", + "author": "Andrey Sitnik", + "name": "browserslist", + "version": "4.3.7", + "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8725b9431366d7551633b837adbffc00787389c8ef7bfbdc310b571d0adcb380db92a333b24428a22da091d5fef500deba9507555418a95a6eb757e6bb6cf3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserslist@4.3.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserslist/browserslist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserslist/browserslist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/browserslist/browserslist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caniuse-lite@1.0.30000926", + "author": "Ben Briggs", + "name": "caniuse-lite", + "version": "1.0.30000926", + "description": "A smaller version of caniuse-db, with only the essentials!", + "hashes": [ + { + "alg": "SHA-512", + "content": "a49600ac61eb3e9dd352a4331584663ff9702658fc4426d57b719ddde25090057c4800ba6f5f574bd06332f45dbda4bc44c91a4cdf198681cfe92d72f33cf011" + } + ], + "licenses": [ + { + "license": { + "id": "CC-BY-4.0", + "text": { + "content": "Attribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More_considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n" + } + } + } + ], + "purl": "pkg:npm/caniuse-lite@1.0.30000926", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/caniuse-lite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/caniuse-lite/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/caniuse-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/electron-to-chromium@1.3.96", + "author": "Kilian Valkhof", + "name": "electron-to-chromium", + "version": "1.3.96", + "description": "Provides a list of electron-to-chromium version mappings", + "hashes": [ + { + "alg": "SHA-512", + "content": "87e15a76dd6021a434e896888b2a8fb018c9d3c7d5e50ee677e57c6d4bd05bff4ebd77cbd8b448093cf611c9e708fed0ceb1534baff6ecc455e8197d627f7bcc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2018 Kilian Valkhof\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/electron-to-chromium@1.3.96", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kilian/electron-to-chromium#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kilian/electron-to-chromium/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kilian/electron-to-chromium.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-releases@1.1.3", + "author": "Sergey Rubanov", + "name": "node-releases", + "version": "1.1.3", + "description": "Node.js releases data", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e25579cdb859b9fa26242c135eab9db5d61bcedfccbadd3d22d8a2a1d8a9d4b37469cc9f89b4e0c58e40fcca32f09c3913605d5e29785e53076cb11f8d45976" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-releases@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chicoxyzzy/node-releases#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chicoxyzzy/node-releases/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chicoxyzzy/node-releases.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/runtime@7.3.1", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "runtime", + "version": "7.3.1", + "description": "babel's modular runtime helpers", + "hashes": [ + { + "alg": "SHA-512", + "content": "964a970dcbe5153e6bbc48e2bbaf9060efb5197ac41d1a362ceb52ec4e06b57e4448864e81ea6ab19055223e8fbfe6baceab326bd5428222b52802b806f24303" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/runtime@7.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/a11y@2.0.2", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "a11y", + "version": "2.0.2", + "description": "Accessibility (a11y) utilities for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/a11y@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/a11y/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/dom-ready@2.0.2", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "dom-ready", + "version": "2.0.2", + "description": "Execute callback after the DOM is loaded.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/dom-ready@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/dom-ready/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/api-fetch@2.2.8", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "api-fetch", + "version": "2.2.8", + "description": "Utility to make WordPress REST API requests.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/api-fetch@2.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/api-fetch/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/hooks@2.0.5", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "hooks", + "version": "2.0.5", + "description": "WordPress hooks library.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/hooks@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/hooks/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/i18n@3.1.1", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "i18n", + "version": "3.1.1", + "description": "WordPress internationalization (i18n) library.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/i18n@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/i18n/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gettext-parser@1.4.0", + "author": "Andris Reinman", + "name": "gettext-parser", + "version": "1.4.0", + "description": "Parse and compile gettext po and mo files to/from json, nothing more, nothing less", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2015 Andris Reinman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gettext-parser@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/smhg/gettext-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/smhg/gettext-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/smhg/gettext-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/encoding@0.1.12", + "author": "Andris Reinman", + "name": "encoding", + "version": "0.1.12", + "description": "Convert encodings, uses iconv by default and fallbacks to iconv-lite if needed", + "hashes": [ + { + "alg": "SHA-512", + "content": "11305aba8c354f7e58fd664c922a3d8e2334679c631c7989e179a364eab597f757cf796bdac467f3b9c9cb6d11ba9a928751769b71c73d2a7c4a120f409ac9dc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012-2014 Andris Reinman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/encoding@0.1.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/andris9/encoding#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/andris9/encoding/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/andris9/encoding.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/memize@1.0.5", + "author": "Andrew Duthie", + "name": "memize", + "version": "1.0.5", + "description": "Unabashedly-barebones memoization library with an aim toward speed", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/memize@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/memize#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/memize/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/memize.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tannin@1.0.2", + "author": "Andrew Duthie", + "name": "tannin", + "version": "1.0.2", + "description": "gettext localization library compatible with Jed-formatted locale data", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tannin@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/tannin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/tannin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/tannin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40tannin/plural-forms@1.0.2", + "author": "Andrew Duthie", + "group": "@tannin", + "name": "plural-forms", + "version": "1.0.2", + "description": "Compiles a function to compute the plural forms index for a given value", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40tannin/plural-forms@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/tannin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/tannin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/tannin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40tannin/compile@1.0.2", + "author": "Andrew Duthie", + "group": "@tannin", + "name": "compile", + "version": "1.0.2", + "description": "Compiles an evaluating function for a C expression", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40tannin/compile@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/tannin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/tannin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/tannin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40tannin/evaluate@1.1.0", + "author": "Andrew Duthie", + "group": "@tannin", + "name": "evaluate", + "version": "1.1.0", + "description": "Evaluates the result of an expression given as postfix terms", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40tannin/evaluate@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/tannin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/tannin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/tannin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40tannin/postfix@1.0.1", + "author": "Andrew Duthie", + "group": "@tannin", + "name": "postfix", + "version": "1.0.1", + "description": "Convert a C expression to an array of postfix terms", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40tannin/postfix@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/tannin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/tannin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/tannin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/url@2.3.3", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "url", + "version": "2.3.3", + "description": "WordPress URL utilities.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/url@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/url/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.6.0", + "name": "qs", + "version": "6.6.0", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014 Nathan LaFreniere and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/babel-plugin-import-jsx-pragma@1.1.3", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "babel-plugin-import-jsx-pragma", + "version": "1.1.3", + "description": "Babel transform plugin for automatically injecting an import to be used as the pragma for the React JSX Transform plugin.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/babel-plugin-import-jsx-pragma@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/babel-plugin-import-jsx-pragma/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/blob@2.1.0", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "blob", + "version": "2.1.0", + "description": "Blob utilities for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/blob@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/blob/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/block-library@2.2.15", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "block-library", + "version": "2.2.15", + "description": "Block library for the WordPress editor.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/block-library@2.2.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/block-library/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/autop@2.0.2", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "autop", + "version": "2.0.2", + "description": "WordPress's automatic paragraph functions `autop` and `removep`.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/autop@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/autop/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/blocks@6.0.6", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "blocks", + "version": "6.0.6", + "description": "Block API for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/blocks@6.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/blocks/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/block-serialization-default-parser@2.0.4", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "block-serialization-default-parser", + "version": "2.0.4", + "description": "Block serialization specification parser for WordPress posts.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/block-serialization-default-parser@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/block-serialization-default-parser/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/block-serialization-spec-parser@2.0.3", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "block-serialization-spec-parser", + "version": "2.0.3", + "description": "Block serialization specification parser for WordPress posts.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/block-serialization-spec-parser@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/block-serialization-spec-parser/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/data@4.2.1", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "data", + "version": "4.2.1", + "description": "Data module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/data@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/data/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/compose@3.0.1", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "compose", + "version": "3.0.1", + "description": "WordPress higher-order components (HOCs).", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/compose@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/compose/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/element@2.1.9", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "element", + "version": "2.1.9", + "description": "Element React module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/element@2.1.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/element/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/escape-html@1.0.1", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "escape-html", + "version": "1.0.1", + "description": "Escape HTML utils.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/escape-html@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/escape-html/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react@16.6.3", + "name": "react", + "version": "16.6.3", + "description": "React is a JavaScript library for building user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d17d822260e424602988095c7f43832889de4b004f86a25ac0e6b9c02b4a6eeed9102ae64b6e8dbed4882f29d0eba720913fd12782e274939cddb5044b0994f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react@16.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.6.2", + "name": "prop-types", + "version": "15.6.2", + "description": "Runtime type checking for React props and similar objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a23f3b0a064809dba5528868815011ec08e50b4df6ed4e1e9782fa780bcea827ae74c0d553435384d695f9bf437f87578123f58173139cf7617deff6a831f972" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prop-types@15.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.io/react/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/prop-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/prop-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/scheduler@0.11.3", + "name": "scheduler", + "version": "0.11.3", + "description": "Cooperative scheduler for the browser environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ffcf04564584948f4ff783fa2d28344f321eaabf649831636af392046bc899c80bfca1df730d8a464a7a4112336070c36ae9271bbb929f20fc4d17bd91ff610" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/scheduler@0.11.3", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-dom@16.6.3", + "name": "react-dom", + "version": "16.6.3", + "description": "React package for working with the DOM.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6009e4170cba08a8c82a0f720ed8087d6e77f4c3d933870379ab81469c767aee1066f7278fcc1e4924021009cf31de9167365c05ab8462759820340024cd65b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-dom@16.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/is-shallow-equal@1.1.5", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "is-shallow-equal", + "version": "1.1.5", + "description": "Test for shallow equality between two objects or arrays.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/is-shallow-equal@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/is-shallow-equal/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/redux-routine@3.0.4", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "redux-routine", + "version": "3.0.4", + "description": "Redux middleware for generator coroutines.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/redux-routine@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/redux-routine/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rungen@0.3.2", + "author": "Riad Benguella", + "name": "rungen", + "version": "0.3.2", + "description": "A generator runtime creator", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2016 Riad Benguella\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/rungen@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/youknowriad/rungen#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/youknowriad/rungen/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/youknowriad/rungen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/equivalent-key-map@0.2.2", + "author": "Andrew Duthie", + "name": "equivalent-key-map", + "version": "0.2.2", + "description": "A Map variant which allows for equivalent (deeply equal) object and array keys", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/equivalent-key-map@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/equivalent-key-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/equivalent-key-map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/equivalent-key-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux@4.0.1", + "name": "redux", + "version": "4.0.1", + "description": "Predictable state container for JavaScript apps", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1206670a288b88478304dbdfc078d5279792fe86f06aece6895b36a9b53409027b5a3efc4826a7e78db684882cf3688cfe5e65482dfa8033739bd1a5cb3df8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://redux.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/symbol-observable@1.2.0", + "author": "Ben Lesh", + "name": "symbol-observable", + "version": "1.2.0", + "description": "Symbol.observable ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bdd349ccf1146d1a1955dfa286114f64eb92b798f6f5595ef439d8dfc651b6100b8cd67a22fc4fc1696fee3212fb6cf12cb0af10579eef3777ac8b18d4bdc5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\nCopyright (c) Ben Lesh \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/symbol-observable@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blesh/symbol-observable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blesh/symbol-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/blesh/symbol-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/turbo-combine-reducers@1.0.2", + "author": "Andrew Duthie", + "name": "turbo-combine-reducers", + "version": "1.0.2", + "description": "Speed-optimized drop-in replacement for Redux's combineReducers", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/turbo-combine-reducers@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/turbo-combine-reducers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/turbo-combine-reducers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/turbo-combine-reducers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/dom@2.0.8", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "dom", + "version": "2.0.8", + "description": "DOM utilities module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/dom@2.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/dom/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/html-entities@2.0.4", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "html-entities", + "version": "2.0.4", + "description": "HTML entity utilities for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/html-entities@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/html-entities/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/shortcode@2.0.2", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "shortcode", + "version": "2.0.2", + "description": "Shortcode module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/shortcode@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/shortcode/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hpq@1.3.0", + "author": "Andrew Duthie", + "name": "hpq", + "version": "1.3.0", + "description": "Utility to parse and query HTML into an object shape", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/hpq@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/hpq" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/hpq/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/hpq.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rememo@3.0.0", + "author": "Andrew Duthie", + "name": "rememo", + "version": "3.0.0", + "description": "Memoized selectors for Redux and other immutable object derivation", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "[The MIT License (MIT)](https://opensource.org/licenses/MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rememo@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/rememo#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/rememo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/rememo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/showdown@1.9.0", + "author": "Estevão Santos", + "name": "showdown", + "version": "1.9.0", + "description": "A Markdown to HTML converter written in Javascript", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/txt", + "content": "Showdown Copyright (c) 2007, John Fraser\n\nAll rights reserved.\n\nOriginal Markdown copyright (c) 2004, John Gruber\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are\nmet:\n\n* Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n* Neither the name \"Markdown\" nor the names of its contributors may\n be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nThis software is provided by the copyright holders and contributors \"as\nis\" and any express or implied warranties, including, but not limited\nto, the implied warranties of merchantability and fitness for a\nparticular purpose are disclaimed. In no event shall the copyright owner\nor contributors be liable for any direct, indirect, incidental, special,\nexemplary, or consequential damages (including, but not limited to,\nprocurement of substitute goods or services; loss of use, data, or\nprofits; or business interruption) however caused and on any theory of\nliability, whether in contract, strict liability, or tort (including\nnegligence or otherwise) arising in any way out of the use of this\nsoftware, even if advised of the possibility of such damage.\n" + } + } + } + ], + "purl": "pkg:npm/showdown@1.9.0", + "externalReferences": [ + { + "type": "website", + "url": "http://showdownjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/showdownjs/showdown/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/showdownjs/showdown.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/simple-html-tokenizer@0.4.3", + "name": "simple-html-tokenizer", + "version": "0.4.3", + "description": "Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b65842bf6771e84856d8abcb48ee78b778ea3f3677923d1a0fa5c33b59d2e314e02b16ec9712302809d382dc380c7d1cb3899435842351e26acd75612f0f4a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Yehuda Katz and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/simple-html-tokenizer@0.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tildeio/simple-html-tokenizer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tildeio/simple-html-tokenizer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tildeio/simple-html-tokenizer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tinycolor2@1.4.1", + "author": "Brian Grinstead", + "name": "tinycolor2", + "version": "1.4.1", + "description": "Fast Color Parsing and Manipulation", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc985c7193ecf7ae6c57f2f6b14e28450540a2cd29417c2cbd32e459876a27e6bc43990f173253b8e170cbb52788f962e3834a406020964b23bce729a3de5a64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c), Brian Grinstead, http://briangrinstead.com\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/tinycolor2@1.4.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://bgrins.github.com/TinyColor" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/components@7.0.8", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "components", + "version": "7.0.8", + "description": "UI components for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/components@7.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/components/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/keycodes@2.0.6", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "keycodes", + "version": "2.0.6", + "description": "Keycodes utilities for WordPress. Used to check for keyboard events across browsers/operating systems.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/keycodes@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/keycodes/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/rich-text@3.0.7", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "rich-text", + "version": "3.0.7", + "description": "Rich text value and manipulation API.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/rich-text@3.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/rich-text/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/classnames@2.2.6", + "author": "Jed Watson", + "name": "classnames", + "version": "2.2.6", + "description": "A simple utility for conditionally joining classNames together", + "hashes": [ + { + "alg": "SHA-512", + "content": "251fe2490392b7e2d0216c2bc04cc9f6e934c5f377993558330b7522be6651c48dea953e578cd0145689b1c9496cfb805101fec9f59e7fab66ee5d6ab96dc2f1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Jed Watson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/classnames@2.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JedWatson/classnames#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JedWatson/classnames/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JedWatson/classnames.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clipboard@2.0.4", + "name": "clipboard", + "version": "2.0.4", + "description": "Modern copy to clipboard. No Flash. Just 2kb", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/clipboard@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenorocha/clipboard.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zenorocha/clipboard.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zenorocha/clipboard.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/good-listener@1.2.2", + "name": "good-listener", + "version": "1.2.2", + "description": "A more versatile way of adding & removing event listeners", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/good-listener@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenorocha/good-listener#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zenorocha/good-listener/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zenorocha/good-listener.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/delegate@3.2.0", + "name": "delegate", + "version": "3.2.0", + "description": "Lightweight event delegation", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/delegate@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenorocha/delegate#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zenorocha/delegate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zenorocha/delegate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/select@1.1.2", + "name": "select", + "version": "1.1.2", + "description": "Programmatically select the text of a HTML element", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/select@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenorocha/select#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zenorocha/select/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zenorocha/select.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tiny-emitter@2.0.2", + "author": "Scott Corgan", + "name": "tiny-emitter", + "version": "2.0.2", + "description": "A tiny (less than 1k) event emitter library", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Scott Corgan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/tiny-emitter@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/scottcorgan/tiny-emitter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/scottcorgan/tiny-emitter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/scottcorgan/tiny-emitter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-scroll-into-view@1.2.1", + "author": "yiminghe@gmail.com", + "name": "dom-scroll-into-view", + "version": "1.2.1", + "description": "scroll dom node into view automatically", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f03558371893a9ad60cef9084b2f567d30c8167bf28014bc5558ace3453c4d48f9fcfcb2c321f9ae1bbd581f39d70aa6aa4e3bc724360ed4c100817e9708d6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/dom-scroll-into-view@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/yiminghe/dom-scroll-into-view" + }, + { + "type": "issue-tracker", + "url": "http://github.com/yiminghe/dom-scroll-into-view/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yiminghe/dom-scroll-into-view.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/moment@2.24.0", + "author": "Iskren Ivov Chernev", + "name": "moment", + "version": "2.24.0", + "description": "Parse, validate, manipulate, and display dates", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4b0bd48ec6349cd8717abced82cae4c3362bc4768cf622fc892468fa5fc0c9d1e1727eccc4d1088477e897981bd43f7587c528c51ffbc8b00d04374d1c82bf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/moment@2.24.0", + "externalReferences": [ + { + "type": "website", + "url": "http://momentjs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/moment/moment/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/moment/moment.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mousetrap@1.6.2", + "author": "Craig Campbell", + "name": "mousetrap", + "version": "1.6.2", + "description": "Simple library for handling keyboard shortcuts", + "licenses": [ + { + "license": { + "name": "Apache-2.0 WITH LLVM-exception", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\n--- Exceptions to the Apache 2.0 License ----\n\nAs an exception, if, as a result of your compiling your source code, portions\nof this Software are embedded into an Object form of such source code, you\nmay redistribute such embedded portions in such Object form without complying\nwith the conditions of Sections 4(a), 4(b) and 4(d) of the License.\n\nIn addition, if you combine or link compiled forms of this Software with\nsoftware that is licensed under the GPLv2 (\"Combined Software\") and if a\ncourt of competent jurisdiction determines that the patent provision (Section\n3), the indemnity provision (Section 9) or other Section of the License\nconflicts with the conditions of the GPLv2, you may retroactively and\nprospectively choose to deem waived or otherwise exclude such Section(s) of\nthe License, but only in their entirety and only with respect to the Combined\nSoftware.\n" + } + } + } + ], + "purl": "pkg:npm/mousetrap@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ccampbell/mousetrap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ccampbell/mousetrap/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ccampbell/mousetrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/re-resizable@4.11.0", + "author": "bokuweb", + "name": "re-resizable", + "version": "4.11.0", + "description": "Resizable component for React.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 @bokuweb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/re-resizable@4.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bokuweb/react-resizable-box" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bokuweb/react-resizable-box/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bokuweb/react-resizable-box.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-click-outside@3.0.1", + "author": "Kenneth Chung", + "name": "react-click-outside", + "version": "3.0.1", + "description": "A component wrapper that provides click outside detection.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Kenneth Chung\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-click-outside@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kentor/react-click-outside" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kentor/react-click-outside/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kentor/react-click-outside.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hoist-non-react-statics@2.5.5", + "author": "Michael Ridgway", + "name": "hoist-non-react-statics", + "version": "2.5.5", + "description": "Copies non-react specific statics from a child component to a parent component", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe01a2bf18bc24f296366fd6d234a6cdc30fa5fa4f2dcddd63fe86c615f6850f621a3dda0df925578113ecd8caa528a72e9279bda7daf62886204660d7449f07" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Software License Agreement (BSD License)\n========================================\n\nCopyright (c) 2015, Yahoo! Inc. All rights reserved.\n----------------------------------------------------\n\nRedistribution and use of this software in source and binary forms, with or\nwithout modification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission of Yahoo! Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/hoist-non-react-statics@2.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mridgway/hoist-non-react-statics#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mridgway/hoist-non-react-statics/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-dates@17.2.0", + "author": "Maja Wichrowska", + "name": "react-dates", + "version": "17.2.0", + "description": "A responsive and accessible date range picker component built with React", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-dates@17.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/react-dates#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/react-dates/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/react-dates.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/airbnb-prop-types@2.11.0", + "author": "Jordan Harband", + "name": "airbnb-prop-types", + "version": "2.11.0", + "description": "Custom React PropType validators that we use at Airbnb.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed61ce16894fffa712f7a3e128daec9422cc60023cc81d4fa7abba5e6c68cd03a265bb08e72720959af970784115fb91710423cc2322b61e593d97588890b152" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/airbnb-prop-types@2.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/prop-types#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/prop-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/prop-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array.prototype.find@2.0.4", + "author": "Paul Miller", + "name": "array.prototype.find", + "version": "2.0.4", + "description": "Array.prototype.find ES6 polyfill.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b27e34aa65222d801c45bff51ec2108d34d9d640b2f0823c56d649a4c9f60287a7f6dc142e16d65e2b1f8771e2986a8c947194ba5d3f4df2829d7838d8bb8fa5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/array.prototype.find@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/Array.prototype.find#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/Array.prototype.find/issues" + }, + { + "type": "vcs", + "url": "git://github.com/paulmillr/Array.prototype.find.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.12.0", + "author": "Jordan Harband", + "name": "es-abstract", + "version": "1.12.0", + "description": "ECMAScript spec abstract operations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5849b6a0185fa08dac22678ce0e176cc4d95dc161d485f8a9d28bd4a2773e757d01ddefe26e17c5e0723f7fd28f8e59e21e212fcc8ae36796bb90ac97f5e8640" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/es-abstract@1.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/es-abstract#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/es-abstract/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/es-abstract.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/function.prototype.name@1.1.0", + "author": "Jordan Harband", + "name": "function.prototype.name", + "version": "1.1.0", + "description": "An ES6 spec-compliant `Function.prototype.name` shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8dee6fc1cd52909c2505fe25bc8d879aebbbfefb6bbb9b952010d6c746d74355c94e50ff8530f94235d9a4d21ff2b06ca8dad6af309103a8902425d45ad6f30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/function.prototype.name@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/function.prototype.name#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/function.prototype.name/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/function.prototype.name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-is@1.0.1", + "author": "Jordan Harband", + "name": "object-is", + "version": "1.0.1", + "description": "ES6-compliant shim for Object.is - differentiates between -0 and +0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddcc83b321e0b668bb23b0df4922362c3a7a48ada5c2fb5b834a744757b446f4ea17971e1b1f8ad9d7d28e6d5b283315085103010bf2fa8f1ce9aed5ba339d77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-is@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/object-is" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/object-is/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/object-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.entries@1.1.0", + "author": "Jordan Harband", + "name": "object.entries", + "version": "1.1.0", + "description": "ES2017 spec-compliant Object.entries shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f2c668d4a198207783abad4d56eba14c0c6e82baa271b05bf299ec97239d7ebd02cdebbcd87d9b1ea6d4607bbd3790a41da38b9c72000a79b5c57110b3938fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/object.entries@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Object.entries#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Object.entries/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Object.entries.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prop-types-exact@1.2.0", + "author": "Jordan Harband", + "name": "prop-types-exact", + "version": "1.2.0", + "description": "For use with React PropTypes. Will error on any prop not explicitly specified.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2be4e4dca77d574a1d89714ff5fc031d4611caf2b736e9f7195c8f6a9488b393819084c09b5e56d023c50ff60a4e431401b7346fd094c11429db26e2048abe78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prop-types-exact@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/prop-types-exact#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/prop-types-exact/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/prop-types-exact.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/reflect.ownkeys@0.2.0", + "author": "Glen Mailer", + "name": "reflect.ownkeys", + "version": "0.2.0", + "description": "Polyfill for ES6's Reflect.ownKeys", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8e2ec04a1c2a5238528ad4d50e0860b95727ae7c1ea512c15ef7600bd9b84826c69c652d6a76839949b3e4dcc60ab93d9c1654439ee94a5eeb84948acc8c652" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Glen Mailer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/reflect.ownkeys@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/glenjamin/Reflect.ownKeys" + }, + { + "type": "issue-tracker", + "url": "https://github.com/glenjamin/Reflect.ownKeys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/glenjamin/Reflect.ownKeys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/consolidated-events@2.0.2", + "author": "Joe Lencioni", + "name": "consolidated-events", + "version": "2.0.2", + "description": "Manage multiple event handlers using few event listeners", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Joe Lencioni\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/consolidated-events@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lencioni/consolidated-events#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lencioni/consolidated-events/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lencioni/consolidated-events.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-touch-device@1.0.1", + "author": "Jordan Harband", + "name": "is-touch-device", + "version": "1.0.1", + "description": "Is the current JS environment a touch device?", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-touch-device@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/is-touch-device#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/is-touch-device/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/is-touch-device.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.values@1.1.0", + "author": "Jordan Harband", + "name": "object.values", + "version": "1.1.0", + "description": "ES2017 spec-compliant Object.values shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4146515b48a54373e73e96cdb6074d5753c36c4a8b22248507797e1271ad050ffc4944cb8f53d9c2d40700166d2e0c292594d2661b862ce1a4e7b0ebc7622f62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/object.values@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Object.values#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Object.values/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Object.values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-addons-shallow-compare@15.6.2", + "name": "react-addons-shallow-compare", + "version": "15.6.2", + "description": ">**Note:** >This is a legacy React addon, and is no longer maintained. > >We don't encourage using it in new code, but it exists for backwards compatibility. >The recommended migration path is to use [`React.PureComponent`](https://facebook.github.io/react/docs/react-api.html#react.purecomponent) instead.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-addons-shallow-compare@15.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/react#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fbjs@0.8.17", + "name": "fbjs", + "version": "0.8.17", + "description": "A collection of utility libraries used by other Facebook JS projects", + "hashes": [ + { + "alg": "SHA-512", + "content": "11069614af9f10f4a889b8cdcbc23152d68538c5dc5ac63425a56b428651f730bc3766207fd8832133d68d44d521ac7de5be88ef8d8914ba804877ec6a0fef28" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fbjs@0.8.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/fbjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/fbjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/fbjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isomorphic-fetch@2.2.1", + "author": "Matt Andrews", + "name": "isomorphic-fetch", + "version": "2.2.1", + "description": "Isomorphic WHATWG Fetch API, for Node & Browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5ce133402985cce4f47255cc1466b1775b4f6743eb0eefe8f2760b386465bd761b0b1b654e948489001a266dd42a4115c2c2e606dec615fe9b867f9ae9d2a98" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Matt Andrews\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/isomorphic-fetch@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/matthew-andrews/isomorphic-fetch/issues" + }, + { + "type": "issue-tracker", + "url": "https://github.com/matthew-andrews/isomorphic-fetch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/matthew-andrews/isomorphic-fetch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-fetch@1.7.3", + "author": "David Frank", + "name": "node-fetch", + "version": "1.7.3", + "description": "A light-weight module that brings window.fetch to node.js and io.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "3616780ac2b1edc626daf4ab040af63ef14e7bab160dfd1460b46a03ab2f51883bfbf4d27d502ee3d8d80b806f4384a6b3d49981da86060ae8a9f0e125d4f229" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 David Frank\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/node-fetch@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bitinn/node-fetch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bitinn/node-fetch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bitinn/node-fetch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/whatwg-fetch@3.0.0", + "name": "whatwg-fetch", + "version": "3.0.0", + "description": "A window.fetch polyfill.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c995e9f415cb94ff410c2eb75b27bcce9d6e884d92eb64c21aacc51599d2adb06bd99daf2fc4a61a7b120258f7d9f2ac1ff5fccdabe504219ae749a029b7a44" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2016 GitHub, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/whatwg-fetch@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/github/fetch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/github/fetch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/github/fetch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/promise@7.3.1", + "author": "ForbesLindesay", + "name": "promise", + "version": "7.3.1", + "description": "Bare bones Promises/A+ implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e89505d9ff82fe6cffd41a591f688ba35fd04ac46c2643d393e263ade72bf2f222b5877c2a4c42428a3cc600d4c20a5f675a3638d63bb2027d8add0d612cb4e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/promise@7.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/then/promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/then/promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/then/promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/asap@2.0.6", + "name": "asap", + "version": "2.0.6", + "description": "High-priority task queue for Node.js and browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "0521d680348088ab39d28d917bca69be9dec7951d7491338e1c752b13f457cd1145192ce196542b2259a44f58cd599e7fa6a99d4e7d5677cf70d61334a9ee144" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "\nCopyright 2009–2014 Contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/asap@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriskowal/asap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kriskowal/asap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kriskowal/asap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ua-parser-js@0.7.19", + "author": "Faisal Salman", + "name": "ua-parser-js", + "version": "0.7.19", + "description": "Lightweight JavaScript-based user-agent string parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8b2bf5def44daece6608dea2de3a6234b443adf93041432508021e1a020534e45558cde66b2947640197c13551916875605744c391d1278094b0fd2c9072191" + } + ], + "licenses": [ + { + "license": { + "name": "(GPL-2.0 OR MIT)", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2012-2018 Faisal Salman <>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ua-parser-js@0.7.19", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/faisalman/ua-parser-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faisalman/ua-parser-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/faisalman/ua-parser-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-moment-proptypes@1.6.0", + "author": "Caleb Morris", + "name": "react-moment-proptypes", + "version": "1.6.0", + "description": "React proptype for moment module", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/react-moment-proptypes@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/CalebMorris/react-moment-proptypes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/CalebMorris/react-moment-proptypes/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/CalebMorris/react-moment-proptypes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-outside-click-handler@1.2.2", + "author": "Maja Wichrowska", + "name": "react-outside-click-handler", + "version": "1.2.2", + "description": "A React component for dealing with clicks outside its subtree", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-outside-click-handler@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/react-outside-click-handler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/react-outside-click-handler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/react-outside-click-handler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-portal@4.2.0", + "author": "Vojtech Miksu", + "name": "react-portal", + "version": "4.2.0", + "description": "To make your life with React Portals easier.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-present, Vojtech Miksu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-portal@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tajo/react-portal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tajo/react-portal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tajo/react-portal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-with-styles@3.2.1", + "author": "Joe Lencioni", + "name": "react-with-styles", + "version": "3.2.1", + "description": "[![Build Status][travis-svg]][travis-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url]", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-with-styles@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/react-with-styles#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/react-with-styles/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/react-with-styles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deepmerge@1.5.2", + "author": "Nick Fisher", + "name": "deepmerge", + "version": "1.5.2", + "description": "A library for deep (recursive) merging of Javascript objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "149dd4808e20225f8f1d99b9de49ecb9216913e9c448cafb338bfd41c801ed2eb72a3ffa5aa322150269041633d4fb7eeba6d9a4fdd0ecbc9ed0ea3d30f28476" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2012 Nicholas Fisher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deepmerge@1.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/KyleAMathews/deepmerge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/KyleAMathews/deepmerge/issues" + }, + { + "type": "vcs", + "url": "git://github.com/KyleAMathews/deepmerge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-with-direction@1.3.0", + "author": "Yaniv Zimet", + "name": "react-with-direction", + "version": "1.3.0", + "description": "Components to provide and consume RTL or LTR direction in React", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Airbnb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-with-direction@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/react-with-direction#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/react-with-direction/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/react-with-direction.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/brcast@2.0.2", + "name": "brcast", + "version": "2.0.2", + "description": "Tiny data broadcaster with 0 dependencies", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017-present Alessandro Arnodo\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/brcast@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vesparny/brcast" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vesparny/brcast/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vesparny/brcast.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/direction@1.0.2", + "author": "Titus Wormer", + "name": "direction", + "version": "1.0.2", + "description": "Detect directionality: left-to-right, right-to-left, or neutral", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Titus Wormer \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/direction@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wooorm/direction#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wooorm/direction/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wooorm/direction.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-with-styles-interface-css@4.0.3", + "author": "Felipe Vargas", + "name": "react-with-styles-interface-css", + "version": "4.0.3", + "description": "Interface for react-with-styles outputting CSS", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/react-with-styles-interface-css@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/react-with-styles-interface-css#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/react-with-styles-interface-css/issues" + }, + { + "type": "vcs", + "url": "airbnb/react-with-styles-interface-css/tree/master/packages/interface" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flat@1.2.1", + "author": "Jordan Harband", + "name": "array.prototype.flat", + "version": "1.2.1", + "description": "An ESnext spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d762141241ec0210380d8e6cd053e035721d73c5514aa0fd669efc6b96aef5a6c7fd2381aeca74f3624e5853538e4328ce1f26a9c7622ae68b1a13de633b714b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 ECMAScript Shims\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array.prototype.flat@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Array.prototype.flat#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Array.prototype.flat/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Array.prototype.flat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/global-cache@1.2.1", + "author": "Jordan Harband", + "name": "global-cache", + "version": "1.2.1", + "description": "Sometimes you have to do horrible things, like use the global object to share a singleton. Abstract that away, with this!", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/global-cache@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/global-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/global-cache/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/global-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/core-data@2.0.17", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "core-data", + "version": "2.0.17", + "description": "Access to and manipulation of core WordPress entities.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/core-data@2.0.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/core-data/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/deprecated@2.0.5", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "deprecated", + "version": "2.0.5", + "description": "Deprecation utility for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/deprecated@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/deprecated/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/editor@9.0.10", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "editor", + "version": "9.0.10", + "description": "Building blocks for WordPress editors.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/editor@9.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/editor/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/date@3.0.1", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "date", + "version": "3.0.1", + "description": "Date module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/date@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/date/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/moment-timezone@0.5.23", + "author": "Tim Wood", + "name": "moment-timezone", + "version": "0.5.23", + "description": "Parse and display moments in any timezone.", + "hashes": [ + { + "alg": "SHA-512", + "content": "df30041e1da1294b371172c44b1ff0b20c3a21076eb0e4fc0719b70fd52b1cf411ef394c9b3c326c2f331c4335b50e0b2703fb7dcc6b5abf2db81834e5f1426e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) JS Foundation and other contributors\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/moment-timezone@0.5.23", + "externalReferences": [ + { + "type": "website", + "url": "http://momentjs.com/timezone/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/moment/moment-timezone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/moment/moment-timezone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/notices@1.1.3", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "notices", + "version": "1.1.3", + "description": "State management for notices.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/notices@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/notices/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/nux@3.0.9", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "nux", + "version": "3.0.9", + "description": "NUX (New User eXperience) module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/nux@3.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/nux/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/token-list@1.1.0", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "token-list", + "version": "1.1.0", + "description": "Constructable, plain JavaScript DOMTokenList implementation, supporting non-browser runtimes.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/token-list@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/token-list/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/viewport@2.1.1", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "viewport", + "version": "2.1.1", + "description": "Viewport module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/viewport@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/viewport/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/wordcount@2.0.3", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "wordcount", + "version": "2.0.3", + "description": "WordPress word count utility.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/wordcount@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/wordcount/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jquery@3.3.1", + "author": "JS Foundation and other contributors", + "name": "jquery", + "version": "3.3.1", + "description": "JavaScript library for DOM operations", + "hashes": [ + { + "alg": "SHA-512", + "content": "255cc047f02306f56dd81998871442498cac0ec3dcb2c7664c59f3c8b12db3da8dc268e6bb825300c62e6c47f054e4b0a50d48d6c28a15cc616422366ee7ab7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright JS Foundation and other contributors, https://js.foundation/\n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/jquery/jquery\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nAll files located in the node_modules and external directories are\nexternally maintained libraries used by this software which have their\nown licenses; we recommend you read them, as their terms may differ from\nthe terms above.\n" + } + } + } + ], + "purl": "pkg:npm/jquery@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://jquery.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/jquery/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/jquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-autosize-textarea@3.0.3", + "author": "Francesco Cioria", + "name": "react-autosize-textarea", + "version": "3.0.3", + "description": "replacement for built-in textarea which auto resizes itself", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 buildo s.r.l.s.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-autosize-textarea@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/buildo/react-autosize-textarea" + }, + { + "type": "issue-tracker", + "url": "https://github.com/buildo/react-autosize-textarea/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/buildo/react-autosize-textarea.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/autosize@4.0.2", + "author": "Jack Moore", + "name": "autosize", + "version": "4.0.2", + "description": "Autosize is a small, stand-alone script to automatically adjust textarea height to fit text.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jack Moore\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/autosize@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "http://www.jacklmoore.com/autosize" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jackmoore/autosize/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jackmoore/autosize.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/line-height@0.3.1", + "author": "Todd Wolfson", + "name": "line-height", + "version": "0.3.1", + "description": "Calculate line-height of an HTML element (IE6 compatible)", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/line-height@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/twolfson/line-height" + }, + { + "type": "issue-tracker", + "url": "https://github.com/twolfson/line-height/issues" + }, + { + "type": "vcs", + "url": "git://github.com/twolfson/line-height.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/computed-style@0.1.4", + "author": "Todd Wolfson", + "name": "computed-style", + "version": "0.1.4", + "description": "Cross-browser currentStyle/getComputedStyle implementation", + "purl": "pkg:npm/computed-style@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/twolfson/computedStyle" + }, + { + "type": "issue-tracker", + "url": "https://github.com/twolfson/computedStyle/issues" + }, + { + "type": "vcs", + "url": "git://github.com/twolfson/computedStyle.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-multi@0.1.12", + "name": "redux-multi", + "version": "0.1.12", + "description": "Dispatch multiple actions from one action creator", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/redux-multi@0.1.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ashaffer/redux-multi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ashaffer/redux-multi/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ashaffer/redux-multi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-optimist@1.0.0", + "author": "ForbesLindesay", + "name": "redux-optimist", + "version": "1.0.0", + "description": "Optimistically apply actions that can be later commited or reverted.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/redux-optimist@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/redux-optimist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/redux-optimist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/redux-optimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/refx@3.1.1", + "author": "Andrew Duthie", + "name": "refx", + "version": "3.1.1", + "description": "Redux middleware for triggering side effects", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/refx@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aduth/refx#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aduth/refx/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aduth/refx.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tinymce@4.8.5", + "author": "Ephox Corporation", + "name": "tinymce", + "version": "4.8.5", + "description": "Web based JavaScript HTML WYSIWYG editor control.", + "licenses": [ + { + "license": { + "id": "LGPL-2.1", + "text": { + "contentType": "text/txt", + "content": " GNU LESSER GENERAL PUBLIC LICENSE\n Version 2.1, February 1999\n\n Copyright (C) 1991, 1999 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicenses are intended to guarantee your freedom to share and change\nfree software--to make sure the software is free for all its users.\n\n This license, the Lesser General Public License, applies to some\nspecially designated software packages--typically libraries--of the\nFree Software Foundation and other authors who decide to use it. You\ncan use it too, but we suggest you first think carefully about whether\nthis license or the ordinary General Public License is the better\nstrategy to use in any particular case, based on the explanations below.\n\n When we speak of free software, we are referring to freedom of use,\nnot price. Our General Public Licenses are designed to make sure that\nyou have the freedom to distribute copies of free software (and charge\nfor this service if you wish); that you receive source code or can get\nit if you want it; that you can change the software and use pieces of\nit in new free programs; and that you are informed that you can do\nthese things.\n\n To protect your rights, we need to make restrictions that forbid\ndistributors to deny you these rights or to ask you to surrender these\nrights. These restrictions translate to certain responsibilities for\nyou if you distribute copies of the library or if you modify it.\n\n For example, if you distribute copies of the library, whether gratis\nor for a fee, you must give the recipients all the rights that we gave\nyou. You must make sure that they, too, receive or can get the source\ncode. If you link other code with the library, you must provide\ncomplete object files to the recipients, so that they can relink them\nwith the library after making changes to the library and recompiling\nit. And you must show them these terms so they know their rights.\n\n We protect your rights with a two-step method: (1) we copyright the\nlibrary, and (2) we offer you this license, which gives you legal\npermission to copy, distribute and/or modify the library.\n\n To protect each distributor, we want to make it very clear that\nthere is no warranty for the free library. Also, if the library is\nmodified by someone else and passed on, the recipients should know\nthat what they have is not the original version, so that the original\nauthor's reputation will not be affected by problems that might be\nintroduced by others.\n\n Finally, software patents pose a constant threat to the existence of\nany free program. We wish to make sure that a company cannot\neffectively restrict the users of a free program by obtaining a\nrestrictive license from a patent holder. Therefore, we insist that\nany patent license obtained for a version of the library must be\nconsistent with the full freedom of use specified in this license.\n\n Most GNU software, including some libraries, is covered by the\nordinary GNU General Public License. This license, the GNU Lesser\nGeneral Public License, applies to certain designated libraries, and\nis quite different from the ordinary General Public License. We use\nthis license for certain libraries in order to permit linking those\nlibraries into non-free programs.\n\n When a program is linked with a library, whether statically or using\na shared library, the combination of the two is legally speaking a\ncombined work, a derivative of the original library. The ordinary\nGeneral Public License therefore permits such linking only if the\nentire combination fits its criteria of freedom. The Lesser General\nPublic License permits more lax criteria for linking other code with\nthe library.\n\n We call this license the \"Lesser\" General Public License because it\ndoes Less to protect the user's freedom than the ordinary General\nPublic License. It also provides other free software developers Less\nof an advantage over competing non-free programs. These disadvantages\nare the reason we use the ordinary General Public License for many\nlibraries. However, the Lesser license provides advantages in certain\nspecial circumstances.\n\n For example, on rare occasions, there may be a special need to\nencourage the widest possible use of a certain library, so that it becomes\na de-facto standard. To achieve this, non-free programs must be\nallowed to use the library. A more frequent case is that a free\nlibrary does the same job as widely used non-free libraries. In this\ncase, there is little to gain by limiting the free library to free\nsoftware only, so we use the Lesser General Public License.\n\n In other cases, permission to use a particular library in non-free\nprograms enables a greater number of people to use a large body of\nfree software. For example, permission to use the GNU C Library in\nnon-free programs enables many more people to use the whole GNU\noperating system, as well as its variant, the GNU/Linux operating\nsystem.\n\n Although the Lesser General Public License is Less protective of the\nusers' freedom, it does ensure that the user of a program that is\nlinked with the Library has the freedom and the wherewithal to run\nthat program using a modified version of the Library.\n\n The precise terms and conditions for copying, distribution and\nmodification follow. Pay close attention to the difference between a\n\"work based on the library\" and a \"work that uses the library\". The\nformer contains code derived from the library, whereas the latter must\nbe combined with the library in order to run.\n\n GNU LESSER GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License Agreement applies to any software library or other\nprogram which contains a notice placed by the copyright holder or\nother authorized party saying it may be distributed under the terms of\nthis Lesser General Public License (also called \"this License\").\nEach licensee is addressed as \"you\".\n\n A \"library\" means a collection of software functions and/or data\nprepared so as to be conveniently linked with application programs\n(which use some of those functions and data) to form executables.\n\n The \"Library\", below, refers to any such software library or work\nwhich has been distributed under these terms. A \"work based on the\nLibrary\" means either the Library or any derivative work under\ncopyright law: that is to say, a work containing the Library or a\nportion of it, either verbatim or with modifications and/or translated\nstraightforwardly into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".)\n\n \"Source code\" for a work means the preferred form of the work for\nmaking modifications to it. For a library, complete source code means\nall the source code for all modules it contains, plus any associated\ninterface definition files, plus the scripts used to control compilation\nand installation of the library.\n\n Activities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning a program using the Library is not restricted, and output from\nsuch a program is covered only if its contents constitute a work based\non the Library (independent of the use of the Library in a tool for\nwriting it). Whether that is true depends on what the Library does\nand what the program that uses the Library does.\n \n 1. You may copy and distribute verbatim copies of the Library's\ncomplete source code as you receive it, in any medium, provided that\nyou conspicuously and appropriately publish on each copy an\nappropriate copyright notice and disclaimer of warranty; keep intact\nall the notices that refer to this License and to the absence of any\nwarranty; and distribute a copy of this License along with the\nLibrary.\n\n You may charge a fee for the physical act of transferring a copy,\nand you may at your option offer warranty protection in exchange for a\nfee.\n\n 2. You may modify your copy or copies of the Library or any portion\nof it, thus forming a work based on the Library, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n\n b) You must cause the files modified to carry prominent notices\n stating that you changed the files and the date of any change.\n\n c) You must cause the whole of the work to be licensed at no\n charge to all third parties under the terms of this License.\n\n d) If a facility in the modified Library refers to a function or a\n table of data to be supplied by an application program that uses\n the facility, other than as an argument passed when the facility\n is invoked, then you must make a good faith effort to ensure that,\n in the event an application does not supply such function or\n table, the facility still operates, and performs whatever part of\n its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has\n a purpose that is entirely well-defined independent of the\n application. Therefore, Subsection 2d requires that any\n application-supplied function or table used by this function must\n be optional: if the application does not supply it, the square\n root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Library,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Library, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library\nwith the Library (or with a work based on the Library) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may opt to apply the terms of the ordinary GNU General Public\nLicense instead of this License to a given copy of the Library. To do\nthis, you must alter all the notices that refer to this License, so\nthat they refer to the ordinary GNU General Public License, version 2,\ninstead of to this License. (If a newer version than version 2 of the\nordinary GNU General Public License has appeared, then you can specify\nthat version instead if you wish.) Do not make any other change in\nthese notices.\n\n Once this change is made in a given copy, it is irreversible for\nthat copy, so the ordinary GNU General Public License applies to all\nsubsequent copies and derivative works made from that copy.\n\n This option is useful when you wish to copy part of the code of\nthe Library into a program that is not a library.\n\n 4. You may copy and distribute the Library (or a portion or\nderivative of it, under Section 2) in object code or executable form\nunder the terms of Sections 1 and 2 above provided that you accompany\nit with the complete corresponding machine-readable source code, which\nmust be distributed under the terms of Sections 1 and 2 above on a\nmedium customarily used for software interchange.\n\n If distribution of object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the\nsource code from the same place satisfies the requirement to\ndistribute the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 5. A program that contains no derivative of any portion of the\nLibrary, but is designed to work with the Library by being compiled or\nlinked with it, is called a \"work that uses the Library\". Such a\nwork, in isolation, is not a derivative work of the Library, and\ntherefore falls outside the scope of this License.\n\n However, linking a \"work that uses the Library\" with the Library\ncreates an executable that is a derivative of the Library (because it\ncontains portions of the Library), rather than a \"work that uses the\nlibrary\". The executable is therefore covered by this License.\nSection 6 states terms for distribution of such executables.\n\n When a \"work that uses the Library\" uses material from a header file\nthat is part of the Library, the object code for the work may be a\nderivative work of the Library even though the source code is not.\nWhether this is true is especially significant if the work can be\nlinked without the Library, or if the work is itself a library. The\nthreshold for this to be true is not precisely defined by law.\n\n If such an object file uses only numerical parameters, data\nstructure layouts and accessors, and small macros and small inline\nfunctions (ten lines or less in length), then the use of the object\nfile is unrestricted, regardless of whether it is legally a derivative\nwork. (Executables containing this object code plus portions of the\nLibrary will still fall under Section 6.)\n\n Otherwise, if the work is a derivative of the Library, you may\ndistribute the object code for the work under the terms of Section 6.\nAny executables containing that work also fall under Section 6,\nwhether or not they are linked directly with the Library itself.\n\n 6. As an exception to the Sections above, you may also combine or\nlink a \"work that uses the Library\" with the Library to produce a\nwork containing portions of the Library, and distribute that work\nunder terms of your choice, provided that the terms permit\nmodification of the work for the customer's own use and reverse\nengineering for debugging such modifications.\n\n You must give prominent notice with each copy of the work that the\nLibrary is used in it and that the Library and its use are covered by\nthis License. You must supply a copy of this License. If the work\nduring execution displays copyright notices, you must include the\ncopyright notice for the Library among them, as well as a reference\ndirecting the user to the copy of this License. Also, you must do one\nof these things:\n\n a) Accompany the work with the complete corresponding\n machine-readable source code for the Library including whatever\n changes were used in the work (which must be distributed under\n Sections 1 and 2 above); and, if the work is an executable linked\n with the Library, with the complete machine-readable \"work that\n uses the Library\", as object code and/or source code, so that the\n user can modify the Library and then relink to produce a modified\n executable containing the modified Library. (It is understood\n that the user who changes the contents of definitions files in the\n Library will not necessarily be able to recompile the application\n to use the modified definitions.)\n\n b) Use a suitable shared library mechanism for linking with the\n Library. A suitable mechanism is one that (1) uses at run time a\n copy of the library already present on the user's computer system,\n rather than copying library functions into the executable, and (2)\n will operate properly with a modified version of the library, if\n the user installs one, as long as the modified version is\n interface-compatible with the version that the work was made with.\n\n c) Accompany the work with a written offer, valid for at\n least three years, to give the same user the materials\n specified in Subsection 6a, above, for a charge no more\n than the cost of performing this distribution.\n\n d) If distribution of the work is made by offering access to copy\n from a designated place, offer equivalent access to copy the above\n specified materials from the same place.\n\n e) Verify that the user has already received a copy of these\n materials or that you have already sent this user a copy.\n\n For an executable, the required form of the \"work that uses the\nLibrary\" must include any data and utility programs needed for\nreproducing the executable from it. However, as a special exception,\nthe materials to be distributed need not include anything that is\nnormally distributed (in either source or binary form) with the major\ncomponents (compiler, kernel, and so on) of the operating system on\nwhich the executable runs, unless that component itself accompanies\nthe executable.\n\n It may happen that this requirement contradicts the license\nrestrictions of other proprietary libraries that do not normally\naccompany the operating system. Such a contradiction means you cannot\nuse both them and the Library together in an executable that you\ndistribute.\n\n 7. You may place library facilities that are a work based on the\nLibrary side-by-side in a single library together with other library\nfacilities not covered by this License, and distribute such a combined\nlibrary, provided that the separate distribution of the work based on\nthe Library and of the other library facilities is otherwise\npermitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work\n based on the Library, uncombined with any other library\n facilities. This must be distributed under the terms of the\n Sections above.\n\n b) Give prominent notice with the combined library of the fact\n that part of it is a work based on the Library, and explaining\n where to find the accompanying uncombined form of the same work.\n\n 8. You may not copy, modify, sublicense, link with, or distribute\nthe Library except as expressly provided under this License. Any\nattempt otherwise to copy, modify, sublicense, link with, or\ndistribute the Library is void, and will automatically terminate your\nrights under this License. However, parties who have received copies,\nor rights, from you under this License will not have their licenses\nterminated so long as such parties remain in full compliance.\n\n 9. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Library or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Library (or any work based on the\nLibrary), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Library or works based on it.\n\n 10. Each time you redistribute the Library (or any work based on the\nLibrary), the recipient automatically receives a license from the\noriginal licensor to copy, distribute, link with or modify the Library\nsubject to these terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties with\nthis License.\n\n 11. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Library at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Library by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply,\nand the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 12. If the distribution and/or use of the Library is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Library under this License may add\nan explicit geographical distribution limitation excluding those countries,\nso that distribution is permitted only in or among countries not thus\nexcluded. In such case, this License incorporates the limitation as if\nwritten in the body of this License.\n\n 13. The Free Software Foundation may publish revised and/or new\nversions of the Lesser General Public License from time to time.\nSuch new versions will be similar in spirit to the present version,\nbut may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Library does not specify a\nlicense version number, you may choose any version ever published by\nthe Free Software Foundation.\n\n 14. If you wish to incorporate parts of the Library into other free\nprograms whose distribution conditions are incompatible with these,\nwrite to the author to ask for permission. For software which is\ncopyrighted by the Free Software Foundation, write to the Free\nSoftware Foundation; we sometimes make exceptions for this. Our\ndecision will be guided by the two goals of preserving the free status\nof all derivatives of our free software and of promoting the sharing\nand reuse of software generally.\n\n NO WARRANTY\n\n 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nLIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Libraries\n\n If you develop a new library, and you want it to be of the greatest\npossible use to the public, we recommend making it free software that\neveryone can redistribute and change. You can do so by permitting\nredistribution under these terms (or, alternatively, under the terms of the\nordinary General Public License).\n\n To apply these terms, attach the following notices to the library. It is\nsafest to attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least the\n\"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This library is free software; you can redistribute it and/or\n modify it under the terms of the GNU Lesser General Public\n License as published by the Free Software Foundation; either\n version 2.1 of the License, or (at your option) any later version.\n\n This library is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public\n License along with this library; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the library, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the\n library `Frob' (a library for tweaking knobs) written by James Random Hacker.\n\n , 1 April 1990\n Ty Coon, President of Vice\n\nThat's all there is to it!\n\n\n" + } + } + } + ], + "purl": "pkg:npm/tinymce@4.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tinymce/tinymce-dist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tinymce/tinymce/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tinymce/tinymce-dist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/edit-post@3.1.10", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "edit-post", + "version": "3.1.10", + "description": "Edit Post module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/edit-post@3.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/edit-post/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/format-library@1.2.13", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "format-library", + "version": "1.2.13", + "description": "Format library for the WordPress editor.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/format-library@1.2.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/format-library/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wordpress/plugins@2.0.11", + "author": "The WordPress Contributors", + "group": "@wordpress", + "name": "plugins", + "version": "2.0.11", + "description": "Plugins module for WordPress.", + "licenses": [ + { + "license": { + "id": "GPL-2.0-or-later", + "text": { + "contentType": "text/markdown", + "content": "### WordPress - Web publishing software\n\n Copyright 2011-2018 by the contributors\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\n\nThis program incorporates work covered by the following copyright and\npermission notices:\n\n b2 is (c) 2001, 2002 Michel Valdrighi - m@tidakada.com -\n http://tidakada.com\n\n Wherever third party code has been used, credit has been given in the code's\n comments.\n\n b2 is released under the GPL\n\nand\n\n WordPress - Web publishing software\n\n Copyright 2003-2010 by the contributors\n\n WordPress is released under the GPL\n \n---\n\n### GNU GENERAL PUBLIC LICENSE\n\nVersion 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc. \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n### Preamble\n\nThe licenses for most software are designed to take away your freedom\nto share and change it. By contrast, the GNU General Public License is\nintended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if\nyou distribute copies of the software, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\nWe protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\nAlso, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on,\nwe want its recipients to know that what they have is not the\noriginal, so that any problems introduced by others will not reflect\non the original authors' reputations.\n\nFinally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at\nall.\n\nThe precise terms and conditions for copying, distribution and\nmodification follow.\n\n### TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n**0.** This License applies to any program or other work which\ncontains a notice placed by the copyright holder saying it may be\ndistributed under the terms of this General Public License. The\n\"Program\", below, refers to any such program or work, and a \"work\nbased on the Program\" means either the Program or any derivative work\nunder copyright law: that is to say, a work containing the Program or\na portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is\nincluded without limitation in the term \"modification\".) Each licensee\nis addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the Program\n(independent of having been made by running the Program). Whether that\nis true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a\nfee.\n\n**2.** You may modify your copy or copies of the Program or any\nportion of it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n \n**a)** You must cause the modified files to carry prominent notices\nstating that you changed the files and the date of any change.\n\n \n**b)** You must cause any work that you distribute or publish, that in\nwhole or in part contains or is derived from the Program or any part\nthereof, to be licensed as a whole at no charge to all third parties\nunder the terms of this License.\n\n \n**c)** If the modified program normally reads commands interactively\nwhen run, you must cause it, when started running for such interactive\nuse in the most ordinary way, to print or display an announcement\nincluding an appropriate copyright notice and a notice that there is\nno warranty (or else, saying that you provide a warranty) and that\nusers may redistribute the program under these conditions, and telling\nthe user how to view a copy of this License. (Exception: if the\nProgram itself is interactive but does not normally print such an\nannouncement, your work based on the Program is not required to print\nan announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote\nit.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n**3.** You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n \n**a)** Accompany it with the complete corresponding machine-readable\nsource code, which must be distributed under the terms of Sections 1\nand 2 above on a medium customarily used for software interchange; or,\n\n \n**b)** Accompany it with a written offer, valid for at least three\nyears, to give any third party, for a charge no more than your cost of\nphysically performing source distribution, a complete machine-readable\ncopy of the corresponding source code, to be distributed under the\nterms of Sections 1 and 2 above on a medium customarily used for\nsoftware interchange; or,\n\n \n**c)** Accompany it with the information you received as to the offer\nto distribute corresponding source code. (This alternative is allowed\nonly for noncommercial distribution and only if you received the\nprogram in object code or executable form with such an offer, in\naccord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt otherwise\nto copy, modify, sublicense or distribute the Program is void, and\nwill automatically terminate your rights under this License. However,\nparties who have received copies, or rights, from you under this\nLicense will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on\nthe Program), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n**7.** If, as a consequence of a court judgment or allegation of\npatent infringement or for any other reason (not limited to patent\nissues), conditions are imposed on you (whether by court order,\nagreement or otherwise) that contradict the conditions of this\nLicense, they do not excuse you from the conditions of this License.\nIf you cannot distribute so as to satisfy simultaneously your\nobligations under this License and any other pertinent obligations,\nthen as a consequence you may not distribute the Program at all. For\nexample, if a patent license would not permit royalty-free\nredistribution of the Program by all those who receive copies directly\nor indirectly through you, then the only way you could satisfy both it\nand this License would be to refrain entirely from distribution of the\nProgram.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n**9.** The Free Software Foundation may publish revised and/or new\nversions of the General Public License from time to time. Such new\nversions will be similar in spirit to the present version, but may\ndiffer in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and\n\"any later version\", you have the option of following the terms and\nconditions either of that version or of any later version published by\nthe Free Software Foundation. If the Program does not specify a\nversion number of this License, you may choose any version ever\npublished by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other\nfree programs whose distribution conditions are different, write to\nthe author to ask for permission. For software which is copyrighted by\nthe Free Software Foundation, write to the Free Software Foundation;\nwe sometimes make exceptions for this. Our decision will be guided by\nthe two goals of preserving the free status of all derivatives of our\nfree software and of promoting the sharing and reuse of software\ngenerally.\n\n**NO WARRANTY**\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO\nWARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.\nEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR\nOTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY\nKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME\nTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN\nWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY\nAND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU\nFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE\nPROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING\nRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF\nSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH\nDAMAGES.\n\n### END OF TERMS AND CONDITIONS\n\n### How to Apply These Terms to Your New Programs\n\nIf you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these\nterms.\n\nTo do so, attach the following notices to the program. It is safest to\nattach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n one line to give the program's name and an idea of what it does.\n Copyright (C) yyyy name of author\n\n This program is free software; you can redistribute it and/or\n modify it under the terms of the GNU General Public License\n as published by the Free Software Foundation; either version 2\n of the License, or (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program; if not, write to the Free Software\n Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n\nAlso add information on how to contact you by electronic and paper\nmail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details\n type `show w'. This is free software, and you are welcome\n to redistribute it under certain conditions; type `show c' \n for details.\n\nThe hypothetical commands \\`show w' and \\`show c' should show the\nappropriate parts of the General Public License. Of course, the\ncommands you use may be called something other than \\`show w' and\n\\`show c'; they could even be mouse-clicks or menu items--whatever\nsuits your program.\n\nYou should also get your employer (if you work as a programmer) or\nyour school, if any, to sign a \"copyright disclaimer\" for the program,\nif necessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright\n interest in the program `Gnomovision'\n (which makes passes at compilers) written \n by James Hacker.\n\n signature of Ty Coon, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library,\nyou may consider it more useful to permit linking proprietary\napplications with the library. If this is what you want to do, use the\n[GNU Lesser General Public\nLicense](http://www.gnu.org/licenses/lgpl.html) instead of this\nLicense.\n" + } + } + } + ], + "purl": "pkg:npm/%40wordpress/plugins@2.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WordPress/gutenberg/tree/master/packages/plugins/README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WordPress/gutenberg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/WordPress/gutenberg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/autoprefixer@9.4.4", + "author": "Andrey Sitnik", + "name": "autoprefixer", + "version": "9.4.4", + "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", + "hashes": [ + { + "alg": "SHA-512", + "content": "58a13123f7921a018091600efb031574539b655ee141e9f9e14a43d640824cddedbe52f75b58cbe3e94f3ff33b330a0fed0e111f32ad3b7250e07c5811c77ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/autoprefixer@9.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/autoprefixer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/autoprefixer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/autoprefixer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss@7.0.7", + "author": "Andrey Sitnik", + "name": "postcss", + "version": "7.0.7", + "description": "Tool for transforming styles with JS plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb5234517b56e95cab17d6a0093498ea655884ad5bb212431346bc2ee2e778b1b4ed201466b5a603ac799c1a09ab6ec5b73077e6b487febc9ba68109fe3eb5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss@7.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://postcss.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-loader@8.0.5", + "author": "Luis Couto", + "name": "babel-loader", + "version": "8.0.5", + "description": "babel module loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "caf680c7b70112387e476a062f6bc83e6bde3ba75a4b94d83f61523eae1be825188d4fe2943e071f27cb21af4a523e8e281711f5f41c97536f50e4d635a27a9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2016 Luís Couto \n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babel-loader@8.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@2.0.0", + "name": "find-cache-dir", + "version": "2.0.0", + "description": "Finds the common standard cache directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "4eae8f8b1134c3f54c15f0a06ce36792240856897f2492fb9d1322db47eacc0e0d46cf407dea8c19e45d3e2df0221624c63781696876af1c1aa67e53bb722a39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-cache-dir@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/find-cache-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/find-cache-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/find-cache-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/util.promisify@1.0.0", + "author": "Jordan Harband", + "name": "util.promisify", + "version": "1.0.0", + "description": "Polyfill/shim for util.promisify in node versions < v8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8beeaa03630f86fa0a2eec6724da57006860ec7a6140e494ab62ca3190f49b5e448ac91752432f29d17852e8b459878250679afa8d9cc3f66ec1e86d7ecacd90" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/util.promisify@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/util.promisify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/util.promisify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/util.promisify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-limit@2.1.0", + "author": "Sindre Sorhus", + "name": "p-limit", + "version": "2.1.0", + "description": "Run multiple promise-returning & async functions with limited concurrency", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-limit@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-limit#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-limit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-limit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-try@2.0.0", + "author": "Sindre Sorhus", + "name": "p-try", + "version": "2.0.0", + "description": "`Start a promise chain", + "hashes": [ + { + "alg": "SHA-512", + "content": "4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-try@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-try#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-try/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-try.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-add-module-exports@1.0.0", + "author": "59naga", + "name": "babel-plugin-add-module-exports", + "version": "1.0.0", + "description": "Fix babel/babel#2212", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-add-module-exports@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/59naga/babel-plugin-add-module-exports#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/59naga/babel-plugin-add-module-exports/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/59naga/babel-plugin-add-module-exports.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-class-properties@6.24.1", + "name": "babel-plugin-transform-class-properties", + "version": "6.24.1", + "description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f88ed040dce60176f1b93d130ab0c5c95c77cb630fd93a6b7108b38ec33e91a395e5ac2a25912b4b9f3d404b52f6c9f3c0f41289d5936599508b8c02fd0d222" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-class-properties@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-class-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-function-name@6.24.1", + "name": "babel-helper-function-name", + "version": "6.24.1", + "description": "Helper function to change the property 'name' of every function", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a8ebe7b6897fa8f5e56f27d63978a2f98abc9e45db0893045885e0ae8587551ec744432b1b736cf6424a822c8627371913e52b37820ac775788323b0e1ae7e1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-function-name@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-get-function-arity@6.24.1", + "name": "babel-helper-get-function-arity", + "version": "6.24.1", + "description": "Helper function to get function arity", + "hashes": [ + { + "alg": "SHA-512", + "content": "59f80a157eacc050758d2dafa3e0f08af44de0d07c5d474cde28f46358270b6d72d6d741a1eeb18d59ddecd488e9a96ffa06570ad26abeb4de316ddf47f7349e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-get-function-arity@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-types@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-types", + "version": "6.26.0", + "description": "Babel Types is a Lodash-esque utility library for AST nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce17b757fdbaac25ac1192bc91937e1da423e724350a295339b8b1173296d545a3a86efad7c4f0cfa604b029e37e0e6005c261d360eba42912f61f7c66a0d8fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-types@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-types" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-template@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-template", + "version": "6.26.0", + "description": "Generate an AST from a string template.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c239c2c55bbfde6b3194288a2a1fdeec3bd03651831a86c9ffc9143bb8e937ee2badc23abb383b5c4cd17e8850d21cd7e472daac2d18cb3fb5119cec744f57e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-template@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-template" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-traverse@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-traverse", + "version": "6.26.0", + "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", + "hashes": [ + { + "alg": "SHA-512", + "content": "892c5e5f1edaa6c8c21def5cee7f15b515c6cc8d81935ac148e2600828dfc976fabf5682a84d4a484a6affc497b9537c29afd18755834c5d0c0f392f4c0e0c20" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-traverse@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-traverse" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-messages@6.23.0", + "author": "Sebastian McKenzie", + "name": "babel-messages", + "version": "6.23.0", + "description": "Collection of debug messages used by Babel.", + "hashes": [ + { + "alg": "SHA-512", + "content": "065dd9880f8b8ea68cb4d628a40f53604f473f5b50f84e5d2f11345eb03370825e2b652a174fc46aa5f0067f5eb1de149937c469bf8ff94610d469e2a0521bff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-messages@6.23.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-messages" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babylon@6.18.0", + "author": "Sebastian McKenzie", + "name": "babylon", + "version": "6.18.0", + "description": "A JavaScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "fabab672be060e1b53a04cca143e8a659303057863140afd2633f0f69029a590027845aa34cdbde23f8d741ce4487617c33cc19958d9de71152653a16d1da039" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babylon@6.18.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babylon/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babylon.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globals@9.18.0", + "author": "Sindre Sorhus", + "name": "globals", + "version": "9.18.0", + "description": "Global identifiers from different JavaScript environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e069fc410652222c252a7bc1cbffcba30efa557d5289dc5aac6e15f9bc781c3358d8327c177a1b3f8878a43d8c29b28681fdf60d793374fe41a5471638b354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globals@9.18.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-syntax-class-properties@6.13.0", + "name": "babel-plugin-syntax-class-properties", + "version": "6.13.0", + "description": "Allow parsing of class properties", + "hashes": [ + { + "alg": "SHA-512", + "content": "72123746df53d406eb403d6cfafc70dca7300bdc87b45eb6d7f31a72e22d2137d95f7e38ba142800d8e9a1225995e0265b6b6396896a07f7fe87b8c8a976bba4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-syntax-class-properties@6.13.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/body-parser@1.18.3", + "name": "body-parser", + "version": "1.18.3", + "description": "Node.js body parsing middleware", + "hashes": [ + { + "alg": "SHA-512", + "content": "0df27eaba10f7062990f54165234a9aa9f90edb0d04ec408178cdf500b59eaa93e1ffdff411860f42129dfdb2cfbf4f6bf0d3e1da89d0b479c263fc344b21a2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/body-parser@1.18.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/body-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/body-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/body-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/iconv-lite@0.4.23", + "author": "Alexander Shtuchkin", + "name": "iconv-lite", + "version": "0.4.23", + "description": "Convert character encodings in pure javascript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf73179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Alexander Shtuchkin\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/iconv-lite@0.4.23", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ashtuchkin/iconv-lite" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ashtuchkin/iconv-lite/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ashtuchkin/iconv-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/raw-body@2.3.3", + "author": "Jonathan Ong", + "name": "raw-body", + "version": "2.3.3", + "description": "Get and validate the raw body of a readable stream.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aaa241b44c95812d1998f19d0853d627716b7a8aaf1b83154259ff902805ece96af7921b3a9d3f056c8cc1b76d9f8553be433c63b921090d97824fed72b0978a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/raw-body@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stream-utils/raw-body#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stream-utils/raw-body/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stream-utils/raw-body.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type-is@1.6.16", + "name": "type-is", + "version": "1.6.16", + "description": "Infer the content-type of a request.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e444aafdb144f1107f0c75fb8248fed58b3272cd134c8e3d89d9da3626bdcaca6e7df0955d124b2eccf4029e514f5b8932f50fa203e99af411a6d3a5d0072f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/type-is@1.6.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/type-is#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/type-is/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/type-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime-types@2.1.21", + "name": "mime-types", + "version": "2.1.21", + "description": "The ultimate javascript content-type utility.", + "hashes": [ + { + "alg": "SHA-512", + "content": "64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime-types@2.1.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/mime-types#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/mime-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/mime-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime-db@1.37.0", + "name": "mime-db", + "version": "1.37.0", + "description": "Media Type Database", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime-db@1.37.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/mime-db#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/mime-db/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/mime-db.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bounding-client-rect@1.0.5", + "author": "Nathan Rajlich", + "name": "bounding-client-rect", + "version": "1.0.5", + "description": "Cross-browser `getBoundingClientRect()` for all Node types", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/bounding-client-rect@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/bounding-client-rect" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/bounding-client-rect/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webmodules/bounding-client-rect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-document@1.0.0", + "name": "get-document", + "version": "1.0.0", + "description": "Returns the `document` object from a DOM object", + "purl": "pkg:npm/get-document@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/get-document#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/get-document/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webmodules/get-document.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browser-filesaver@1.1.1", + "author": "Eli Grey", + "name": "browser-filesaver", + "version": "1.1.1", + "description": "Cross-browser implementation of W3C saveAs API", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright © 2015 [Eli Grey][1].\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n [1]: http://eligrey.com\n" + } + } + } + ], + "purl": "pkg:npm/browser-filesaver@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tmpvar/browser-filesaver" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tmpvar/browser-filesaver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tmpvar/browser-filesaver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chokidar@2.0.4", + "author": "Paul Miller", + "name": "chokidar", + "version": "2.0.4", + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a4f1f01671150ec58edbb652ed8ad8f7038e633b0480c47e2d3853a81066d5b25e9c2faa4f316532eddc19fdc6a77e3dd011d3fa1474a77ff97573afd693356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chokidar@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/chokidar" + }, + { + "type": "issue-tracker", + "url": "http://github.com/paulmillr/chokidar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/paulmillr/chokidar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-each@1.0.1", + "author": "Paul Miller", + "name": "async-each", + "version": "1.0.1", + "description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cff5a143914fc922ddbd1101c88daf6624d6c029c5d26a0c27584af584300d31ca87a23bfee49c90c7ada1119be540593c2d73d23970fa7fd70a08de1fbcb501" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/async-each@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/async-each/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/async-each/issues" + }, + { + "type": "vcs", + "url": "git://github.com/paulmillr/async-each.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fsevents@1.2.4", + "author": "Philipp Dunkel", + "name": "fsevents", + "version": "1.2.4", + "description": "Native Access to Mac OS-X FSEvents", + "hashes": [ + { + "alg": "SHA-512", + "content": "a166f567a9a41c8b242f3109fd7597d2cae4a644d0eef6a8a4c424c9a108a2ad1f9ad155c4eb616fc702c5e4fea77ca74dd924fd16706e01b86eb47905e5840b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n-----------\n\nCopyright (C) 2010-2014 Philipp Dunkel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fsevents@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/strongloop/fsevents" + }, + { + "type": "issue-tracker", + "url": "https://github.com/strongloop/fsevents/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/strongloop/fsevents.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nan@2.12.1", + "name": "nan", + "version": "2.12.1", + "description": "Native Abstractions for Node.js: C++ header for Node 0.8 -> 11 compatibility", + "hashes": [ + { + "alg": "SHA-512", + "content": "51d02a1f216782eed37d02ac08180003aa560e44fc3003bb7748f239e71584de77e78c5b2ea767f2657d4dab7d81ea40ba99b46edd836de6920bcbd2e7632e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2018 NAN contributors\n-----------------------------------\n\n*NAN contributors listed at *\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nan@2.12.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/nan#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/nan/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/nan.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-pre-gyp@0.10.0", + "author": "Dane Springmeyer", + "name": "node-pre-gyp", + "version": "0.10.0", + "description": "Node.js native addon binary install tool", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ac255ef8ab19efcff00c1a071f6680da7835ca0f7a18dd05486c19b0b334c59118ac4d25db310ca7e145b350c3ad03949586b059393a74c1ca120607cc7cc99" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c), Mapbox\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of node-pre-gyp nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/node-pre-gyp@0.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/node-pre-gyp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/node-pre-gyp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/node-pre-gyp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-libc@1.0.3", + "author": "Lovell Fuller", + "name": "detect-libc", + "version": "1.0.3", + "description": "Node.js module to detect the C standard library (libc) implementation family and version", + "hashes": [ + { + "alg": "SHA-512", + "content": "a468f086c9aca7890bd914f3d3cc1c3a518df37a2d96a1de0ff6794fc197641fbf61ca50fdd828fa56d4f19b06c55d0722faaac68f65ee6a98c3260c0fd6ca0e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/detect-libc@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lovell/detect-libc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lovell/detect-libc/issues" + }, + { + "type": "vcs", + "url": "git://github.com/lovell/detect-libc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/needle@2.2.0", + "author": "Tomás Pollak", + "name": "needle", + "version": "2.2.0", + "description": "The leanest and most handsome HTTP client in the Nodelands.", + "hashes": [ + { + "alg": "SHA-512", + "content": "efaa5a0e87711a5ddbfab720f1f62fedf9112c9a74907a6b38bf873ed7c3913e1028900b48524a5ab269ed0c3cdc956d3d3847f55cbb885e0a47812ad5f55858" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) Fork, Ltd.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/needle@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tomas/needle#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tomas/needle/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tomas/needle.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/iconv-lite@0.4.21", + "author": "Alexander Shtuchkin", + "name": "iconv-lite", + "version": "0.4.21", + "description": "Convert character encodings in pure javascript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf73179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Alexander Shtuchkin\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/iconv-lite@0.4.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ashtuchkin/iconv-lite" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ashtuchkin/iconv-lite/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ashtuchkin/iconv-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nopt@4.0.1", + "author": "Isaac Z. Schlueter", + "name": "nopt", + "version": "4.0.1", + "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0652dde4484626938213c7307f6fdbda2037d455637f325d45c25d752259c81b689a27d3ba59767d4ab60cf4d2c8f0e08189e37663c4960b6a09574450eea62" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nopt@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/nopt#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/nopt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/nopt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-packlist@1.1.10", + "author": "Isaac Z. Schlueter", + "name": "npm-packlist", + "version": "1.1.10", + "description": "Get a list of the files to add from a folder into an npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "e7e019830aeee487af17965d9c5825079c0d9471b500e3aec36f16854abcffc7a684198bbfa8d7e5bcb85890a1ee55b4b92619612e835ea22cc995485d1654f4" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-packlist@1.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://www.npmjs.com/package/npm-packlist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-packlist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-packlist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ignore-walk@3.0.1", + "author": "Isaac Z. Schlueter", + "name": "ignore-walk", + "version": "3.0.1", + "description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d8e888bca358cc440d73e05da14641ffc4de7da31e370dabcabc3de80e97eead194e272007a627c8c296ddbf59f88ede28bf48d2a70de44381a1267a412fa59" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ignore-walk@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/ignore-walk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/ignore-walk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/ignore-walk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-bundled@1.0.3", + "author": "Isaac Z. Schlueter", + "name": "npm-bundled", + "version": "1.0.3", + "description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof", + "hashes": [ + { + "alg": "SHA-512", + "content": "c790c7ba9d12bb241c98bdeced1c7f610f2c6f0fc7ce0d2b8f8f1e374755ee17f972642ae4f5c87a2a2ba07deb695d500b5ca1dee4d8b8c4e1bc4405de22a019" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/npm-bundled@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npm-bundled#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-bundled/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-bundled.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc@1.2.7", + "author": "Dominic Tarr", + "name": "rc", + "version": "1.2.7", + "description": "hardwired configuration loader", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb76c682a2a3dd005dc4b6cb9289a5a2192fb00f207408944254812670617e7f813f18386dceb677c4dc056d79c1abc37e07b10a071c72485c66fcb0c9060f3b" + } + ], + "licenses": [ + { + "license": { + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + } + } + ], + "purl": "pkg:npm/rc@1.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/rc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/rc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dominictarr/rc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-extend@0.5.1", + "author": "Viacheslav Lotsmanov", + "name": "deep-extend", + "version": "0.5.1", + "description": "Recursive object extending", + "hashes": [ + { + "alg": "SHA-512", + "content": "710d225d210a8b72513618d4b0b5af43e3153f12d5aa9c02774705b166c9c650a29b64e50a8d49bcde5668f74fbd2a547449e427f5fe98f19cab9449ebc10af2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018, Viacheslav Lotsmanov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-extend@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unclechu/node-deep-extend" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unclechu/node-deep-extend/issues" + }, + { + "type": "vcs", + "url": "git://github.com/unclechu/node-deep-extend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ini@1.3.5", + "author": "Isaac Z. Schlueter", + "name": "ini", + "version": "1.3.5", + "description": "An ini encoder/decoder for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "255ff2ba0576bb35b988c4528990320ed41dfa7c6d5278de2edd1a70d770f7c90a2ebbee455c81f34b6c444384ef2bc65606a5859e913570a61079142812b17b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ini@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/ini#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/ini/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/ini.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rimraf@2.6.2", + "author": "Isaac Z. Schlueter", + "name": "rimraf", + "version": "2.6.2", + "description": "A deep deletion module for node (like `rm -rf`)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b968db68a20add3d4e495a6dcd7ecd97a3ef437a801ad284b5546346e6b38df2f7071e5e238d3d5594aa80d0fee143679b32d574f8fd16a14934fa81645bdee3" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rimraf@2.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/rimraf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/rimraf/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/rimraf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@7.1.2", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "7.1.2", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@7.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@5.5.0", + "name": "semver", + "version": "5.5.0", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@5.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tar@4.4.1", + "author": "Isaac Z. Schlueter", + "name": "tar", + "version": "4.4.1", + "description": "tar for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "14212143fe2b135cd8bfdad85c9c3f9ac46ab279a58dee631cfea1b9678167bd388d44f2d36739019c96ba3a4c4756b1ea6570f4dc8931fb8ad8230359521f80" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tar@4.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-tar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-tar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-tar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chownr@1.0.1", + "author": "Isaac Z. Schlueter", + "name": "chownr", + "version": "1.0.1", + "description": "like `chown -R`", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c9d1bab36b296626d567360cd37923acf033dabe96d8804aff6f460bf3fd863b7c4912122716684a3149c42508d9ba62bb297185854cbcf4faec25695a90156" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chownr@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/chownr#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/chownr/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/chownr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-minipass@1.2.5", + "author": "Isaac Z. Schlueter", + "name": "fs-minipass", + "version": "1.2.5", + "description": "fs read and write streams based on minipass", + "hashes": [ + { + "alg": "SHA-512", + "content": "196492246172e1ef4651e09c6c89040fe6e00281728fb5c5d6657cae66b7416e0d22a5fd2b2c7bf4dfcf17ad47e6e74e577698d4868c2ecea919b1fbd679424c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-minipass@1.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/fs-minipass#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/fs-minipass/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/fs-minipass.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minipass@2.2.4", + "author": "Isaac Z. Schlueter", + "name": "minipass", + "version": "2.2.4", + "description": "minimal implementation of a PassThrough stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "c317d48e0f5679b1fe0940d7fc275b4658794a67d98b2fe1a64c5a448d7a63d5b9e8f6bbe6c5a077faef16295282b6ae0fd37217298fffe2455772b0cc8b097a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/minipass@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minipass#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minipass/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/minipass.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.1.1", + "author": "Feross Aboukhadijeh", + "name": "safe-buffer", + "version": "5.1.1", + "description": "Safer Node.js Buffer API", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/safe-buffer@5.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/safe-buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/safe-buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/safe-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yallist@3.0.2", + "author": "Isaac Z. Schlueter", + "name": "yallist", + "version": "3.0.2", + "description": "Yet Another Linked List", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dc4f31d5ecdbec4199187b50d6edc6c32e6d18a731e6645e6bfe2c8fdd99d0b4c889fa98f38ac0a230d23e4a3fb1405e695e1487c52077b836ec053cd8fdcd8" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yallist@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/yallist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/yallist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/yallist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minizlib@1.1.0", + "author": "Isaac Z. Schlueter", + "name": "minizlib", + "version": "1.1.0", + "description": "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9960c3849e656c7427932551345bd643fa956713c87d1e66bf88ec30443b1d42878fa685f9ebff01eb3dcff55370a6926e04a351b850d1351a9159ec53f46f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Minizlib was created by Isaac Z. Schlueter.\nIt is a derivative work of the Node.js project.\n\n\"\"\"\nCopyright Isaac Z. Schlueter and Contributors\nCopyright Node.js contributors. All rights reserved.\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/minizlib@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minizlib#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minizlib/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/minizlib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/are-we-there-yet@1.1.4", + "author": "Rebecca Turner", + "name": "are-we-there-yet", + "version": "1.1.4", + "description": "Keep track of the overall completion of many disparate processes", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f1c32e344ee322506a8cc911e0092599f45338540a113f8c546124efe48991a20fa1f722123db547ec7f1f012088cd89fdc2512fe33bc52fbb8a0cc085426de" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/are-we-there-yet@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/are-we-there-yet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/are-we-there-yet/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/are-we-there-yet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wide-align@1.1.2", + "author": "Rebecca Turner", + "name": "wide-align", + "version": "1.1.2", + "description": "A wide-character aware text alignment function for use on the console or with fixed width fonts.", + "hashes": [ + { + "alg": "SHA-512", + "content": "78330e45868f359e2c408bae60f0c7750bdfe20c8217dac4115ff23f119fc0f911a1dc048223145174f1fdd7b1f8c7b4c31c79dd2f8d8141da3fbcb73069439a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/wide-align@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/wide-align#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/wide-align/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/wide-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.0", + "author": "Jon Schlinkert", + "name": "is-glob", + "version": "4.0.0", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "hashes": [ + { + "alg": "SHA-512", + "content": "505a430eb3e033aaa99c5348fab87fa776d46aaf6128b64df1b3145b3c667276554b7a267f820f2be06b7b09675a33b55a652c318b928ca878509b95e3e2ea9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-glob@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.debounce@4.0.8", + "author": "John-David Dalton", + "name": "lodash.debounce", + "version": "4.0.8", + "description": "The lodash method `_.debounce` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95c989c0ca5d3c0b42840e217e2c314ed80578d01aa30ef4d7059481552a783d17245eef31720df9bbbfd852521b14f43546d9cbd83d545ae53857cf8e5fb413" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.debounce@4.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/upath@1.1.0", + "author": "Angelos Pikoulas", + "name": "upath", + "version": "1.1.0", + "description": "A proxy to `path`, replacing `\\` with `/` for all results & new methods to normalize & join keeping leading `./` and add, change, default, trim file extensions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "699c06a5a9853bad60dce95f4fb390087aa11a75b8de2787f5665e3fb43137f1bf8d2e237ea524671a2bcaf26054f11cae5e4d2ff8201ec4a62cc1ee1fae0b86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright(c) 2014-2017 Angelos Pikoulas (agelos.pikoulas@gmail.com)\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/upath@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/anodynos/upath/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/anodynos/upath/issues" + }, + { + "type": "vcs", + "url": "git://github.com/anodynos/upath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chrono-node@1.3.5", + "name": "chrono-node", + "version": "1.3.5", + "description": "A natural language date parser in Javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b07d6e3ffa2d5eead1f1e68a70fd509fc579da8b5dbfb53e462bec121f02ad75bd19900a3144621f2fc233b85aff244413c380f17afcacc97ebe61b65244a2d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License\n\nCopyright (c) 2014, Wanasit Tanakitrungruang\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chrono-node@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/berryboy/chrono" + }, + { + "type": "issue-tracker", + "url": "https://github.com/berryboy/chrono/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/berryboy/chrono.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/circular-dependency-plugin@5.0.2", + "name": "circular-dependency-plugin", + "version": "5.0.2", + "description": "Detect modules with circular dependencies when bundling with webpack.", + "hashes": [ + { + "alg": "SHA-512", + "content": "837f0af429b9591c25687ea0d3707d384cffd2a462cc8fb623b9fe1b3f8be43c572403c089642fc2560d9b55758e476952ff796ce7bf0129b6bdf8bf1b9eb48d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2016, Aaron Ackerman \n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/circular-dependency-plugin@5.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aackerman/circular-dependency-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aackerman/circular-dependency-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aackerman/circular-dependency-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/click-outside@2.0.2", + "author": "Nathan Rajlich", + "name": "click-outside", + "version": "2.0.2", + "description": "The inverse of the DOM \"click\" event", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/click-outside@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/click-outside" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/click-outside/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/click-outside.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-event@0.1.4", + "name": "component-event", + "version": "0.1.4", + "description": "Event binding component", + "purl": "pkg:npm/component-event@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/event#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/event/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/event.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-contains@1.0.0", + "author": "Nathan Rajlich", + "name": "node-contains", + "version": "1.0.0", + "description": "`Node#contains()` cross browser polyfill", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/node-contains@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/node-contains" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/node-contains/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webmodules/node-contains.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-studio@1.0.1", + "name": "color-studio", + "version": "1.0.1", + "description": "[dist-extensions]: dist/extensions/ [dist-json]: dist/colors.json [dist-preview]: dist/meta/preview.png [dist-scss]: dist/colors.scss [dist-sketchpalette]: dist/colors.sketchpalette", + "licenses": [ + { + "license": { + "id": "GPL-2.0+", + "text": { + "contentType": "text/markdown", + "content": "The GNU General Public License, Version 2, June 1991 (GPLv2)\n============================================================\n\n> Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\n\nPreamble\n--------\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the GNU General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This General Public License applies to most\nof the Free Software Foundation's software and to any other program whose\nauthors commit to using it. (Some other Free Software Foundation software is\ncovered by the GNU Library General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our\nGeneral Public Licenses are designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\n\nTerms And Conditions For Copying, Distribution And Modification\n---------------------------------------------------------------\n\n**0.** This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis General Public License. The \"Program\", below, refers to any such program or\nwork, and a \"work based on the Program\" means either the Program or any\nderivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this License\nand to the absence of any warranty; and give any other recipients of the Program\na copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n**2.** You may modify your copy or copies of the Program or any portion of it,\nthus forming a work based on the Program, and copy and distribute such\nmodifications or work under the terms of Section 1 above, provided that you also\nmeet all of these conditions:\n\n* **a)** You must cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change.\n\n* **b)** You must cause any work that you distribute or publish, that in whole\n or in part contains or is derived from the Program or any part thereof, to\n be licensed as a whole at no charge to all third parties under the terms of\n this License.\n\n* **c)** If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use in the\n most ordinary way, to print or display an announcement including an\n appropriate copyright notice and a notice that there is no warranty (or\n else, saying that you provide a warranty) and that users may redistribute\n the program under these conditions, and telling the user how to view a copy\n of this License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the Program is\n not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n**3.** You may copy and distribute the Program (or a work based on it, under\nSection 2) in object code or executable form under the terms of Sections 1 and 2\nabove provided that you also do one of the following:\n\n* **a)** Accompany it with the complete corresponding machine-readable source\n code, which must be distributed under the terms of Sections 1 and 2 above on\n a medium customarily used for software interchange; or,\n\n* **b)** Accompany it with a written offer, valid for at least three years, to\n give any third party, for a charge no more than your cost of physically\n performing source distribution, a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of Sections 1\n and 2 above on a medium customarily used for software interchange; or,\n\n* **c)** Accompany it with the information you received as to the offer to\n distribute corresponding source code. (This alternative is allowed only for\n noncommercial distribution and only if you received the program in object\n code or executable form with such an offer, in accord with Subsection b\n above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not signed\nit. However, nothing else grants you permission to modify or distribute the\nProgram or its derivative works. These actions are prohibited by law if you do\nnot accept this License. Therefore, by modifying or distributing the Program (or\nany work based on the Program), you indicate your acceptance of this License to\ndo so, and all its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these terms and\nconditions. You may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for enforcing\ncompliance by third parties to this License.\n\n**7.** If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues), conditions\nare imposed on you (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License, they do not excuse you from the\nconditions of this License. If you cannot distribute so as to satisfy\nsimultaneously your obligations under this License and any other pertinent\nobligations, then as a consequence you may not distribute the Program at all.\nFor example, if a patent license would not permit royalty-free redistribution of\nthe Program by all those who receive copies directly or indirectly through you,\nthen the only way you could satisfy both it and this License would be to refrain\nentirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n**9.** The Free Software Foundation may publish revised and/or new versions of\nthe General Public License from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address new\nproblems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by the Free Software Foundation. If the\nProgram does not specify a version number of this License, you may choose any\nversion ever published by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by the Free Software Foundation,\nwrite to the Free Software Foundation; we sometimes make exceptions for this.\nOur decision will be guided by the two goals of preserving the free status of\nall derivatives of our free software and of promoting the sharing and reuse of\nsoftware generally.\n\n\nNo Warranty\n-----------\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n" + } + } + } + ], + "purl": "pkg:npm/color-studio@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/automattic/color-studio#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/automattic/color-studio/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/automattic/color-studio.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-closest@1.0.1", + "author": "Jonathan Ong", + "name": "component-closest", + "version": "1.0.1", + "description": "Find the closest ancestor matching a selector string", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/component-closest@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/closest#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/closest/issues" + }, + { + "type": "vcs", + "url": "git://github.com/component/closest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-matches-selector@0.1.6", + "name": "component-matches-selector", + "version": "0.1.6", + "description": "Check if an element matches a given selector", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/component-matches-selector@0.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/matches-selector#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/matches-selector/issues" + }, + { + "type": "vcs", + "url": "git://github.com/component/matches-selector.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-query@0.0.3", + "name": "component-query", + "version": "0.0.3", + "description": "Query the DOM with selector engine fallback support", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/component-query@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/query#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/query/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/query.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-file-picker@0.2.1", + "author": "Damian Suarez", + "name": "component-file-picker", + "version": "0.2.1", + "description": "File picker component", + "purl": "pkg:npm/component-file-picker@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/file-picker#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/file-picker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/file-picker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookie-parser@1.4.3", + "author": "TJ Holowaychuk", + "name": "cookie-parser", + "version": "1.4.3", + "description": "cookie parsing with signatures", + "hashes": [ + { + "alg": "SHA-512", + "content": "119c8ed86fb3545b0c8d4f230edc6cda22d2d439abc983630b4b38fc81edb12ea958f5094abd24b7450f39cb51668b1e6cf1d87a46fb6cd70806de185b44bd6e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cookie-parser@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/cookie-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/cookie-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/cookie-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/copy-webpack-plugin@4.6.0", + "author": "Len Boyette", + "name": "copy-webpack-plugin", + "version": "4.6.0", + "description": "Copy files && directories with webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "63e490085fb4368590af27b3db35e7e49e649e6afdcfff6a490b7b7db2fbf2ef37af19a280ecbc5f9f81167f02152b97fa7293f20a58c095faf1e92ab50b7a64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/copy-webpack-plugin@4.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/copy-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/copy-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/copy-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cacache@10.0.4", + "author": "Kat Marchán", + "name": "cacache", + "version": "10.0.4", + "description": "Fast, fault-tolerant, cross-platform, disk-based, data-agnostic, content-addressable cache.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e9874333b87fab4d0cc63cd4fd7c09eb3e63268ca7d24fab6bc4978aecd42e1d1695c36e15ccf4564e683d3297303954193b413514120252515e35a28f21f1c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cacache@10.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/cacache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/cacache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/cacache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bluebird@3.5.3", + "author": "Petka Antonov", + "name": "bluebird", + "version": "3.5.3", + "description": "Full featured Promises/A+ implementation with exceptionally good performance", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e9363e860d0cdd7d6fabd969e7ef189201ded33378f39311970464ed58ab925efd71515f9acf1026f2375664dd3a413424fb63765c1f6344392f6e6426711b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018 Petka Antonov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bluebird@3.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/petkaantonov/bluebird" + }, + { + "type": "issue-tracker", + "url": "http://github.com/petkaantonov/bluebird/issues" + }, + { + "type": "vcs", + "url": "git://github.com/petkaantonov/bluebird.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mississippi@2.0.0", + "author": "max ogden", + "name": "mississippi", + "version": "2.0.0", + "description": "a collection of useful streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc7a3cbfea2d0f5275d23fed0be54da062bd91e0ae07284aa2f02f767ef8766c4997dfa65879f1e8432c0cde25811a0c23f798a369dc840c678886d43dbe689f" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/mississippi@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/maxogden/mississippi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/maxogden/mississippi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/maxogden/mississippi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexify@3.6.1", + "author": "Mathias Buus", + "name": "duplexify", + "version": "3.6.1", + "description": "Turn a writable and readable stream into a streams2 duplex stream with support for async initialization and streams1/streams2 input", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3bcfcbafdb03324b9d642a10f52ac757260e5643ab7ddd19dea91c541e7b245d5b6561890ba8cd20a92b50677a63d3bde0ebcee33c21eba8d7c2cdac0b621e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/duplexify@3.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/duplexify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/duplexify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/duplexify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flush-write-stream@1.0.3", + "author": "Mathias Buus", + "name": "flush-write-stream", + "version": "1.0.3", + "description": "A write stream constructor that supports a flush function that is called before finish is emitted", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd9e17845677f7ddae22ad173aa6fd02b7a89ee792629844ea861ba6de7edeed3a2569256ec3e436fdd92a43fd073febfb531609a328490dbc3fce7ed5873bef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/flush-write-stream@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/flush-write-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/flush-write-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/flush-write-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ssri@5.3.0", + "author": "Kat Marchán", + "name": "ssri", + "version": "5.3.0", + "description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d14883ea2e28f9d8cb60a106af1ffc7f754d6a54ab5650001978e1ec47d7360dd8b85deac5cb799cd5a95ff9d2c92a5f445089bf1edf84a301644d4380e8601" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ssri@5.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/ssri#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/ssri/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/ssri.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@1.0.0", + "author": "James Talmage", + "name": "find-cache-dir", + "version": "1.0.0", + "description": "My well-made module", + "hashes": [ + { + "alg": "SHA-512", + "content": "4eae8f8b1134c3f54c15f0a06ce36792240856897f2492fb9d1322db47eacc0e0d46cf407dea8c19e45d3e2df0221624c63781696876af1c1aa67e53bb722a39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-cache-dir@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/find-cache-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/find-cache-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/find-cache-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pkg-dir@2.0.0", + "author": "Sindre Sorhus", + "name": "pkg-dir", + "version": "2.0.0", + "description": "Find the root directory of a Node.js project or npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "73aa6fdce13bf26719f7672479b543aa0d1a592a0a84e4dbc0257aa9b096324e78ea600bf696659f4f90b0dff243b7e4b9c778fb224f2eb0815cdb7c46e93e12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pkg-dir@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pkg-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pkg-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pkg-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globby@7.1.1", + "author": "Sindre Sorhus", + "name": "globby", + "version": "7.1.1", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c9453207d84787e3891af8b5a283e12a4f638d498a5594d7f1ea9c9de7ddbf545d536df96327b7a5c227bba12c1c5622c6a8e756a1c49dbb6b71c0117d6e399" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globby@7.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globby#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globby/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globby.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dir-glob@2.0.0", + "author": "Kevin Mårtensson", + "name": "dir-glob", + "version": "2.0.0", + "description": "Convert directories to glob compatible strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "7fd2c18b9416cc85b723a7bffeec59a0b06552df64729ebaaa8d2c482c4be9864a73be51d5ce0c142a1efcb6998811a682e8ef41dc5ce419f74217f2bcae47b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Kevin Mårtensson (github.com/kevva)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dir-glob@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kevva/dir-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kevva/dir-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kevva/dir-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@1.6.1", + "author": "Eric Ferraiuolo", + "name": "serialize-javascript", + "version": "1.6.1", + "description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d156ffe78589ea4e6ff2c496374f52d28adaf879ebf9c5f8d2bf45d7bd274fe99291ac65b6813fed1dceac8741494bf53a88a86c7d50a1641b0a700ef9ef09d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2014 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/serialize-javascript@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yahoo/serialize-javascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yahoo/serialize-javascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yahoo/serialize-javascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cpf_cnpj@0.2.0", + "author": "Nando Vieira", + "name": "cpf_cnpj", + "version": "0.2.0", + "description": "Validate, generate and format CPF/CNPJ numbers", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cpf_cnpj@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fnando/cpf_cnpj.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fnando/cpf_cnpj.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fnando/cpf_cnpj.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-react-class@15.6.3", + "name": "create-react-class", + "version": "15.6.3", + "description": "Legacy API for creating React components.", + "hashes": [ + { + "alg": "SHA-512", + "content": "419bf8b05586f52e5152f9136166df9717995fe246ec2cf44e7df7ad0049f961504ea4df5138cc8e2bfdb677d76b38ec3b9af42a13ecf80a828f2ad05fa8769e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-react-class@15.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.io/react/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/creditcards@3.0.1", + "author": "Ben Drucker", + "name": "creditcards", + "version": "3.0.1", + "description": "Utility methods for formatting and validating credit cards", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Drucker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/creditcards@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/creditcards" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/creditcards/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/creditcards.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-find@1.0.0", + "author": "Stefan Duberg", + "name": "array-find", + "version": "1.0.0", + "description": "ES6 Array.find ponyfill. Return the first array element which satisfies a testing function.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) Stefan Duberg\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-find@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanduberg/array-find" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanduberg/array-find/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanduberg/array-find.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/creditcards-types@2.0.0", + "author": "Ben Drucker", + "name": "creditcards-types", + "version": "2.0.0", + "description": "Card type definitions and methods for creditcards", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Drucker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/creditcards-types@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/creditcards-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/creditcards-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/creditcards-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-luhn@1.0.3", + "author": "Ben Drucker", + "name": "fast-luhn", + "version": "1.0.3", + "description": "A fast Luhn algorithm for validating credit cards", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.me)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-luhn@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/fast-luhn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/fast-luhn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/fast-luhn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-valid-month@1.0.0", + "author": "Ben Drucker", + "name": "is-valid-month", + "version": "1.0.0", + "description": "Check if a number is a valid month", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.m/,e)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-valid-month@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/is-valid-month#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/is-valid-month/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/is-valid-month.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-int@1.0.3", + "author": "Ben Drucker", + "name": "parse-int", + "version": "1.0.3", + "description": "Strict integer parsing", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.me)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-int@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/parse-int#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/parse-int/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/parse-int.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-year@1.0.0", + "author": "Ben Drucker", + "name": "parse-year", + "version": "1.0.0", + "description": "Parse a year into its full number value", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.me)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-year@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/parse-year#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/parse-year/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/parse-year.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-year@1.0.0", + "author": "Ben Drucker", + "name": "expand-year", + "version": "1.0.0", + "description": "Expand a short year to a full year (15 -> 2015)", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.me)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/expand-year@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/expand-year#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/expand-year/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/expand-year.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/zero-fill@2.2.3", + "author": "Feross Aboukhadijeh", + "name": "zero-fill", + "version": "2.2.3", + "description": "Zero-fill a number to the given size.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcde461036ae2c7cf6b869ee25758ed567e26f8102faae32a7d0b58e88cced1b9bc042800ea22a31c629113326d65468a78d377e2defd6a4ce7600c4f0320e77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/zero-fill@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/zero-fill#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/zero-fill/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/zero-fill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cross-env@5.2.0", + "author": "Kent C. Dodds", + "name": "cross-env", + "version": "5.2.0", + "description": "Run scripts that set and use environment variables across platforms", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fc0051008ae274c39de8bbaae7bb7162a5a8aed56e993bd1987dddf7bb17b59002225ccd1f0fc427226ee8adc2413aded6402e4f972eb713b5995bf8d233e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2017 Kent C. Dodds\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cross-env@5.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kentcdodds/cross-env#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kentcdodds/cross-env/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kentcdodds/cross-env.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-loader@1.0.1", + "author": "Tobias Koppers @sokra", + "name": "css-loader", + "version": "1.0.1", + "description": "css loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "c28bc7823031f1920c1922fca53cacede740d42966cf11de63a9ff77dee0839a1d82cc4480a8d42cf474be2ab20be1563022fdb1faa80bf402501a3adad2ef3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-loader@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/css-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/css-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/css-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-selector-tokenizer@0.7.1", + "author": "Tobias Koppers @sokra", + "name": "css-selector-tokenizer", + "version": "0.7.1", + "description": "Parses and stringifies CSS selectors", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d642fde80842f990c12b8f8c119cafce3e8062d03f8fd4547670308a60f68c783d9e5b7fe6b6d6aff074f8853d422a8a62248fe9b0450b8e40a586f268e0bbe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2015 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-selector-tokenizer@0.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/css-selector-tokenizer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/css-selector-tokenizer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/css-selector-tokenizer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssesc@0.1.0", + "author": "Mathias Bynens", + "name": "cssesc", + "version": "0.1.0", + "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef66af6f6bc222c34306548c62ec6dd829a0e99e134c6aa27db946b3b2171a2861b84ce08426fd3eed58eafcd53cb0b4dce4d79c02ac4e6f760a165de2ecd505" + } + ], + "purl": "pkg:npm/cssesc@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://mths.be/cssesc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/cssesc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/cssesc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fastparse@1.1.2", + "author": "Tobias Koppers @sokra", + "name": "fastparse", + "version": "1.1.2", + "description": "A very simple and stupid parser, based on a statemachine and regular expressions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3cdd72cbc53548c162b7413acc191a947d4a683acff485b42b976a33e09d2901c9b70376eef38c314c5a86aa42737b008b74c137f3124b240c410017d04fcb1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2018 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fastparse@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/fastparse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/fastparse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/fastparse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpu-core@1.0.0", + "author": "Mathias Bynens", + "name": "regexpu-core", + "version": "1.0.0", + "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a2fa50d196f00494a8c5a7991eaa65546892ea6621f2c1e91786c853eb0554c8339b18f77298d3e1c4199fdfc655b1a5063a7677168b7d633c6fa08df5ca663" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regexpu-core@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regexpu" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regexpu-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regexpu-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/icss-utils@2.1.0", + "author": "Glen Maddern", + "name": "icss-utils", + "version": "2.1.0", + "description": "ICSS utils for postcss ast", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ec568ca7ff55784759186232dc58b79da3300ce050a565476313d9c8afcb9663bc6cefccbd0c04e0c33db0194eccfbbcf9e4a7a79a64e43760d527b6eace300" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/icss-utils@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/icss-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/icss-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/icss-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-extract-imports@1.2.1", + "author": "Glen Maddern", + "name": "postcss-modules-extract-imports", + "version": "1.2.1", + "description": "A CSS Modules transform to extract local aliases for inline imports", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea3b7d5d9c148709915216ff0a4c89634db43d868f26c0b2b775236da5a8e9711b1fff781e6bfa30fedf1b60b934353f05c1f3c8663136d1ef33e2d37fd1eb63" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2015 Glen Maddern\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-modules-extract-imports@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-extract-imports" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-extract-imports.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-local-by-default@1.2.0", + "author": "Mark Dalgleish", + "name": "postcss-modules-local-by-default", + "version": "1.2.0", + "description": "A CSS Modules transform to make local scope the default", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f872ab943c868077ceab695ac1c0ef1fc117e421d6f016eec24df10e8e26501d5430947452913807e4d2c398c9b9fb58503bcbba759f9338e2436dacb5858a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Mark Dalgleish \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-modules-local-by-default@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-local-by-default#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-local-by-default/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-local-by-default.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-scope@1.1.0", + "author": "Glen Maddern", + "name": "postcss-modules-scope", + "version": "1.1.0", + "description": "A CSS Modules transform to extract export statements from local-scope classes", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d36309c0e02d477b504a657231d426221e2c5d49ef4b59854a69dabd94ae5a082324a0e905c99eda8a0b7eb2b7e3951a65258de022897a29435e7dd31025d97" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/postcss-modules-scope@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-scope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-scope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-scope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-values@1.3.0", + "author": "Glen Maddern", + "name": "postcss-modules-values", + "version": "1.3.0", + "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bb205691f61950ebfd14805baa33a6166827c0d448fc58c83c0390e08271f5506289bd357fba0aaafca6942e2c73cce8b74ffb45e829415dc1c60b375de6e9c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/postcss-modules-values@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/postcss-modules-values#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/postcss-modules-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/postcss-modules-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-array@2.0.3", + "author": "Mike Bostock", + "name": "d3-array", + "version": "2.0.3", + "description": "Array manipulation, ordering, searching, summarizing, etc.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2018 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-array@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-array/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-array/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-array.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-axis@1.0.12", + "author": "Mike Bostock", + "name": "d3-axis", + "version": "1.0.12", + "description": "Displays automatic reference lines for scales.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-axis@1.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-axis/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-axis/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-axis.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-scale@2.1.2", + "author": "Mike Bostock", + "name": "d3-scale", + "version": "2.1.2", + "description": "Encodings that map abstract data to visual representation.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2015 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-scale@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-scale/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-scale/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-scale.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-array@1.2.4", + "author": "Mike Bostock", + "name": "d3-array", + "version": "1.2.4", + "description": "Array manipulation, ordering, searching, summarizing, etc.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-array@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-array/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-array/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-array.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-collection@1.0.7", + "author": "Mike Bostock", + "name": "d3-collection", + "version": "1.0.7", + "description": "Handy data structures for elements keyed by string.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2016, Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-collection@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-collection/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-collection/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-collection.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-format@1.3.2", + "author": "Mike Bostock", + "name": "d3-format", + "version": "1.3.2", + "description": "Format numbers for human consumption.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2015 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-format@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-format/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-format/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-format.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@1.3.2", + "author": "Mike Bostock", + "name": "d3-interpolate", + "version": "1.3.2", + "description": "Interpolate numbers, colors, strings, arrays, objects, whatever!", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-interpolate@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-interpolate/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-interpolate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-interpolate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-color@1.2.3", + "author": "Mike Bostock", + "name": "d3-color", + "version": "1.2.3", + "description": "Color spaces! RGB, HSL, Cubehelix, Lab and HCL (Lch).", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-color@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-color/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-time@1.0.10", + "author": "Mike Bostock", + "name": "d3-time", + "version": "1.0.10", + "description": "A calculator for humanity’s peculiar conventions of time.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-time@1.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-time/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-time/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-time.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-time-format@2.1.3", + "author": "Mike Bostock", + "name": "d3-time-format", + "version": "2.1.3", + "description": "A JavaScript time formatter and parser inspired by strftime and strptime.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2017 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-time-format@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-time-format/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-time-format/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-time-format.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-selection@1.3.2", + "author": "Mike Bostock", + "name": "d3-selection", + "version": "1.3.2", + "description": "Data-driven DOM manipulation: select elements and join them to data.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2010-2018, Michael Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* The name Michael Bostock may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-selection@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-selection/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-selection/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-selection.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-shape@1.2.2", + "author": "Mike Bostock", + "name": "d3-shape", + "version": "1.2.2", + "description": "Graphical primitives for visualization, such as lines and areas.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2010-2015 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-shape@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-shape/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-shape/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-shape.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d3-path@1.0.7", + "author": "Mike Bostock", + "name": "d3-path", + "version": "1.0.7", + "description": "Serialize Canvas path commands to SVG.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2015-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/d3-path@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://d3js.org/d3-path/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/d3/d3-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/d3/d3-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-freeze@0.0.1", + "author": "James Halliday", + "name": "deep-freeze", + "version": "0.0.1", + "description": "recursively Object.freeze() objects and functions", + "licenses": [ + { + "license": { + "name": "public domain", + "text": { + "content": "This software is released to the public domain.\n\nIt is based in part on the deepFreeze function from:\nhttps://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Object/freeze\n\nhttps://developer.mozilla.org/en-US/docs/Project:Copyrights\n" + } + } + } + ], + "purl": "pkg:npm/deep-freeze@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/deep-freeze" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/deep-freeze/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/deep-freeze.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-helpers@3.4.0", + "author": "Jason Quense", + "name": "dom-helpers", + "version": "3.4.0", + "description": "tiny modular DOM lib for ie8+", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e7b8f27e770a8a0c8ca8b56d55ce6399e5338d50dec2c24091e61ae06b04d46e404661d7a834b668ea735f1a40ab8ed1359d75da8fb88c3290daf3f77d5a820" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jason Quense\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/dom-helpers@3.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jquense/dom-helpers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquense/dom-helpers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquense/dom-helpers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dompurify@1.0.8", + "author": "Mario Heiderich", + "name": "dompurify", + "version": "1.0.8", + "description": "DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not.", + "licenses": [ + { + "license": { + "name": "MPL-2.0 OR Apache-2.0", + "text": { + "content": "DOMPurify\nCopyright 2015 Mario Heiderich\n\nDOMPurify is free software; you can redistribute it and/or modify it under the\nterms of either:\n\na) the Apache License Version 2.0, or\nb) the Mozilla Public License Version 2.0\n\n-----------------------------------------------------------------------------\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-----------------------------------------------------------------------------\nMozilla Public License, version 2.0\n\n1. Definitions\n\n1.1. “Contributor”\n\n means each individual or legal entity that creates, contributes to the\n creation of, or owns Covered Software.\n\n1.2. “Contributor Version”\n\n means the combination of the Contributions of others (if any) used by a\n Contributor and that particular Contributor’s Contribution.\n\n1.3. “Contribution”\n\n means Covered Software of a particular Contributor.\n\n1.4. “Covered Software”\n\n means Source Code Form to which the initial Contributor has attached the\n notice in Exhibit A, the Executable Form of such Source Code Form, and\n Modifications of such Source Code Form, in each case including portions\n thereof.\n\n1.5. “Incompatible With Secondary Licenses”\n means\n\n a. that the initial Contributor has attached the notice described in\n Exhibit B to the Covered Software; or\n\n b. that the Covered Software was made available under the terms of version\n 1.1 or earlier of the License, but not also under the terms of a\n Secondary License.\n\n1.6. “Executable Form”\n\n means any form of the work other than Source Code Form.\n\n1.7. “Larger Work”\n\n means a work that combines Covered Software with other material, in a separate\n file or files, that is not Covered Software.\n\n1.8. “License”\n\n means this document.\n\n1.9. “Licensable”\n\n means having the right to grant, to the maximum extent possible, whether at the\n time of the initial grant or subsequently, any and all of the rights conveyed by\n this License.\n\n1.10. “Modifications”\n\n means any of the following:\n\n a. any file in Source Code Form that results from an addition to, deletion\n from, or modification of the contents of Covered Software; or\n\n b. any new file in Source Code Form that contains any Covered Software.\n\n1.11. “Patent Claims” of a Contributor\n\n means any patent claim(s), including without limitation, method, process,\n and apparatus claims, in any patent Licensable by such Contributor that\n would be infringed, but for the grant of the License, by the making,\n using, selling, offering for sale, having made, import, or transfer of\n either its Contributions or its Contributor Version.\n\n1.12. “Secondary License”\n\n means either the GNU General Public License, Version 2.0, the GNU Lesser\n General Public License, Version 2.1, the GNU Affero General Public\n License, Version 3.0, or any later versions of those licenses.\n\n1.13. “Source Code Form”\n\n means the form of the work preferred for making modifications.\n\n1.14. “You” (or “Your”)\n\n means an individual or a legal entity exercising rights under this\n License. For legal entities, “You” includes any entity that controls, is\n controlled by, or is under common control with You. For purposes of this\n definition, “control” means (a) the power, direct or indirect, to cause\n the direction or management of such entity, whether by contract or\n otherwise, or (b) ownership of more than fifty percent (50%) of the\n outstanding shares or beneficial ownership of such entity.\n\n\n2. License Grants and Conditions\n\n2.1. Grants\n\n Each Contributor hereby grants You a world-wide, royalty-free,\n non-exclusive license:\n\n a. under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or as\n part of a Larger Work; and\n\n b. under Patent Claims of such Contributor to make, use, sell, offer for\n sale, have made, import, and otherwise transfer either its Contributions\n or its Contributor Version.\n\n2.2. Effective Date\n\n The licenses granted in Section 2.1 with respect to any Contribution become\n effective for each Contribution on the date the Contributor first distributes\n such Contribution.\n\n2.3. Limitations on Grant Scope\n\n The licenses granted in this Section 2 are the only rights granted under this\n License. No additional rights or licenses will be implied from the distribution\n or licensing of Covered Software under this License. Notwithstanding Section\n 2.1(b) above, no patent license is granted by a Contributor:\n\n a. for any code that a Contributor has removed from Covered Software; or\n\n b. for infringements caused by: (i) Your and any other third party’s\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n c. under Patent Claims infringed by Covered Software in the absence of its\n Contributions.\n\n This License does not grant any rights in the trademarks, service marks, or\n logos of any Contributor (except as may be necessary to comply with the\n notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\n No Contributor makes additional grants as a result of Your choice to\n distribute the Covered Software under a subsequent version of this License\n (see Section 10.2) or under the terms of a Secondary License (if permitted\n under the terms of Section 3.3).\n\n2.5. Representation\n\n Each Contributor represents that the Contributor believes its Contributions\n are its original creation(s) or it has sufficient rights to grant the\n rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\n This License is not intended to limit any rights You have under applicable\n copyright doctrines of fair use, fair dealing, or other equivalents.\n\n2.7. Conditions\n\n Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in\n Section 2.1.\n\n\n3. Responsibilities\n\n3.1. Distribution of Source Form\n\n All distribution of Covered Software in Source Code Form, including any\n Modifications that You create or to which You contribute, must be under the\n terms of this License. You must inform recipients that the Source Code Form\n of the Covered Software is governed by the terms of this License, and how\n they can obtain a copy of this License. You may not attempt to alter or\n restrict the recipients’ rights in the Source Code Form.\n\n3.2. Distribution of Executable Form\n\n If You distribute Covered Software in Executable Form then:\n\n a. such Covered Software must also be made available in Source Code Form,\n as described in Section 3.1, and You must inform recipients of the\n Executable Form how they can obtain a copy of such Source Code Form by\n reasonable means in a timely manner, at a charge no more than the cost\n of distribution to the recipient; and\n\n b. You may distribute such Executable Form under the terms of this License,\n or sublicense it under different terms, provided that the license for\n the Executable Form does not attempt to limit or alter the recipients’\n rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\n You may create and distribute a Larger Work under terms of Your choice,\n provided that You also comply with the requirements of this License for the\n Covered Software. If the Larger Work is a combination of Covered Software\n with a work governed by one or more Secondary Licenses, and the Covered\n Software is not Incompatible With Secondary Licenses, this License permits\n You to additionally distribute such Covered Software under the terms of\n such Secondary License(s), so that the recipient of the Larger Work may, at\n their option, further distribute the Covered Software under the terms of\n either this License or such Secondary License(s).\n\n3.4. Notices\n\n You may not remove or alter the substance of any license notices (including\n copyright notices, patent notices, disclaimers of warranty, or limitations\n of liability) contained within the Source Code Form of the Covered\n Software, except that You may alter any license notices to the extent\n required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\n You may choose to offer, and to charge a fee for, warranty, support,\n indemnity or liability obligations to one or more recipients of Covered\n Software. However, You may do so only on Your own behalf, and not on behalf\n of any Contributor. You must make it absolutely clear that any such\n warranty, support, indemnity, or liability obligation is offered by You\n alone, and You hereby agree to indemnify every Contributor for any\n liability incurred by such Contributor as a result of warranty, support,\n indemnity or liability terms You offer. You may include additional\n disclaimers of warranty and limitations of liability specific to any\n jurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n\n If it is impossible for You to comply with any of the terms of this License\n with respect to some or all of the Covered Software due to statute, judicial\n order, or regulation then You must: (a) comply with the terms of this License\n to the maximum extent possible; and (b) describe the limitations and the code\n they affect. Such description must be placed in a text file included with all\n distributions of the Covered Software under this License. Except to the\n extent prohibited by statute or regulation, such description must be\n sufficiently detailed for a recipient of ordinary skill to be able to\n understand it.\n\n5. Termination\n\n5.1. The rights granted under this License will terminate automatically if You\n fail to comply with any of its terms. However, if You become compliant,\n then the rights granted under this License from a particular Contributor\n are reinstated (a) provisionally, unless and until such Contributor\n explicitly and finally terminates Your grants, and (b) on an ongoing basis,\n if such Contributor fails to notify You of the non-compliance by some\n reasonable means prior to 60 days after You have come back into compliance.\n Moreover, Your grants from a particular Contributor are reinstated on an\n ongoing basis if such Contributor notifies You of the non-compliance by\n some reasonable means, this is the first time You have received notice of\n non-compliance with this License from such Contributor, and You become\n compliant prior to 30 days after Your receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\n infringement claim (excluding declaratory judgment actions, counter-claims,\n and cross-claims) alleging that a Contributor Version directly or\n indirectly infringes any patent, then the rights granted to You by any and\n all Contributors for the Covered Software under Section 2.1 of this License\n shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user\n license agreements (excluding distributors and resellers) which have been\n validly granted by You or Your distributors under this License prior to\n termination shall survive termination.\n\n6. Disclaimer of Warranty\n\n Covered Software is provided under this License on an “as is” basis, without\n warranty of any kind, either expressed, implied, or statutory, including,\n without limitation, warranties that the Covered Software is free of defects,\n merchantable, fit for a particular purpose or non-infringing. The entire\n risk as to the quality and performance of the Covered Software is with You.\n Should any Covered Software prove defective in any respect, You (not any\n Contributor) assume the cost of any necessary servicing, repair, or\n correction. This disclaimer of warranty constitutes an essential part of this\n License. No use of any Covered Software is authorized under this License\n except under this disclaimer.\n\n7. Limitation of Liability\n\n Under no circumstances and under no legal theory, whether tort (including\n negligence), contract, or otherwise, shall any Contributor, or anyone who\n distributes Covered Software as permitted above, be liable to You for any\n direct, indirect, special, incidental, or consequential damages of any\n character including, without limitation, damages for lost profits, loss of\n goodwill, work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses, even if such party shall have been\n informed of the possibility of such damages. This limitation of liability\n shall not apply to liability for death or personal injury resulting from such\n party’s negligence to the extent applicable law prohibits such limitation.\n Some jurisdictions do not allow the exclusion or limitation of incidental or\n consequential damages, so this exclusion and limitation may not apply to You.\n\n8. Litigation\n\n Any litigation relating to this License may be brought only in the courts of\n a jurisdiction where the defendant maintains its principal place of business\n and such litigation shall be governed by laws of that jurisdiction, without\n reference to its conflict-of-law provisions. Nothing in this Section shall\n prevent a party’s ability to bring cross-claims or counter-claims.\n\n9. Miscellaneous\n\n This License represents the complete agreement concerning the subject matter\n hereof. If any provision of this License is held to be unenforceable, such\n provision shall be reformed only to the extent necessary to make it\n enforceable. Any law or regulation which provides that the language of a\n contract shall be construed against the drafter shall not be used to construe\n this License against a Contributor.\n\n\n10. Versions of the License\n\n10.1. New Versions\n\n Mozilla Foundation is the license steward. Except as provided in Section\n 10.3, no one other than the license steward has the right to modify or\n publish new versions of this License. Each version will be given a\n distinguishing version number.\n\n10.2. Effect of New Versions\n\n You may distribute the Covered Software under the terms of the version of\n the License under which You originally received the Covered Software, or\n under the terms of any subsequent version published by the license\n steward.\n\n10.3. Modified Versions\n\n If you create software not governed by this License, and you want to\n create a new license for such software, you may create and use a modified\n version of this License if you rename the license and remove any\n references to the name of the license steward (except to note that such\n modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\n If You choose to distribute Source Code Form that is Incompatible With\n Secondary Licenses under the terms of this version of the License, the\n notice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n\n This Source Code Form is subject to the\n terms of the Mozilla Public License, v.\n 2.0. If a copy of the MPL was not\n distributed with this file, You can\n obtain one at\n http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular file, then\nYou may include the notice in a location (such as a LICENSE file in a relevant\ndirectory) where a recipient would be likely to look for such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - “Incompatible With Secondary Licenses” Notice\n\n This Source Code Form is “Incompatible\n With Secondary Licenses”, as defined by\n the Mozilla Public License, v. 2.0.\n\n" + } + } + } + ], + "purl": "pkg:npm/dompurify@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cure53/DOMPurify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cure53/DOMPurify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cure53/DOMPurify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/draft-js@0.10.5", + "name": "draft-js", + "version": "0.10.5", + "description": "A React framework for building text editors.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c4ea348257d9e43e17d55f68207112c0e052aceb35aaf5c7ae3bff3c0695dd3424bb9a345382cd0db15ea98940895fd63132c07d027df7c2790c994dac0f666" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD License\n\nFor Draft.js software\n\nCopyright (c) 2013-present, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/draft-js@0.10.5", + "externalReferences": [ + { + "type": "website", + "url": "http://draftjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/draft-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/draft-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/immutable@3.7.6", + "author": "Lee Byron", + "name": "immutable", + "version": "3.7.6", + "description": "Immutable Data Collections", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0d92ea954c0f23a86d50e9cf948254ce0f5c610b506d8ca23b5e4097464647acde66d7cfd7b27529f10f3d1a440eff3fb45a3a274af97414b84361fb69e3a9d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD License\n\nFor Immutable JS software\n\nCopyright (c) 2014-2015, Facebook, Inc. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/immutable@3.7.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/immutable-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/immutable-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/facebook/immutable-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplicate-package-checker-webpack-plugin@3.0.0", + "author": "Darren Scerri", + "name": "duplicate-package-checker-webpack-plugin", + "version": "3.0.0", + "description": "Webpack plugin that warns you when multiple versions of the same package exist in a build.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Darren Scerri\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/duplicate-package-checker-webpack-plugin@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-root@1.1.0", + "author": "jsdnxx", + "name": "find-root", + "version": "1.1.0", + "description": "find the closest package.json", + "hashes": [ + { + "alg": "SHA-512", + "content": "34a7d6e9b79ce867ca734486c757b4ed0658f4f13df6ed017edff4af3483e64dec3bfbf09155290d42959b91a9a7951edd87d284f1535f6d3bd2d0ece6407d36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright © 2017 jsdnxx\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/find-root@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/js-n/find-root#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/js-n/find-root/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/js-n/find-root.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/email-validator@2.0.4", + "author": "Manish Saraan", + "name": "email-validator", + "version": "2.0.4", + "description": "Provides a fast, pretty robust e-mail validator. Only checks form, not function.", + "purl": "pkg:npm/email-validator@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/manishsaraan/email-validator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/manishsaraan/email-validator/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/manishsaraan/email-validator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/emoji-text@0.2.6", + "author": "Wedgies, Inc.", + "name": "emoji-text", + "version": "0.2.6", + "description": "Convert emoji to accessible text-only descriptions", + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/emoji-text@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wedgies/emoji-text" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wedgies/emoji-text/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wedgies/emoji-text.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wemoji@0.1.9", + "author": "Pawel Szymczykowski", + "name": "wemoji", + "version": "0.1.9", + "description": "Universal emoji database, drop-in replacement for gemoji.", + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/wemoji@0.1.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wedgies/wemoji" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wedgies/wemoji/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wedgies/wemoji.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escape-regexp@0.0.1", + "name": "escape-regexp", + "version": "0.0.1", + "description": "Escape regular expression special characters", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d581db1845aed12b14d3e8c28d0b781d4fe045d067e1a5e975f7e1cc459242d8bd0fb9f0745ce06e5c1a178f6f4d287c2e92d9c05ddd59d65ca21fff2f393a7" + } + ], + "purl": "pkg:npm/escape-regexp@0.0.1" + }, + { + "type": "library", + "bom-ref": "pkg:npm/exports-loader@0.7.0", + "author": "Tobias Koppers @sokra", + "name": "exports-loader", + "version": "0.7.0", + "description": "exports loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "9284524c9ae87178b797b30a5d224f6cd29499ec15d827b0b160995bee4a631824899063944a3867e0c9b870eae16cce8b5f5dae5cae4f5c58ec00e6c259fccd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/exports-loader@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://webpack.js.org/loaders/exports-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/exports-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/exports-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.5.0", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.5.0", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "purl": "pkg:npm/source-map@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/express@4.16.4", + "author": "TJ Holowaychuk", + "name": "express", + "version": "4.16.4", + "description": "Fast, unopinionated, minimalist web framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd905c397f537de847421b6ea6ae7b385f25159dd4662d3c63deddc050a40fca7d77f77663733eca429cc1a30310bfb8ab25289600435fa01b9694777cbdb5d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2009-2014 TJ Holowaychuk \nCopyright (c) 2013-2014 Roman Shtylman \nCopyright (c) 2014-2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/express@4.16.4", + "externalReferences": [ + { + "type": "website", + "url": "http://expressjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/express/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/express.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/accepts@1.3.5", + "name": "accepts", + "version": "1.3.5", + "description": "Higher-level content negotiation", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d802d8536b69b654ac6ebd20f70cf0bf1b2f94fac380d4b02e4fc9a4991bafc3e34009269e5c443e34771517bace365eaa71ac55dd4b9e9b06b093eefe4892f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/accepts@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/accepts#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/accepts/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/accepts.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/content-disposition@0.5.2", + "name": "content-disposition", + "version": "0.5.2", + "description": "Create and parse Content-Disposition header", + "hashes": [ + { + "alg": "SHA-512", + "content": "16f7994cdb86c34e1cc6502259bce2eb34c02ff9617a16966d3b6096e261e3f13de43a8cc139a16b7299375680580f1c148847ccc654bcb7af930e51aa4fad49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/content-disposition@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/content-disposition#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/content-disposition/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/content-disposition.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/finalhandler@1.1.1", + "author": "Douglas Christopher Wilson", + "name": "finalhandler", + "version": "1.1.1", + "description": "Node.js final http responder", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d8ba1d54cc61823a846fadb1980aaea67a6bf1e35af1302afed174fd36d8885aa186ee16c205c3cc0514288b9b0c643cd33b1c22bafeff8303edac33b3efa09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/finalhandler@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/finalhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/finalhandler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/finalhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parseurl@1.3.2", + "name": "parseurl", + "version": "1.3.2", + "description": "parse a url with memoization", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a2c9e3b1153fc96723799b4cfd3df5f0e1208127a4b2833d43a65d30aa39610c418604fd469ec51510bd29eb78681b57dc8f77c7ca75e2f4d60ee2758e2fea9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\n(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2017 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parseurl@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/parseurl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/parseurl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/parseurl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/statuses@1.4.0", + "name": "statuses", + "version": "1.4.0", + "description": "HTTP status utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a9677ccffa34f53c8ec8f277a6257e002a6017d3bd199183d5595fc068a4c997eb570931b255d0b56b848bf11510604c24fdfdf8657f144f290debc170aea00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/statuses@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/statuses#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/statuses/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/statuses.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/proxy-addr@2.0.4", + "author": "Douglas Christopher Wilson", + "name": "proxy-addr", + "version": "2.0.4", + "description": "Determine address of proxied request", + "hashes": [ + { + "alg": "SHA-512", + "content": "6afd4c439bf04e23080b053be4a49ffef27a6be0173f432d3fe69806a9b6445962adeec13fab1695f38b73cfbac0842bcb0c9ca92a495a6e7336460591101158" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/proxy-addr@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/proxy-addr#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/proxy-addr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/proxy-addr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ipaddr.js@1.8.0", + "author": "whitequark", + "name": "ipaddr.js", + "version": "1.8.0", + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0a23feb4ef1a31493a07ec68cdd457d26cba14d3e6ed4e2723b1049642587f859ca437c2a998c7fbb98c0f5b747e6a467a47fc35f199574870585e26143cede" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ipaddr.js@1.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/whitequark/ipaddr.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/whitequark/ipaddr.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/whitequark/ipaddr.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/range-parser@1.2.0", + "author": "TJ Holowaychuk", + "name": "range-parser", + "version": "1.2.0", + "description": "Range header field string parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "1eb82cc7ea2baa8ca09e68456ca68713a736f7a27e1d30105e8c4417a80dba944e9a6189468cb37c6ddc700bdea8206bc2bff6cb143905577f1939796a03b04a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 TJ Holowaychuk \nCopyright (c) 2015-2016 Douglas Christopher Wilson (numetriclabs.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-video-id@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/radiovisual/get-video-id#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/radiovisual/get-video-id/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/radiovisual/get-video-id.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-src@1.0.1", + "author": "Michael Wuergler", + "name": "get-src", + "version": "1.0.1", + "description": "Get the 'src' value from any string containing a src="" (embed, iframe, html, etc).", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f068e12edeb381d6d0706d01a9d60dc825280d14260bc448afaf78fa61a0d01558002ce881dc05e55ed31ec3271628f78bab4df1fb44a1418fb09bcedc3f505" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Michael Wuergler (numetriclabs.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-src@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/radiovisual/get-src#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/radiovisual/get-src/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/radiovisual/get-src.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gfm-code-blocks@1.0.0", + "author": "Jon Schlinkert", + "name": "gfm-code-blocks", + "version": "1.0.0", + "description": "Extract gfm (GitHub Flavored Markdown) fenced code blocks from a string.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gfm-code-blocks@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/gfm-code-blocks" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/gfm-code-blocks/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/gfm-code-blocks.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gfm-code-block-regex@1.0.0", + "author": "Jon Schlinkert", + "name": "gfm-code-block-regex", + "version": "1.0.0", + "description": "RegExp for gfm (GitHub Flavored Markdown) fenced code blocks.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gfm-code-block-regex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexhq/gfm-code-block-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexhq/gfm-code-block-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexhq/gfm-code-block-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globby@9.0.0", + "author": "Sindre Sorhus", + "name": "globby", + "version": "9.0.0", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c9453207d84787e3891af8b5a283e12a4f638d498a5594d7f1ea9c9de7ddbf545d536df96327b7a5c227bba12c1c5622c6a8e756a1c49dbb6b71c0117d6e399" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globby@9.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globby#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globby/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globby.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dir-glob@2.2.1", + "author": "Kevin Mårtensson", + "name": "dir-glob", + "version": "2.2.1", + "description": "Convert directories to glob compatible strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "7fd2c18b9416cc85b723a7bffeec59a0b06552df64729ebaaa8d2c482c4be9864a73be51d5ce0c142a1efcb6998811a682e8ef41dc5ce419f74217f2bcae47b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Kevin Mårtensson (github.com/kevva)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dir-glob@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kevva/dir-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kevva/dir-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kevva/dir-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-glob@2.2.6", + "author": "Denis Malinochkin", + "name": "fast-glob", + "version": "2.2.6", + "description": "Is a faster `node-glob` alternative", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6b3b7fb56f14a8dd9547027ab3cae7b0613e9a3051d101de0a72cf76300a278f04192ec2bd774485d48c90de4e4fa22af14d6d0e7bf46a160310e9370d13913" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Denis Malinochkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-glob@2.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mrmlnc/fast-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mrmlnc/fast-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mrmlnc/fast-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mrmlnc/readdir-enhanced@2.2.1", + "author": "James Messinger", + "group": "@mrmlnc", + "name": "readdir-enhanced", + "version": "2.2.1", + "description": "fs.readdir with sync, async, and streaming APIs + filtering, recursion, absolute paths, etc.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cf1e9e898bc6f8d6ccd339c68feb75659db6cee4dcba7700004ed63a2538e1e4dd8e2eb6f9424fd38797119114219160adf8426c62b341d0c88bf86a67e9ede" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 James Messinger\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n." + } + } + } + ], + "purl": "pkg:npm/%40mrmlnc/readdir-enhanced@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bigstickcarpet/readdir-enhanced" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bigstickcarpet/readdir-enhanced/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bigstickcarpet/readdir-enhanced.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/call-me-maybe@1.0.1", + "author": "Eric McCarthy", + "name": "call-me-maybe", + "version": "1.0.1", + "description": "Let your JS API users either give you a callback or receive a promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "c02c85b0342428fc3017c043c0e896371ffd2b8e4bfe1be08108836ef7bebe230d3109d686b95822e064d3da1f7dfc0246d08ef4fe97c14b6db9fcd4d7558257" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Eric McCarthy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/call-me-maybe@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/limulus/call-me-maybe#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/limulus/call-me-maybe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/limulus/call-me-maybe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob-to-regexp@0.3.0", + "author": "Nick Fitzgerald", + "name": "glob-to-regexp", + "version": "0.3.0", + "description": "Convert globs to regular expressions", + "hashes": [ + { + "alg": "SHA-512", + "content": "228ce6b5baafd27a23d2e0c3aa82f4ccdab454111f2b6605a0c019a3125ee1cc2986f2d1f89b247c5df44215c7391e26dcaac4e8d2d1630f94f4c457be27f28a" + } + ], + "licenses": [ + { + "license": { + "name": "BSD" + } + } + ], + "purl": "pkg:npm/glob-to-regexp@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fitzgen/glob-to-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fitzgen/glob-to-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fitzgen/glob-to-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40nodelib/fs.stat@1.1.3", + "group": "@nodelib", + "name": "fs.stat", + "version": "1.1.3", + "description": "Get the status of a file with some features", + "hashes": [ + { + "alg": "SHA-512", + "content": "46484f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40nodelib/fs.stat@1.1.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/merge2@1.2.3", + "name": "merge2", + "version": "1.2.3", + "description": "Merge multiple streams into one stream in sequence or parallel.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2aed51203095b827cb5c7d53f2f20d3d35c43065d6f0144aa17bf5999282338e7ff74c60f0b4e098b571b10373bcb4fce97330820e0bfe3f63f9cb4d1924e3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018 Teambition\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/merge2@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/teambition/merge2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/teambition/merge2/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/teambition/merge2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gridicons@3.1.1", + "name": "gridicons", + "version": "3.1.1", + "description": "The [Calypso](https://github.com/Automattic/wp-calypso/) / [WordPress.com](https://wordpress.com) official icon set.", + "licenses": [ + { + "license": { + "id": "GPL-2.0+", + "text": { + "contentType": "text/markdown", + "content": "The GNU General Public License, Version 2, June 1991 (GPLv2)\n============================================================\n\n> Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\n\nPreamble\n--------\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the GNU General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This General Public License applies to most\nof the Free Software Foundation's software and to any other program whose\nauthors commit to using it. (Some other Free Software Foundation software is\ncovered by the GNU Library General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our\nGeneral Public Licenses are designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\n\nTerms And Conditions For Copying, Distribution And Modification\n---------------------------------------------------------------\n\n**0.** This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis General Public License. The \"Program\", below, refers to any such program or\nwork, and a \"work based on the Program\" means either the Program or any\nderivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this License\nand to the absence of any warranty; and give any other recipients of the Program\na copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n**2.** You may modify your copy or copies of the Program or any portion of it,\nthus forming a work based on the Program, and copy and distribute such\nmodifications or work under the terms of Section 1 above, provided that you also\nmeet all of these conditions:\n\n* **a)** You must cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change.\n\n* **b)** You must cause any work that you distribute or publish, that in whole\n or in part contains or is derived from the Program or any part thereof, to\n be licensed as a whole at no charge to all third parties under the terms of\n this License.\n\n* **c)** If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use in the\n most ordinary way, to print or display an announcement including an\n appropriate copyright notice and a notice that there is no warranty (or\n else, saying that you provide a warranty) and that users may redistribute\n the program under these conditions, and telling the user how to view a copy\n of this License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the Program is\n not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n**3.** You may copy and distribute the Program (or a work based on it, under\nSection 2) in object code or executable form under the terms of Sections 1 and 2\nabove provided that you also do one of the following:\n\n* **a)** Accompany it with the complete corresponding machine-readable source\n code, which must be distributed under the terms of Sections 1 and 2 above on\n a medium customarily used for software interchange; or,\n\n* **b)** Accompany it with a written offer, valid for at least three years, to\n give any third party, for a charge no more than your cost of physically\n performing source distribution, a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of Sections 1\n and 2 above on a medium customarily used for software interchange; or,\n\n* **c)** Accompany it with the information you received as to the offer to\n distribute corresponding source code. (This alternative is allowed only for\n noncommercial distribution and only if you received the program in object\n code or executable form with such an offer, in accord with Subsection b\n above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not signed\nit. However, nothing else grants you permission to modify or distribute the\nProgram or its derivative works. These actions are prohibited by law if you do\nnot accept this License. Therefore, by modifying or distributing the Program (or\nany work based on the Program), you indicate your acceptance of this License to\ndo so, and all its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these terms and\nconditions. You may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for enforcing\ncompliance by third parties to this License.\n\n**7.** If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues), conditions\nare imposed on you (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License, they do not excuse you from the\nconditions of this License. If you cannot distribute so as to satisfy\nsimultaneously your obligations under this License and any other pertinent\nobligations, then as a consequence you may not distribute the Program at all.\nFor example, if a patent license would not permit royalty-free redistribution of\nthe Program by all those who receive copies directly or indirectly through you,\nthen the only way you could satisfy both it and this License would be to refrain\nentirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n**9.** The Free Software Foundation may publish revised and/or new versions of\nthe General Public License from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address new\nproblems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by the Free Software Foundation. If the\nProgram does not specify a version number of this License, you may choose any\nversion ever published by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by the Free Software Foundation,\nwrite to the Free Software Foundation; we sometimes make exceptions for this.\nOur decision will be guided by the two goals of preserving the free status of\nall derivatives of our free software and of promoting the sharing and reuse of\nsoftware generally.\n\n\nNo Warranty\n-----------\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES." + } + } + } + ], + "purl": "pkg:npm/gridicons@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/gridicons#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/gridicons/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/gridicons.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gzip-size@5.0.0", + "author": "Sindre Sorhus", + "name": "gzip-size", + "version": "5.0.0", + "description": "Get the gzipped size of a string or buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "eacf2dad088af8e33349a0925575fe8aa21c2d5f6d0be13bde3ac9ac94f24b887f009865c47bf314aa8cd582c32564468075fcb8b901797900d278cd8f7f4be3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gzip-size@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/gzip-size#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/gzip-size/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/gzip-size.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-loader@0.5.5", + "author": "Tobias Koppers @sokra", + "name": "html-loader", + "version": "0.5.5", + "description": "html loader module for webpack", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-loader@0.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/html-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/html-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/html-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-templates@0.2.3", + "author": "Square, Inc.", + "name": "es6-templates", + "version": "0.2.3", + "description": "ES6 template strings compiled to ES5.", + "licenses": [ + { + "license": { + "name": "Apache 2", + "text": { + "content": "Copyright 2014 Square Inc.\n \nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/es6-templates@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/esnext/es6-templates#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/esnext/es6-templates/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/esnext/es6-templates.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-minifier@3.5.21", + "author": "Juriy \"kangax\" Zaytsev", + "name": "html-minifier", + "version": "3.5.21", + "description": "Highly configurable, well-tested, JavaScript-based HTML minifier.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ca50ac2e24387135adee7ff2cf47f2958e6fe5deb06ab587823807a4bc6f05d6f22dc4c529b9e19df788bf6ac0c3afcff5bbb227c73140e447868e1846e6630" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2018 Juriy \"kangax\" Zaytsev\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-minifier@3.5.21", + "externalReferences": [ + { + "type": "website", + "url": "https://kangax.github.io/html-minifier/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kangax/html-minifier/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kangax/html-minifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/camel-case@3.0.0", + "author": "Blake Embrey", + "name": "camel-case", + "version": "3.0.0", + "description": "Camel case a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8c6caced0181d73ebd6335348a405e765697058f063946447b7f192c57c0e8a3828061ce45978509460b6105b4e6131f02e780ea6a185b2c9903c232373c8ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/camel-case@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/camel-case" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/camel-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/camel-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/no-case@2.3.2", + "author": "Blake Embrey", + "name": "no-case", + "version": "2.3.2", + "description": "Remove case from a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae64d9f64cfe7f7ac2bcad930f551efe86659ecece1a82163f87dcde5971c515e53a41caa163cf58939f158a484da6d2a30e374096d12281d05edb75d1595dc9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/no-case@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/no-case" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/no-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/no-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lower-case@1.1.4", + "author": "Blake Embrey", + "name": "lower-case", + "version": "1.1.4", + "description": "Lowercase a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "d85831d58726e7df71f961a9218c093afb239971734d2737e08c035802d103ff00a2950a0153f07c9fa1e7e7fce410a9d0f5a6989716cc4a713a9a17c9c32974" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lower-case@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/lower-case" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/lower-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/lower-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/upper-case@1.1.3", + "author": "Blake Embrey", + "name": "upper-case", + "version": "1.1.3", + "description": "Upper case a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "5916e382663381790257bccd569cb9620ac781b06fd76eab3002d040cae6cce542e06336c1a43dc7bc6d9bc554fb5c85da45b23f323dcdb678f27e2f4b1c1f48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/upper-case@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/upper-case" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/upper-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/upper-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-css@4.2.1", + "author": "Jakub Pawlowicz", + "name": "clean-css", + "version": "4.2.1", + "description": "A well-tested CSS minifier", + "hashes": [ + { + "alg": "SHA-512", + "content": "1095034fb9c35450ef690800a361bf3c9bf19a9d68fdcea25cb6ecc2c05b5055e2d4dafe02303670a99f6ca0cc8ccbf311eef98373fa2646830c02a4f7a03ce4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2017 JakubPawlowicz.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clean-css@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakubpawlowicz/clean-css" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakubpawlowicz/clean-css/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jakubpawlowicz/clean-css.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.17.1", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.17.1", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.17.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/param-case@2.1.1", + "author": "Blake Embrey", + "name": "param-case", + "version": "2.1.1", + "description": "Param case a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "79013ce392faa2df3db24d8df25883f0702e1f871ae95bebed55805b0b7bfa4bef1b968170f9a6a6143af09b041b6a9af67d53ca44b60cb78cb77eb70001fcff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/param-case@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/param-case" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/param-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/blakeembrey/param-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/relateurl@0.2.7", + "author": "Steven Vachon", + "name": "relateurl", + "version": "0.2.7", + "description": "Minify URLs by converting them from absolute to relative.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b4f03c6f9b888337730b33412c3fad840d5f48ba15cf47a6e5373e94b5ca7bcf2577b6be0754d20db7a32969159bc683874f743b60dd8ffa36875fcbd46e0a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Steven Vachon (svachon.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/relateurl@0.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevenvachon/relateurl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevenvachon/relateurl/issues" + }, + { + "type": "vcs", + "url": "git://github.com/stevenvachon/relateurl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-js@3.4.9", + "author": "Mihai Bazon", + "name": "uglify-js", + "version": "3.4.9", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8babfe32da98dc537be1961b1e5c6189ed56c53b8a4100dbb493097c5426bd28423457c55f648c76172df0d358924c0fe91b02994a6bbff88e1eb4b34376de7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2018 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/uglify-js@3.4.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mishoo/UglifyJS2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mishoo/UglifyJS2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mishoo/UglifyJS2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-to-react@1.3.4", + "author": "Arve Knudsen, Mike Nikles", + "name": "html-to-react", + "version": "1.3.4", + "description": "A lightweight library that converts raw HTML to a React DOM structure.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Mike Nikles\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/html-to-react@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aknuds1/html-to-react" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aknuds1/html-to-react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aknuds1/html-to-react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@3.10.0", + "author": "Felix Boehm", + "name": "htmlparser2", + "version": "3.10.0", + "description": "Fast & forgiving HTML/XML/RSS parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "22089e3628d431b903a2fca828e6d4d435219b58b035813f7ee89f1281077ddd6864a64368e3414a46a5ed8d35b21c6c338f51e1768c7467b3dd69c5f547e209" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, Chris Winberry . All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/htmlparser2@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/htmlparser2#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/fb55/htmlparser2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/htmlparser2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@3.1.1", + "name": "readable-stream", + "version": "3.1.1", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Node.js is licensed for use as follows:\n\n\"\"\"\nCopyright Node.js contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n\nThis license applies to parts of Node.js originating from the\nhttps://github.com/joyent/node repository:\n\n\"\"\"\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.camelcase@4.3.0", + "author": "John-David Dalton", + "name": "lodash.camelcase", + "version": "4.3.0", + "description": "The lodash method `_.camelCase` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f0b849c29f16dcdeb02f85ffcb6c6eed2540f386a5f2167bf776dccb38f8021bf84e0cbed6167b1bc24b640fbc9457446bade3ff9753c02eafd84a0e95be394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.camelcase@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ramda@0.26.1", + "author": "Scott Sauyet", + "name": "ramda", + "version": "0.26.1", + "description": "A practical functional library for JavaScript programmers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c49bad7d1bc3da64c7e4a826b6dea88e7bbaf74746eb3eeed980eb20294b27bcb85dd2a85cfef4e3914a2fa2680f59ae440816b4f1f2598b1b61f4b6a8068e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018 Scott Sauyet and Michael Hurley\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ramda@0.26.1", + "externalReferences": [ + { + "type": "website", + "url": "https://ramdajs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ramda/ramda/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ramda/ramda.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-webpack-plugin@3.2.0", + "author": "Charles Blaxland", + "name": "html-webpack-plugin", + "version": "3.2.0", + "description": "Simplifies creation of HTML files to serve your webpack bundles", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ca418bc74c9614c0f817cf0505dc4c0f3e4c90cafcdfcfeeacf05c3679a9b19747118a7d6d0e7629a5c0d85b3f1422860c5f80a06ada6546ad7ca1dce6a405b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-webpack-plugin@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jantimon/html-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jantimon/html-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jantimon/html-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader-utils@0.2.17", + "author": "Tobias Koppers @sokra", + "name": "loader-utils", + "version": "0.2.17", + "description": "utils for webpack loaders", + "hashes": [ + { + "alg": "SHA-512", + "content": "b62bfae86d129a23b1fa92d632d18491f4847a3c6f6fa37ab91ad08df589213efd5bd18ca6029e0809a6f5a5412ad778584827b5c888f02b06aa3a43a02589ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 - 2015 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader-utils@0.2.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/loader-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/loader-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/loader-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pretty-error@2.1.1", + "author": "Aria Minaei", + "name": "pretty-error", + "version": "2.1.1", + "description": "See nodejs errors with less clutter", + "hashes": [ + { + "alg": "SHA-512", + "content": "118e680f39ac5f9c2fbb29c0072ae66343f485ca7e4299c029b26783603630f8d52970b1ac3494933821549e1918f22ff890b8817f1f3d45ac702d11b63b161b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pretty-error@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/pretty-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/pretty-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/pretty-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/renderkid@2.0.2", + "author": "Aria Minaei", + "name": "renderkid", + "version": "2.0.2", + "description": "Stylish console.log for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "a02705cb168cacab0a713639f6a9c202d9835522df3dbaefe80ded55b3dd14c32bbf98da2b5d15ea6e3470ab283cd840a8deab9875bdb2cc16e28debb92af051" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/renderkid@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/RenderKid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/RenderKid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/RenderKid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-select@1.2.0", + "author": "Felix Boehm", + "name": "css-select", + "version": "1.2.0", + "description": "a CSS selector compiler/engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "75440e068a9d47b43057dd16cac5cf2d71b92ceee785806089655fc45f340ca3c5f33c75b7fa54776158cbbdde9a0df3ae3b4ce9dce66206c729f576af188740" + } + ], + "licenses": [ + { + "license": { + "name": "BSD-like", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/css-select@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/css-select#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/css-select/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/css-select.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/boolbase@1.0.0", + "author": "Felix Boehm", + "name": "boolbase", + "version": "1.0.0", + "description": "two functions: One that returns true, one that returns false", + "hashes": [ + { + "alg": "SHA-512", + "content": "25939203b328f6c34607cf948d283374bb68916024cb5cdbced3375912c26d9ef4ff771300d99098e751ef2da0f89d1ed965f2c32d724b8ebcb58f88aeea84c3" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/boolbase@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/boolbase" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/boolbase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fb55/boolbase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-what@2.1.2", + "author": "Felix Böhm", + "name": "css-what", + "version": "2.1.2", + "description": "a CSS selector parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "6be10fa03fae66235f87ee5fc70da73bd43015aea725ed8eaf7e5f198e88a70d51dd1e001b3d5dd53119ac27a0bf0d984e66748d78ab198973c71a58487c2912" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/css-what@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/css-what#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/css-what/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fb55/css-what.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nth-check@1.0.2", + "author": "Felix Boehm", + "name": "nth-check", + "version": "1.0.2", + "description": "performant nth-check parser & compiler", + "hashes": [ + { + "alg": "SHA-512", + "content": "59e04e763bbc4a7ccf379bd3509631614c4b797a426953f98b97b42c5f1f83b58e445d9677bc055ffa64d2d61993bb3c4fe27b54bcb40dae89d7ec024f402d1e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/nth-check@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/nth-check" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/nth-check/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fb55/nth-check.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-converter@0.2.0", + "author": "Aria Minaei", + "name": "dom-converter", + "version": "0.2.0", + "description": "converts bare objects to DOM objects or xml representations", + "hashes": [ + { + "alg": "SHA-512", + "content": "23d356df7a3757dd9bf6ed000194279f4438db60e141f34f1f87a74c4c4436d5dfae8c557d520471d7897cd7b8d51387c9edfe67390d220daebec14d13a53c64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-converter@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/dom-converter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/dom-converter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/dom-converter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/utila@0.4.0", + "author": "Aria Minaei", + "name": "utila", + "version": "0.4.0", + "description": "notareplacementforunderscore", + "hashes": [ + { + "alg": "SHA-512", + "content": "6740db8042d2f7f2ffef9c196eba3cc409d3e74a41545419fa1504b9e18353914de7561209833e8ddc6c7c28878f034fff82c20c3d22fe0ada2a97819ce5ca44" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/utila@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/utila#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/utila/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/utila.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@3.3.0", + "author": "Felix Boehm", + "name": "htmlparser2", + "version": "3.3.0", + "description": "Fast & forgiving HTML/XML/RSS parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "22089e3628d431b903a2fca828e6d4d435219b58b035813f7ee89f1281077ddd6864a64368e3414a46a5ed8d35b21c6c338f51e1768c7467b3dd69c5f547e209" + } + ], + "purl": "pkg:npm/htmlparser2@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/htmlparser2#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/fb55/htmlparser2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/htmlparser2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domhandler@2.1.0", + "author": "Felix Boehm", + "name": "domhandler", + "version": "2.1.0", + "description": "handler for htmlparser2 that turns pages into a dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2622b4e21d07b79bbff347dd2cc084995e3390d87605ca0c141999ffdd56b5867ca955d22a38b0edf5cc8053e71dc49980ea375dd8a71ef9a70d478c7f9478c0" + } + ], + "purl": "pkg:npm/domhandler@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/domhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/domhandler/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/domhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domutils@1.1.6", + "author": "Felix Boehm", + "name": "domutils", + "version": "1.1.6", + "description": "utilities for working with htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e07765dc27f363130fbbb45bdf2b13b3098299b1d72de6573343665a418f038f3ee97c00f719ba7cc92256b6b78823fbc394c566c706baa4799dc48620b6d0e" + } + ], + "purl": "pkg:npm/domutils@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FB55/domutils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FB55/domutils/issues" + }, + { + "type": "vcs", + "url": "git://github.com/FB55/domutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@1.0.34", + "author": "Isaac Z. Schlueter", + "name": "readable-stream", + "version": "1.0.34", + "description": "Streams2, a user-land copy of the stream library from Node.js v0.10.x", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@1.0.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tapable@1.1.1", + "author": "Tobias Koppers @sokra", + "name": "tapable", + "version": "1.1.1", + "description": "Just a little module for plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db0b2f43ee06c01bcb3cb5ac35f2c20d81ac5bac5beda782eaeb6ad908743c5c20132ecaeddb266bd26c99bdb34908fb1af600c941929ed2edb2ffbe1a680bd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) Tobias Koppers @sokra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tapable@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/tapable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/tapable/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/tapable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/toposort@1.0.7", + "author": "Marcel Klehr", + "name": "toposort", + "version": "1.0.7", + "description": "Topological sort of directed ascyclic graphs (like dependecy lists)", + "hashes": [ + { + "alg": "SHA-512", + "content": "15c94baf0f1bf5b3167f8425089b87044561491b2a0e3eaede72230333de26f825fffd610657df7659343002dc78bd78fa4a1611d538a1f4405e87db383c50ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nToposort - Topological sorting for node.js\nCopyright (c) 2012 by Marcel Klehr \nMIT LICENSE\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/toposort@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/marcelklehr/toposort#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/marcelklehr/toposort/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/marcelklehr/toposort.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/i18n-calypso@3.0.0", + "author": "@automattic", + "name": "i18n-calypso", + "version": "3.0.0", + "description": "i18n JavaScript library on top of Jed originally used in Calypso", + "licenses": [ + { + "license": { + "id": "GPL-2.0", + "text": { + "content": " GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc., \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n {description}\n Copyright (C) {year} {fullname}\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n {signature of Ty Coon}, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs. If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.\n" + } + } + } + ], + "purl": "pkg:npm/i18n-calypso@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/i18n-calypso#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/i18n-calypso/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/i18n-calypso.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/interpolate-components@1.1.1", + "author": "Bob Ralian", + "name": "interpolate-components", + "version": "1.1.1", + "description": "Convert strings into structured React components.", + "licenses": [ + { + "license": { + "id": "GPL-2.0", + "text": { + "contentType": "text/markdown", + "content": "The GNU General Public License, Version 2, June 1991 (GPLv2)\n============================================================\n\n> Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\n\nPreamble\n--------\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the GNU General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This General Public License applies to most\nof the Free Software Foundation's software and to any other program whose\nauthors commit to using it. (Some other Free Software Foundation software is\ncovered by the GNU Library General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our\nGeneral Public Licenses are designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\n\nTerms And Conditions For Copying, Distribution And Modification\n---------------------------------------------------------------\n\n**0.** This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis General Public License. The \"Program\", below, refers to any such program or\nwork, and a \"work based on the Program\" means either the Program or any\nderivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this License\nand to the absence of any warranty; and give any other recipients of the Program\na copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n**2.** You may modify your copy or copies of the Program or any portion of it,\nthus forming a work based on the Program, and copy and distribute such\nmodifications or work under the terms of Section 1 above, provided that you also\nmeet all of these conditions:\n\n* **a)** You must cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change.\n\n* **b)** You must cause any work that you distribute or publish, that in whole\n or in part contains or is derived from the Program or any part thereof, to\n be licensed as a whole at no charge to all third parties under the terms of\n this License.\n\n* **c)** If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use in the\n most ordinary way, to print or display an announcement including an\n appropriate copyright notice and a notice that there is no warranty (or\n else, saying that you provide a warranty) and that users may redistribute\n the program under these conditions, and telling the user how to view a copy\n of this License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the Program is\n not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n**3.** You may copy and distribute the Program (or a work based on it, under\nSection 2) in object code or executable form under the terms of Sections 1 and 2\nabove provided that you also do one of the following:\n\n* **a)** Accompany it with the complete corresponding machine-readable source\n code, which must be distributed under the terms of Sections 1 and 2 above on\n a medium customarily used for software interchange; or,\n\n* **b)** Accompany it with a written offer, valid for at least three years, to\n give any third party, for a charge no more than your cost of physically\n performing source distribution, a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of Sections 1\n and 2 above on a medium customarily used for software interchange; or,\n\n* **c)** Accompany it with the information you received as to the offer to\n distribute corresponding source code. (This alternative is allowed only for\n noncommercial distribution and only if you received the program in object\n code or executable form with such an offer, in accord with Subsection b\n above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not signed\nit. However, nothing else grants you permission to modify or distribute the\nProgram or its derivative works. These actions are prohibited by law if you do\nnot accept this License. Therefore, by modifying or distributing the Program (or\nany work based on the Program), you indicate your acceptance of this License to\ndo so, and all its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these terms and\nconditions. You may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for enforcing\ncompliance by third parties to this License.\n\n**7.** If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues), conditions\nare imposed on you (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License, they do not excuse you from the\nconditions of this License. If you cannot distribute so as to satisfy\nsimultaneously your obligations under this License and any other pertinent\nobligations, then as a consequence you may not distribute the Program at all.\nFor example, if a patent license would not permit royalty-free redistribution of\nthe Program by all those who receive copies directly or indirectly through you,\nthen the only way you could satisfy both it and this License would be to refrain\nentirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n**9.** The Free Software Foundation may publish revised and/or new versions of\nthe General Public License from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address new\nproblems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by the Free Software Foundation. If the\nProgram does not specify a version number of this License, you may choose any\nversion ever published by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by the Free Software Foundation,\nwrite to the Free Software Foundation; we sometimes make exceptions for this.\nOur decision will be guided by the two goals of preserving the free status of\nall derivatives of our free software and of promoting the sharing and reuse of\nsoftware generally.\n\n\nNo Warranty\n-----------\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n" + } + } + } + ], + "purl": "pkg:npm/interpolate-components@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/interpolate-components#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/interpolate-components/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/interpolate-components.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-addons-create-fragment@15.6.2", + "name": "react-addons-create-fragment", + "version": "15.6.2", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-addons-create-fragment@15.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/react#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jed@1.1.1", + "author": "Alex Sexton", + "name": "jed", + "version": "1.1.1", + "description": "Gettext Style i18n for Modern JavaScript Apps", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jed@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SlexAxton/Jed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SlexAxton/Jed/issues" + }, + { + "type": "vcs", + "url": "git+https://SlexAxton@github.com/SlexAxton/Jed.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jstimezonedetect@1.0.5", + "author": "Jon Nylander", + "name": "jstimezonedetect", + "version": "1.0.5", + "description": "This script gives you the zone info key representing your device's time zone setting.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jstimezonedetect@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://bitbucket.org/pellepim/jstimezonedetect#readme" + }, + { + "type": "vcs", + "url": "git+https://bitbucket.org/pellepim/jstimezonedetect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.assign@4.2.0", + "author": "John-David Dalton", + "name": "lodash.assign", + "version": "4.2.0", + "description": "The lodash method `_.assign` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "845b87f1363e6238bb1236b79868ae03106a2da81e8d271b1bc19b1b48faa3dbf39f460bd78332fa4b67aad660153a2c2b2982f7fe38c0feacef1cae2df9c297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.assign@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.flatten@4.4.0", + "author": "John-David Dalton", + "name": "lodash.flatten", + "version": "4.4.0", + "description": "The lodash method `_.flatten` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c25cba0d72a4116e74ff29666ad9f21110759e733af3a53474becc9c9bdea5fe9bb98467809ed5411b4b7b1ae33fdb016a9a766cdddd5e1a9b67007d84f3ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.flatten@4.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lru@3.1.0", + "author": "Chris O'Hara", + "name": "lru", + "version": "3.1.0", + "description": "A simple O(1) LRU cache", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2016 Chris O'Hara \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lru@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/chriso/lru" + }, + { + "type": "issue-tracker", + "url": "http://github.com/chriso/lru/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chriso/lru.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xgettext-js@2.0.0", + "author": "Andrew Duthie", + "name": "xgettext-js", + "version": "2.0.0", + "description": "xgettext string extractor tool capable of parsing JavaScript files", + "licenses": [ + { + "license": { + "id": "GPL-2.0+", + "text": { + "contentType": "text/markdown", + "content": "GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc., \n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nconvey the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n {description}\n Copyright (C) {year} {fullname}\n\n This program is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 2 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License along\n with this program; if not, write to the Free Software Foundation, Inc.,\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nAlso add information on how to contact you by electronic and paper mail.\n\nIf the program is interactive, make it output a short notice like this\nwhen it starts in an interactive mode:\n\n Gnomovision version 69, Copyright (C) year name of author\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, the commands you use may\nbe called something other than `show w' and `show c'; they could even be\nmouse-clicks or menu items--whatever suits your program.\n\nYou should also get your employer (if you work as a programmer) or your\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\nnecessary. Here is a sample; alter the names:\n\n Yoyodyne, Inc., hereby disclaims all copyright interest in the program\n `Gnomovision' (which makes passes at compilers) written by James Hacker.\n\n {signature of Ty Coon}, 1 April 1989\n Ty Coon, President of Vice\n\nThis General Public License does not permit incorporating your program into\nproprietary programs. If your program is a subroutine library, you may\nconsider it more useful to permit linking proprietary applications with the\nlibrary. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License." + } + } + } + ], + "purl": "pkg:npm/xgettext-js@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/automattic/xgettext-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/automattic/xgettext-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/automattic/xgettext-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/estree-walker@0.5.2", + "author": "Rich Harris", + "name": "estree-walker", + "version": "0.5.2", + "description": "Traverse an ESTree-compliant AST", + "hashes": [ + { + "alg": "SHA-512", + "content": "4aa99900d2d64b49a76ada9b49f44fe60f0e5d90b5d85820d48c0db4bb321c3cc98b33915b89210df8cfa8966c7a63d6041daeab29146a1e58a50e9ea6ca82ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/estree-walker@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Rich-Harris/estree-walker#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Rich-Harris/estree-walker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Rich-Harris/estree-walker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ignore-loader@0.1.2", + "name": "ignore-loader", + "version": "0.1.2", + "description": "Webpack loader to ignore certain package on build.", + "purl": "pkg:npm/ignore-loader@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cherrry/ignore-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cherrry/ignore-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cherrry/ignore-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/immutability-helper@2.8.1", + "author": "Moshe Kolodny", + "name": "immutability-helper", + "version": "2.8.1", + "description": "mutate a copy of data without changing the original source", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Moshe Kolodny\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/immutability-helper@2.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kolodny/immutability-helper#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kolodny/immutability-helper/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kolodny/immutability-helper.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/immutable@3.8.2", + "author": "Lee Byron", + "name": "immutable", + "version": "3.8.2", + "description": "Immutable Data Collections", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0d92ea954c0f23a86d50e9cf948254ce0f5c610b506d8ca23b5e4097464647acde66d7cfd7b27529f10f3d1a440eff3fb45a3a274af97414b84361fb69e3a9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/immutable@3.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.com/immutable-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/immutable-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/facebook/immutable-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/imports-loader@0.8.0", + "author": "Tobias Koppers @sokra", + "name": "imports-loader", + "version": "0.8.0", + "description": "imports loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "b50d6ea69dc870b1fc61193d6fd3e5262ec1b001908464658322e297ab99ffa9056fb0b41fd607f57c035488f197f4f11604345a4af1f1546dd457f655fe8c6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/imports-loader@0.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/imports-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/imports-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/imports-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-my-json-valid@2.19.0", + "author": "Mathias Buus", + "name": "is-my-json-valid", + "version": "2.19.0", + "description": "A JSONSchema validator that uses code generation to be extremely fast", + "hashes": [ + { + "alg": "SHA-512", + "content": "d49430ba554d8f1f14aa43c4fdba836b1b47e0f5c27bfd95461ff2de9f7d85e395f3b1c6e08779fd57c3b3077e62201f1dc4537c39568084b27271ee859ab56b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-my-json-valid@2.19.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/is-my-json-valid" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/is-my-json-valid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/is-my-json-valid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/generate-function@2.3.1", + "author": "Mathias Buus", + "name": "generate-function", + "version": "2.3.1", + "description": "Module that helps you write generated functions in Node", + "hashes": [ + { + "alg": "SHA-512", + "content": "79e07919f30d79ebe6fc6458ab6d12866b1a19c988f359085f62bd5d0c799a20bc29d1da0ba266d2a43c64d7863a2ef0601f0eb1dc4ab3e636a15b9316e57029" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/generate-function@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/generate-function" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/generate-function/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/generate-function.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-property@1.0.2", + "author": "Mikola Lysenko", + "name": "is-property", + "version": "1.0.2", + "description": "Tests if a JSON property can be accessed using . syntax", + "hashes": [ + { + "alg": "SHA-512", + "content": "2acfc8a17d344ed0a56c642be135977a602792d010bd807b1f3702c431aa11953aa0299bd88347b8ea0ac5bb51f871649985812affdd399b464620230e18fdda" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2013 Mikola Lysenko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-property@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikolalysenko/is-property#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikolalysenko/is-property/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mikolalysenko/is-property.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/generate-object-property@1.2.0", + "author": "Mathias Buus", + "name": "generate-object-property", + "version": "1.2.0", + "description": "Generate safe JS code that can used to reference a object property", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ee3b0656809d9500c10626f0323d6be9ab1480345d0b0e99b21dab8c8c56336800af9fe4134ff019a26bcf0b354157bc833773a6c074393af1da78b2ab7b725" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/generate-object-property@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/generate-object-property" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/generate-object-property/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/generate-object-property.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-my-ip-valid@1.0.0", + "name": "is-my-ip-valid", + "version": "1.0.0", + "description": "A small lib to validate IP addresses.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f173c70170e59b34ada2d9a4e40993fa8bbc241c5d5ba8a16bc041ee37926d8390526991d4650fc94ce270a15e3562f1e739a47259687bd93fcabdf373f4326" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/is-my-ip-valid@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/is-my-ip-valid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/is-my-ip-valid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/is-my-ip-valid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonpointer@4.0.1", + "author": "Jan Lehnardt", + "name": "jsonpointer", + "version": "4.0.1", + "description": "Simple JSON Addressing.", + "hashes": [ + { + "alg": "SHA-512", + "content": "097711bccc93967479df131c2a7b8ccdf080e62fe77db9539e7afbe0265be82e2f1b7f5ebbac39d6dee72a653931f2df6d380622d9623728cefdc88d3c3a8296" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2015 Jan Lehnardt & Marc Bachmann \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonpointer@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/janl/node-jsonpointer#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/janl/node-jsonpointer/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/janl/node-jsonpointer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jquery@1.12.3", + "author": "jQuery Foundation and other contributors", + "name": "jquery", + "version": "1.12.3", + "description": "JavaScript library for DOM operations", + "hashes": [ + { + "alg": "SHA-512", + "content": "255cc047f02306f56dd81998871442498cac0ec3dcb2c7664c59f3c8b12db3da8dc268e6bb825300c62e6c47f054e4b0a50d48d6c28a15cc616422366ee7ab7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright jQuery Foundation and other contributors, https://jquery.org/\n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/jquery/jquery\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nAll files located in the node_modules and external directories are\nexternally maintained libraries used by this software which have their\nown licenses; we recommend you read them, as their terms may differ from\nthe terms above.\n" + } + } + } + ], + "purl": "pkg:npm/jquery@1.12.3", + "externalReferences": [ + { + "type": "website", + "url": "http://jquery.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/jquery/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/jquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsx-to-string@1.4.0", + "name": "jsx-to-string", + "version": "1.4.0", + "description": "Parse your React JSX component to string", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Alan Souza\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/jsx-to-string@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/alansouzati/jsx-to-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/alansouzati/jsx-to-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/alansouzati/jsx-to-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/immutable@4.0.0-rc.12", + "author": "Lee Byron", + "name": "immutable", + "version": "4.0.0-rc.12", + "description": "Immutable Data Collections", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0d92ea954c0f23a86d50e9cf948254ce0f5c610b506d8ca23b5e4097464647acde66d7cfd7b27529f10f3d1a440eff3fb45a3a274af97414b84361fb69e3a9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/immutable@4.0.0-rc.12", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.com/immutable-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/immutable-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/facebook/immutable-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json-stringify-pretty-compact@1.2.0", + "author": "Simon Lydell", + "name": "json-stringify-pretty-compact", + "version": "1.2.0", + "description": "The best of both `JSON.stringify(obj)` and `JSON.stringify(obj, null, indent)`.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2016, 2017 Simon Lydell\nCopyright (c) 2017 Randall Randall\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/json-stringify-pretty-compact@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/json-stringify-pretty-compact#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/json-stringify-pretty-compact/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/json-stringify-pretty-compact.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react@0.14.9", + "name": "react", + "version": "0.14.9", + "description": "React is a JavaScript library for building user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d17d822260e424602988095c7f43832889de4b004f86a25ac0e6b9c02b4a6eeed9102ae64b6e8dbed4882f29d0eba720913fd12782e274939cddb5044b0994f2" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD License\n\nFor React software\n\nCopyright (c) 2013-2015, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/react@0.14.9", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.io/react/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/envify@3.4.1", + "author": "Hugh Kennedy", + "name": "envify", + "version": "3.4.1", + "description": "Selectively replace Node-style environment variables with plain strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "892857742f0eff98e8f213c887ae58d4cdbc624c56e1ca8fc37fe6838839ab84506cc5258ce796a760ad9e8e12d59c93532a06ae2a06019bb6b7d90fefdc29d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/envify@3.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hughsk/envify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hughsk/envify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hughsk/envify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jstransform@11.0.3", + "name": "jstransform", + "version": "11.0.3", + "description": "A simple AST visitor-based JS transformer", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0cc2a5b411d424d80e4d8dd76571248ba7ab7ba489273ab26dc4f53790c37cd912573c66dd0b77dc33956122c02934a2f5869787dfc89242c2516e0a6b3d066" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD License\n\nFor jstransform software\n\nCopyright (c) 2013-present, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/jstransform@11.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/jstransform#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/jstransform/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/facebook/jstransform.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base62@1.2.8", + "author": "Andrew Nesbitt", + "name": "base62", + "version": "1.2.8", + "description": "Javascript Base62 encode/decoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "42d131ba320eabf17aef63a41e60e2dc2764a61380d64490dfc82fd37468ddca6561093cdf576af46337435a17031a51e473498c68e38d3da91ed046009bb58f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2016 Andrew Nesbitt\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/base62@1.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/andrew/base62.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/andrew/base62.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/andrew/base62.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima-fb@15001.1.0-dev-harmony-fb", + "author": "Ariya Hidayat", + "name": "esprima-fb", + "version": "15001.1.0-dev-harmony-fb", + "description": "Facebook-specific fork of the esprima project", + "purl": "pkg:npm/esprima-fb@15001.1.0-dev-harmony-fb", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/esprima/tree/fb-harmony" + }, + { + "type": "issue-tracker", + "url": "http://issues.esprima.org" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/facebook/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-assign@2.1.1", + "author": "Sindre Sorhus", + "name": "object-assign", + "version": "2.1.1", + "description": "ES6 Object.assign() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-assign@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/object-assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/object-assign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/object-assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fbjs@0.6.1", + "name": "fbjs", + "version": "0.6.1", + "description": "A collection of utility libraries used by other Facebook JS projects", + "hashes": [ + { + "alg": "SHA-512", + "content": "11069614af9f10f4a889b8cdcbc23152d68538c5dc5ac63425a56b428651f730bc3766207fd8832133d68d44d521ac7de5be88ef8d8914ba804877ec6a0fef28" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD License\n\nFor fbjs software\n\nCopyright (c) 2013-2015, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/fbjs@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/fbjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/fbjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/fbjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/whatwg-fetch@0.9.0", + "name": "whatwg-fetch", + "version": "0.9.0", + "description": "The global `fetch` function is an easier way to make web requests and handle responses than using an XMLHttpRequest. This polyfill is written as closely as possible to the standard Fetch specification at https://fetch.spec.whatwg.org.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c995e9f415cb94ff410c2eb75b27bcce9d6e884d92eb64c21aacc51599d2adb06bd99daf2fc4a61a7b120258f7d9f2ac1ff5fccdabe504219ae749a029b7a44" + } + ], + "purl": "pkg:npm/whatwg-fetch@0.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/github/fetch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/github/fetch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/github/fetch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/keymaster@1.6.2", + "author": "Thomas Fuchs", + "name": "keymaster", + "version": "1.6.2", + "description": "library for defining and dispatching keyboard shortcuts", + "purl": "pkg:npm/keymaster@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/madrobby/keymaster#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/madrobby/keymaster/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/madrobby/keymaster.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lerna@3.10.2", + "author": "Sebastian McKenzie", + "name": "lerna", + "version": "3.10.2", + "description": "A tool for managing JavaScript projects with multiple packages.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lerna@3.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lernajs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/add@3.10.2", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "add", + "version": "3.10.2", + "description": "Add a dependency to matched packages", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/add@3.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/bootstrap@3.10.2", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "bootstrap", + "version": "3.10.2", + "description": "Link local packages together and install remaining package dependencies", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/bootstrap@3.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/batch-packages@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "batch-packages", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/batch-packages@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/package-graph@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "package-graph", + "version": "3.10.0", + "description": "Lerna's internal representation of a package graph", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/package-graph@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/validation-error@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "validation-error", + "version": "3.6.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/validation-error@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpm@2.0.1", + "author": "Kat Marchán", + "name": "libnpm", + "version": "2.0.1", + "description": "Collection of programmatic APIs for the npm CLI", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpm@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/libnpm#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bin-links@1.1.2", + "author": "Mike Sherov", + "name": "bin-links", + "version": "1.1.2", + "description": "JavaScript package binary linker", + "licenses": [ + { + "license": { + "id": "Artistic-2.0", + "text": { + "content": "The npm application\nCopyright (c) npm, Inc. and Contributors\nLicensed on the terms of The Artistic License 2.0\n\nNode package dependencies of the npm application\nCopyright (c) their respective copyright owners\nLicensed on their respective license terms\n\nThe npm public registry at https://registry.npmjs.org\nand the npm website at https://www.npmjs.com\nOperated by npm, Inc.\nUse governed by terms published on https://www.npmjs.com\n\n\"Node.js\"\nTrademark Joyent, Inc., https://joyent.com\nNeither npm nor npm, Inc. are affiliated with Joyent, Inc.\n\nThe Node.js application\nProject of Node Foundation, https://nodejs.org\n\nThe npm Logo\nCopyright (c) Mathias Pettersson and Brian Hammond\n\n\"Gubblebum Blocky\" typeface\nCopyright (c) Tjarda Koster, https://jelloween.deviantart.com\nUsed with permission\n\n\n--------\n\n\nThe Artistic License 2.0\n\nCopyright (c) 2000-2006, The Perl Foundation.\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\nPreamble\n\nThis license establishes the terms under which a given free software\nPackage may be copied, modified, distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains some artistic\ncontrol over the development of that Package while still keeping the\nPackage available as open source and free software.\n\nYou are always permitted to make arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given Package. If the\nterms of this license do not permit the full use that you propose to\nmake of the Package, you should contact the Copyright Holder and seek\na different licensing arrangement.\n\nDefinitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n named in the copyright notice for the entire Package.\n\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means the collection of files distributed by the\n Copyright Holder, and derivatives of that collection and/or of\n those files. A given Package may consist of either the Standard\n Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n\n \"Distributor Fee\" means any fee that you charge for Distributing\n this Package or providing support for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard Version\" refers to the Package if it has not been\n modified, or has been modified only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\" means the Package, if it has been changed, and\n such changes were not explicitly requested by the Copyright\n Holder.\n\n \"Original License\" means this Artistic License as Distributed with\n the Standard Version of the Package, in its current version or as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n\n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other form resulting from mechanical transformation or\n translation of the Source form.\n\n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to use the Standard Version and create and use\nModified Versions for any purpose without restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies of the Source form of the\nStandard Version of this Package in any medium without restriction,\neither gratis or for a Distributor Fee, provided that you duplicate\nall of the original copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug fixes, portability changes, and other\nmodifications made available from the Copyright Holder. The resulting\nPackage will still be considered the Standard Version, and as such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions of the Package as Source\n\n(4) You may Distribute your Modified Version as Source (either gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified Version) provided that you clearly document how it differs\nfrom the Standard Version, including, but not limited to, documenting\nany non-standard features, executables, or modules, and provided that\nyou do at least ONE of the following:\n\n (a) make the Modified Version available to the Copyright Holder\n of the Standard Version, under the Original License, so that the\n Copyright Holder may include your modifications in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version does not\n prevent the user installing or running the Standard Version. In\n addition, the Modified Version must bear a name that is different\n from the name of the Standard Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n make the Source form of the Modified Version available to others\n under\n\n (i) the Original License or\n\n (ii) a license that permits the licensee to freely copy,\n modify and redistribute the Modified Version using the same\n licensing terms that apply to the copy that the licensee\n received, and requires that the Source form of the Modified\n Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor\n Fees are allowed.\n\n\nDistribution of Compiled Forms of the Standard Version\nor Modified Versions without the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\nthe Source, provided that you include complete instructions on how to\nget the Source of the Standard Version. Such instructions must be\nvalid at the time of your distribution. If these instructions, at any\ntime while you are carrying out such distribution, become invalid, you\nmust provide new instructions on demand or cease further distribution.\nIf you provide valid instructions or cease distribution within thirty\ndays after you become aware that the instructions are invalid, then\nyou do not forfeit any of your rights under this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\nthe Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified Version.\n\n\nAggregating or Linking the Package\n\n(7) You may aggregate the Package (either the Standard Version or\nModified Version) with other packages and Distribute the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage. Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation are permitted. The terms of this license\napply to the use and Distribution of the Standard or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link Modified and Standard Versions with\nother works, to embed the Package in a larger work of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\ninclude the Package, and Distribute the result without restriction,\nprovided the result does not expose a direct interface to the Package.\n\n\nItems That are Not Considered Part of a Modified Version\n\n(9) Works (including, but not limited to, modules and scripts) that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package to be a Modified Version. In addition, such works are not\nconsidered parts of the Package itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n(10) Any use, modification, and distribution of the Standard or\nModified Versions is governed by this Artistic License. By using,\nmodifying or distributing the Package, you accept this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\nlicense.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made by someone other than you, you are nevertheless required\nto ensure that your Modified Version complies with the requirements of\nthis license.\n\n(12) This license does not grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the Package with respect to any\npatent claims licensable by the Copyright Holder that are necessarily\ninfringed by the Package. If you institute patent litigation\n(including a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes direct or contributory patent\ninfringement, then this Artistic License to you shall terminate on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n--------\n" + } + } + } + ], + "purl": "pkg:npm/bin-links@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/bin-links#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/bin-links/issues" + }, + { + "type": "vcs", + "url": "git://github.com/npm/bin-links.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cmd-shim@2.0.2", + "name": "cmd-shim", + "version": "2.0.2", + "description": "Used in npm for command line application support", + "hashes": [ + { + "alg": "SHA-512", + "content": "0390b40b27f61fcb0ab07a97d2dbc85915f0e7f3cafbedc37349436ecba0afdd2738408b2ee48f6a1550046f298268225e09bf4f305632a236ad6759c0776e03" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Isaac Z. Schlueter (\"Author\")\nAll rights reserved.\n\nThe BSD License\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/cmd-shim@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/cmd-shim#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/cmd-shim/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/cmd-shim.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gentle-fs@2.0.1", + "author": "Mike Sherov", + "name": "gentle-fs", + "version": "2.0.1", + "description": "Gentle Filesystem operations", + "licenses": [ + { + "license": { + "id": "Artistic-2.0", + "text": { + "content": "The npm application\nCopyright (c) npm, Inc. and Contributors\nLicensed on the terms of The Artistic License 2.0\n\nNode package dependencies of the npm application\nCopyright (c) their respective copyright owners\nLicensed on their respective license terms\n\nThe npm public registry at https://registry.npmjs.org\nand the npm website at https://www.npmjs.com\nOperated by npm, Inc.\nUse governed by terms published on https://www.npmjs.com\n\n\"Node.js\"\nTrademark Joyent, Inc., https://joyent.com\nNeither npm nor npm, Inc. are affiliated with Joyent, Inc.\n\nThe Node.js application\nProject of Node Foundation, https://nodejs.org\n\nThe npm Logo\nCopyright (c) Mathias Pettersson and Brian Hammond\n\n\"Gubblebum Blocky\" typeface\nCopyright (c) Tjarda Koster, https://jelloween.deviantart.com\nUsed with permission\n\n\n--------\n\n\nThe Artistic License 2.0\n\nCopyright (c) 2000-2006, The Perl Foundation.\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\nPreamble\n\nThis license establishes the terms under which a given free software\nPackage may be copied, modified, distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains some artistic\ncontrol over the development of that Package while still keeping the\nPackage available as open source and free software.\n\nYou are always permitted to make arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given Package. If the\nterms of this license do not permit the full use that you propose to\nmake of the Package, you should contact the Copyright Holder and seek\na different licensing arrangement.\n\nDefinitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n named in the copyright notice for the entire Package.\n\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means the collection of files distributed by the\n Copyright Holder, and derivatives of that collection and/or of\n those files. A given Package may consist of either the Standard\n Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n\n \"Distributor Fee\" means any fee that you charge for Distributing\n this Package or providing support for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard Version\" refers to the Package if it has not been\n modified, or has been modified only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\" means the Package, if it has been changed, and\n such changes were not explicitly requested by the Copyright\n Holder.\n\n \"Original License\" means this Artistic License as Distributed with\n the Standard Version of the Package, in its current version or as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n\n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other form resulting from mechanical transformation or\n translation of the Source form.\n\n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to use the Standard Version and create and use\nModified Versions for any purpose without restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies of the Source form of the\nStandard Version of this Package in any medium without restriction,\neither gratis or for a Distributor Fee, provided that you duplicate\nall of the original copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug fixes, portability changes, and other\nmodifications made available from the Copyright Holder. The resulting\nPackage will still be considered the Standard Version, and as such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions of the Package as Source\n\n(4) You may Distribute your Modified Version as Source (either gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified Version) provided that you clearly document how it differs\nfrom the Standard Version, including, but not limited to, documenting\nany non-standard features, executables, or modules, and provided that\nyou do at least ONE of the following:\n\n (a) make the Modified Version available to the Copyright Holder\n of the Standard Version, under the Original License, so that the\n Copyright Holder may include your modifications in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version does not\n prevent the user installing or running the Standard Version. In\n addition, the Modified Version must bear a name that is different\n from the name of the Standard Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n make the Source form of the Modified Version available to others\n under\n\n (i) the Original License or\n\n (ii) a license that permits the licensee to freely copy,\n modify and redistribute the Modified Version using the same\n licensing terms that apply to the copy that the licensee\n received, and requires that the Source form of the Modified\n Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor\n Fees are allowed.\n\n\nDistribution of Compiled Forms of the Standard Version\nor Modified Versions without the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\nthe Source, provided that you include complete instructions on how to\nget the Source of the Standard Version. Such instructions must be\nvalid at the time of your distribution. If these instructions, at any\ntime while you are carrying out such distribution, become invalid, you\nmust provide new instructions on demand or cease further distribution.\nIf you provide valid instructions or cease distribution within thirty\ndays after you become aware that the instructions are invalid, then\nyou do not forfeit any of your rights under this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\nthe Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified Version.\n\n\nAggregating or Linking the Package\n\n(7) You may aggregate the Package (either the Standard Version or\nModified Version) with other packages and Distribute the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage. Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation are permitted. The terms of this license\napply to the use and Distribution of the Standard or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link Modified and Standard Versions with\nother works, to embed the Package in a larger work of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\ninclude the Package, and Distribute the result without restriction,\nprovided the result does not expose a direct interface to the Package.\n\n\nItems That are Not Considered Part of a Modified Version\n\n(9) Works (including, but not limited to, modules and scripts) that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package to be a Modified Version. In addition, such works are not\nconsidered parts of the Package itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n(10) Any use, modification, and distribution of the Standard or\nModified Versions is governed by this Artistic License. By using,\nmodifying or distributing the Package, you accept this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\nlicense.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made by someone other than you, you are nevertheless required\nto ensure that your Modified Version complies with the requirements of\nthis license.\n\n(12) This license does not grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the Package with respect to any\npatent claims licensable by the Copyright Holder that are necessarily\ninfringed by the Package. If you institute patent litigation\n(including a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes direct or contributory patent\ninfringement, then this Artistic License to you shall terminate on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n--------\n" + } + } + } + ], + "purl": "pkg:npm/gentle-fs@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/gentle-fs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/gentle-fs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/npm/gentle-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-vacuum@1.2.10", + "author": "Forrest L Norvell", + "name": "fs-vacuum", + "version": "1.2.10", + "description": "recursively remove empty directories -- to a point", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Forrest L Norvell\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-vacuum@1.2.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/fs-vacuum" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/fs-vacuum/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/fs-vacuum.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-cmd-shim@1.0.1", + "author": "Rebecca Turner", + "name": "read-cmd-shim", + "version": "1.0.1", + "description": "Figure out what a cmd-shim is pointing at. This acts as the equivalent of fs.readlink.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf9c82a90ffba242a865990141401f4ec437b1526d5dd35f6cf9c8e5c71ea69a311152d803793e56d576a2691ea3c312f78242cb87d2894c2544103009544f50" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/read-cmd-shim@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/read-cmd-shim#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/read-cmd-shim/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/read-cmd-shim.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/slide@1.1.6", + "author": "Isaac Z. Schlueter", + "name": "slide", + "version": "1.1.6", + "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "370aed8c283e959a2a84553c7cec25e1acb67a2f0f6aa081394577fde92d3d8f6daced72435a1711f987021280ad4554aff84e1efcb97fa01d3f5edd08cd3333" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/slide@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/slide-flow-control#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/slide-flow-control/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/slide-flow-control.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@2.3.0", + "author": "Rebecca Turner", + "name": "write-file-atomic", + "version": "2.3.0", + "description": "Write files in an atomic fashion w/configurable ownership", + "hashes": [ + { + "alg": "SHA-512", + "content": "19a1131f9c30b17f86727ce13e029c2a327a3360aadff899a755b263f5f5092aab5be8d534cf58ec3f040b6b0ce191bf57cc199529e226708a58f981600b9c45" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/write-file-atomic@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/write-file-atomic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/write-file-atomic/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/iarna/write-file-atomic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-npm-prefix@1.0.2", + "author": "Rebecca Turner", + "name": "find-npm-prefix", + "version": "1.0.2", + "description": "Find the npm project directory associated with for a given directory", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/find-npm-prefix@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/find-npm-prefix#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/find-npm-prefix/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/find-npm-prefix.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmaccess@3.0.1", + "author": "Kat Marchán", + "name": "libnpmaccess", + "version": "3.0.1", + "description": "programmatic library for `npm access` commands", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmaccess@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/libnpmaccess" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmaccess/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmaccess.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aproba@2.0.0", + "author": "Rebecca Turner", + "name": "aproba", + "version": "2.0.0", + "description": "A ridiculously light-weight argument validator (now browser friendly)", + "hashes": [ + { + "alg": "SHA-512", + "content": "63d27a6635eda1887c4675d508c394fedb439a4d5a063ba7abdbced2d6b9c7ce560d08907d417db083c121375b8a2215701a34dc78b78ccc62801b6c75d95747" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/aproba@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/aproba" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/aproba/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/aproba.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-package-arg@6.1.0", + "author": "Isaac Z. Schlueter", + "name": "npm-package-arg", + "version": "6.1.0", + "description": "Parse the things that can be arguments to `npm install`", + "hashes": [ + { + "alg": "SHA-512", + "content": "a81a6cb1a2f720e6568b9bc4294296d1c3bb9332de4fe1103bd5bc46c2ce65fefa285f44fcaf7ec07d02eedd3a1d73e9687f161f9c45d4c1312ee0b06d3a9152" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-package-arg@6.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npm-package-arg" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-package-arg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-package-arg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/validate-npm-package-name@3.0.0", + "author": "zeke", + "name": "validate-npm-package-name", + "version": "3.0.0", + "description": "Give me a string and I'll tell you if it's a valid npm package name", + "hashes": [ + { + "alg": "SHA-512", + "content": "33ac37ede54230ca2e27d57fb1d3c69c2e47e2e0ebef7ffec5dab41412cedd31455f5fbbc22518e84b37dbc34dfb2e37b6663e76851d37d83d276d6fa81ee22f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, npm, Inc\n\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/validate-npm-package-name@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/validate-npm-package-name" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/validate-npm-package-name/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/validate-npm-package-name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/builtins@1.0.3", + "name": "builtins", + "version": "1.0.3", + "description": "List of node.js builtin modules", + "hashes": [ + { + "alg": "SHA-512", + "content": "b980636a45a2a5f68efdb5c8ec4f2baba929c074592b970d62b52fd8ecd9488fc5be674cc97276b46f5d29c8c40b9607987a54030b1aae058864d59dc5bfdb9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Julian Gruber \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/builtins@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/builtins#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/builtins/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/juliangruber/builtins.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-registry-fetch@3.8.0", + "author": "Kat Marchán", + "name": "npm-registry-fetch", + "version": "3.8.0", + "description": "Fetch-based http client for use with npm registry APIs", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-registry-fetch@3.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/registry-fetch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/registry-fetch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/registry-fetch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/make-fetch-happen@4.0.1", + "author": "Kat Marchán", + "name": "make-fetch-happen", + "version": "4.0.1", + "description": "Opinionated, caching, retrying fetch client", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a711f08ba1f415279ce02b01a4e7919aaa8b2a2a3691ea4850949637741000fa1336e417390a65f9aca51f56eb7ead8037ba2740ef36fb02f720954f3bacf46" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/make-fetch-happen@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/make-fetch-happen#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/make-fetch-happen/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/make-fetch-happen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/agentkeepalive@3.5.2", + "author": "fengmk2", + "name": "agentkeepalive", + "version": "3.5.2", + "description": "Missing keepalive http.Agent", + "hashes": [ + { + "alg": "SHA-512", + "content": "667e1cc36344a9dfbd7e249558cb1c9e3c90d5af187e8739a016a32dea39c3e6011e00d4704058da14b86294f3ea23797ffdb342292d72e33ab52f31d69f5da4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/agentkeepalive@3.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/node-modules/agentkeepalive#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/node-modules/agentkeepalive/issues" + }, + { + "type": "vcs", + "url": "git://github.com/node-modules/agentkeepalive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/humanize-ms@1.2.1", + "author": "dead-horse", + "name": "humanize-ms", + "version": "1.2.1", + "description": "transform humanize time to ms", + "hashes": [ + { + "alg": "SHA-512", + "content": "165ef4bd8b6c0056ff0b4e8f4d2f5d641a3b8a16aef93bbf0cd0a4fcec8785e6b4ed2f9a78c5a914591469745af1f23e49c65b108f1d7d2c7063b83167d48055" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/humanize-ms@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/node-modules/humanize-ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/node-modules/humanize-ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/node-modules/humanize-ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-cache-semantics@3.8.1", + "author": "Kornel Lesiński", + "name": "http-cache-semantics", + "version": "3.8.1", + "description": "Parses Cache-Control and other headers. Helps building correct HTTP caches and proxies", + "hashes": [ + { + "alg": "SHA-512", + "content": "71aacf92571487b44e5912bb0afdbb44fb5d858854b1e95afee7b9fe32b38de815bd70ea33620b13d4360469fd259261d60f3b729e7ab2efc58104b37164bc71" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/http-cache-semantics@3.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pornel/http-cache-semantics#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pornel/http-cache-semantics/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pornel/http-cache-semantics.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-proxy-agent@2.1.0", + "author": "Nathan Rajlich", + "name": "http-proxy-agent", + "version": "2.1.0", + "description": "An HTTP(s) proxy `http.Agent` implementation for HTTP", + "hashes": [ + { + "alg": "SHA-512", + "content": "934cdd360a964c603a69e211569bdf5686f87cbe767537da7a1ca583463852f4b24af3aafd8f813b23eb82952b03b1f296abd4f2f2191ac46e5e6b29b245744e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/http-proxy-agent@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-http-proxy-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-http-proxy-agent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-http-proxy-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/agent-base@4.2.1", + "author": "Nathan Rajlich", + "name": "agent-base", + "version": "4.2.1", + "description": "Turn a function into an `http.Agent` instance", + "hashes": [ + { + "alg": "SHA-512", + "content": "a03b5957be34a377ebe6826d3cb3ac807da19764d13ec70d5c8c78573cc1c15957564bfc4479bb5d7a8601883cb76d3e1b0bba2cd0e7c7c1d1306a9518f67c57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/agent-base@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-agent-base#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-agent-base/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-agent-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-promisify@5.0.0", + "author": "Mike Hall", + "name": "es6-promisify", + "version": "5.0.0", + "description": "Converts callback-based functions to ES6 Promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "0be77a51db180e4d2531e6c7351e12d8dc9b40c3278003a73b06014234ce8afd0c92824c3f4332c369a0a432c17297c29912f1c85a98852fc27ce10dab848985" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/es6-promisify@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/digitaldesignlabs/es6-promisify#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/digitaldesignlabs/es6-promisify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/digitaldesignlabs/es6-promisify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-promise@4.2.5", + "author": "Yehuda Katz, Tom Dale, Stefan Penner and contributors", + "name": "es6-promise", + "version": "4.2.5", + "description": "A lightweight library that provides tools for organizing asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c90c6c7975ac5e22fc5d071bc6d9c6fd838b44bf0224de2f3e9e15f4c86ad89995336e4760f106c37af85e0c1f20774fffb8f8f8735110b9af10f8c5624f4ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-promise@4.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/es6-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/es6-promise/issues" + }, + { + "type": "vcs", + "url": "git://github.com/stefanpenner/es6-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@3.1.0", + "author": "TJ Holowaychuk", + "name": "debug", + "version": "3.1.0", + "description": "small debugging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, \nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial \nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT \nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, \nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/https-proxy-agent@2.2.1", + "author": "Nathan Rajlich", + "name": "https-proxy-agent", + "version": "2.2.1", + "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", + "hashes": [ + { + "alg": "SHA-512", + "content": "399866efffc90e742d84c56a94f01f919c8f3b67cc85f1d8ea063e8d9717f2b2df1621ad1e2210adf0fcd16bc20c734c43bec0937af90a23d10c3dab373a3639" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/https-proxy-agent@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-https-proxy-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-https-proxy-agent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-https-proxy-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-fetch-npm@2.0.2", + "author": "David Frank", + "name": "node-fetch-npm", + "version": "2.0.2", + "description": "An npm cli-oriented fork of the excellent node-fetch", + "hashes": [ + { + "alg": "SHA-512", + "content": "88eb88403583ca386ff6a483ae3f5aabf925b7a17dcf5a76a2d077015eefdf304370bff1f8e7c6b2f19065909c3196d47f8523c35c46350923bc69d54f6d9c2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 David Frank\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/node-fetch-npm@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-fetch-npm" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-fetch-npm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-fetch-npm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/promise-retry@1.1.1", + "author": "IndigoUnited", + "name": "promise-retry", + "version": "1.1.1", + "description": "Retries a function that returns a promise, leveraging the power of the retry module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ad132da8b0faf6f28d7b6c85bbefa1adc0eebe43e33dccf8999187e8b1c89450c62a8e153f7dfc11007d33376faebc6c94b27f3f6080881d1ccb6cf69ca591b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 IndigoUnited\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/promise-retry@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/IndigoUnited/node-promise-retry#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/IndigoUnited/node-promise-retry/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/IndigoUnited/node-promise-retry.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/err-code@1.1.2", + "author": "IndigoUnited", + "name": "err-code", + "version": "1.1.2", + "description": "Create an error with a code", + "hashes": [ + { + "alg": "SHA-512", + "content": "08900df8ed3fc80d4229f467f525ce19cb52a4433b0c2a27febff9af679714c636cc208905ab0585c33923ed64877029d7516c4025febc61dc78d3efa562a1a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/err-code@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/IndigoUnited/js-err-code#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/IndigoUnited/js-err-code/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/IndigoUnited/js-err-code.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/retry@0.10.1", + "author": "Tim Koschützki", + "name": "retry", + "version": "0.10.1", + "description": "Abstraction for exponential and custom retry strategies for failed operations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4b9224f08d487aad3e79e43b44f6b4d7f81281c8f7eb333100b67944b5d130af73647dfc228a1a9ed9b5800e0f8e4118edf6097a20276607f6450c2180b52a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011:\nTim Koschützki (tim@debuggable.com)\nFelix Geisendörfer (felix@debuggable.com)\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/retry@0.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tim-kos/node-retry" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tim-kos/node-retry/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tim-kos/node-retry.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socks-proxy-agent@4.0.1", + "author": "Nathan Rajlich", + "name": "socks-proxy-agent", + "version": "4.0.1", + "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd97669e36fd6b64f3e96110548babc9b4b0125c0fc4c65a21cecfcea6c94eb7b370a3739efea0893ec9eed6436750688d569ad63bcefd48947610d5074002a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/socks-proxy-agent@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-socks-proxy-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-socks-proxy-agent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-socks-proxy-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socks@2.2.2", + "author": "Josh Glazebrook", + "name": "socks", + "version": "2.2.2", + "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1c9ce7bdcb856e88d5142c937bd86accdba04d3a356c7cf5c8fa3fbdf0f93211fb085eba1ae687f28d3f85cc6be7ff11ecef753626da01600571f47978aae48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Josh Glazebrook\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socks@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JoshGlazebrook/socks/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JoshGlazebrook/socks/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JoshGlazebrook/socks.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/smart-buffer@4.0.1", + "author": "Josh Glazebrook", + "name": "smart-buffer", + "version": "4.0.1", + "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7884ad0787cacfa90976c577371ec681a0e5ca576d0c4e83e4717bf06c84962c4b3eeb8b01ab9905827da42431dbd4faf2f72acfd1dc6b088f5145c8bb4572a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2017 Josh Glazebrook\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/smart-buffer@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JoshGlazebrook/smart-buffer/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JoshGlazebrook/smart-buffer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JoshGlazebrook/smart-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmconfig@1.2.1", + "author": "Kat Marchán", + "name": "libnpmconfig", + "version": "1.2.1", + "description": "Standalone library for reading/writing/managing npm configurations", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmconfig@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/libnpmconfig" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmconfig/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmconfig.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmhook@5.0.2", + "author": "Kat Marchán", + "name": "libnpmhook", + "version": "5.0.2", + "description": "programmatic API for managing npm registry hooks", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmhook@5.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/libnpmhook#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmhook/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmhook.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmorg@1.0.0", + "author": "Kat Marchán", + "name": "libnpmorg", + "version": "1.0.0", + "description": "Programmatic api for `npm org` commands", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmorg@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/libnpmorg" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmorg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmorg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmpublish@1.1.0", + "author": "Kat Marchán", + "name": "libnpmpublish", + "version": "1.1.0", + "description": "Programmatic API for the bits behind npm publish and unpublish", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmpublish@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/libnpmpublish" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmpublish/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmpublish.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-package-data@2.4.0", + "author": "Meryn Stol", + "name": "normalize-package-data", + "version": "2.4.0", + "description": "Normalizes data that can be found in package.json files.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff908c3774f44785d38f80dc19a7b1a3eae8652752156ff400e39344eae3c73086d70ad65c4b066d129ebe39482fe643138b19949af9103e185b4caa9a42be78" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "This package contains code originally written by Isaac Z. Schlueter.\nUsed with permission.\n\nCopyright (c) Meryn Stol (\"Author\")\nAll rights reserved.\n\nThe BSD License\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-package-data@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/normalize-package-data#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/normalize-package-data/issues" + }, + { + "type": "vcs", + "url": "git://github.com/npm/normalize-package-data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmsearch@2.0.0", + "author": "Kat Marchán", + "name": "libnpmsearch", + "version": "2.0.0", + "description": "Programmatic API for searching in npm and compatible registries.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmsearch@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/libnpmsearch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmsearch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmsearch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/libnpmteam@1.0.1", + "author": "Kat Marchán", + "name": "libnpmteam", + "version": "1.0.1", + "description": "npm Team management APIs", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/libnpmteam@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://npmjs.com/package/libnpmteam" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/libnpmteam/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/libnpmteam.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lock-verify@2.0.2", + "author": "Rebecca Turner", + "name": "lock-verify", + "version": "2.0.2", + "description": "Report if your package.json is out of sync with your package-lock.json.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, Rebecca Turner \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/lock-verify@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/lock-verify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/lock-verify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iarna/lock-verify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-lifecycle@2.1.0", + "author": "Mike Sherov", + "name": "npm-lifecycle", + "version": "2.1.0", + "description": "JavaScript package lifecycle hook runner", + "licenses": [ + { + "license": { + "id": "Artistic-2.0", + "text": { + "content": "The npm application\nCopyright (c) npm, Inc. and Contributors\nLicensed on the terms of The Artistic License 2.0\n\nNode package dependencies of the npm application\nCopyright (c) their respective copyright owners\nLicensed on their respective license terms\n\nThe npm public registry at https://registry.npmjs.org\nand the npm website at https://www.npmjs.com\nOperated by npm, Inc.\nUse governed by terms published on https://www.npmjs.com\n\n\"Node.js\"\nTrademark Joyent, Inc., https://joyent.com\nNeither npm nor npm, Inc. are affiliated with Joyent, Inc.\n\nThe Node.js application\nProject of Node Foundation, https://nodejs.org\n\nThe npm Logo\nCopyright (c) Mathias Pettersson and Brian Hammond\n\n\"Gubblebum Blocky\" typeface\nCopyright (c) Tjarda Koster, https://jelloween.deviantart.com\nUsed with permission\n\n\n--------\n\n\nThe Artistic License 2.0\n\nCopyright (c) 2000-2006, The Perl Foundation.\n\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\nPreamble\n\nThis license establishes the terms under which a given free software\nPackage may be copied, modified, distributed, and/or redistributed.\nThe intent is that the Copyright Holder maintains some artistic\ncontrol over the development of that Package while still keeping the\nPackage available as open source and free software.\n\nYou are always permitted to make arrangements wholly outside of this\nlicense directly with the Copyright Holder of a given Package. If the\nterms of this license do not permit the full use that you propose to\nmake of the Package, you should contact the Copyright Holder and seek\na different licensing arrangement.\n\nDefinitions\n\n \"Copyright Holder\" means the individual(s) or organization(s)\n named in the copyright notice for the entire Package.\n\n \"Contributor\" means any party that has contributed code or other\n material to the Package, in accordance with the Copyright Holder's\n procedures.\n\n \"You\" and \"your\" means any person who would like to copy,\n distribute, or modify the Package.\n\n \"Package\" means the collection of files distributed by the\n Copyright Holder, and derivatives of that collection and/or of\n those files. A given Package may consist of either the Standard\n Version, or a Modified Version.\n\n \"Distribute\" means providing a copy of the Package or making it\n accessible to anyone else, or in the case of a company or\n organization, to others outside of your company or organization.\n\n \"Distributor Fee\" means any fee that you charge for Distributing\n this Package or providing support for this Package to another\n party. It does not mean licensing fees.\n\n \"Standard Version\" refers to the Package if it has not been\n modified, or has been modified only in ways explicitly requested\n by the Copyright Holder.\n\n \"Modified Version\" means the Package, if it has been changed, and\n such changes were not explicitly requested by the Copyright\n Holder.\n\n \"Original License\" means this Artistic License as Distributed with\n the Standard Version of the Package, in its current version or as\n it may be modified by The Perl Foundation in the future.\n\n \"Source\" form means the source code, documentation source, and\n configuration files for the Package.\n\n \"Compiled\" form means the compiled bytecode, object code, binary,\n or any other form resulting from mechanical transformation or\n translation of the Source form.\n\n\nPermission for Use and Modification Without Distribution\n\n(1) You are permitted to use the Standard Version and create and use\nModified Versions for any purpose without restriction, provided that\nyou do not Distribute the Modified Version.\n\n\nPermissions for Redistribution of the Standard Version\n\n(2) You may Distribute verbatim copies of the Source form of the\nStandard Version of this Package in any medium without restriction,\neither gratis or for a Distributor Fee, provided that you duplicate\nall of the original copyright notices and associated disclaimers. At\nyour discretion, such verbatim copies may or may not include a\nCompiled form of the Package.\n\n(3) You may apply any bug fixes, portability changes, and other\nmodifications made available from the Copyright Holder. The resulting\nPackage will still be considered the Standard Version, and as such\nwill be subject to the Original License.\n\n\nDistribution of Modified Versions of the Package as Source\n\n(4) You may Distribute your Modified Version as Source (either gratis\nor for a Distributor Fee, and with or without a Compiled form of the\nModified Version) provided that you clearly document how it differs\nfrom the Standard Version, including, but not limited to, documenting\nany non-standard features, executables, or modules, and provided that\nyou do at least ONE of the following:\n\n (a) make the Modified Version available to the Copyright Holder\n of the Standard Version, under the Original License, so that the\n Copyright Holder may include your modifications in the Standard\n Version.\n\n (b) ensure that installation of your Modified Version does not\n prevent the user installing or running the Standard Version. In\n addition, the Modified Version must bear a name that is different\n from the name of the Standard Version.\n\n (c) allow anyone who receives a copy of the Modified Version to\n make the Source form of the Modified Version available to others\n under\n\n (i) the Original License or\n\n (ii) a license that permits the licensee to freely copy,\n modify and redistribute the Modified Version using the same\n licensing terms that apply to the copy that the licensee\n received, and requires that the Source form of the Modified\n Version, and of any works derived from it, be made freely\n available in that license fees are prohibited but Distributor\n Fees are allowed.\n\n\nDistribution of Compiled Forms of the Standard Version\nor Modified Versions without the Source\n\n(5) You may Distribute Compiled forms of the Standard Version without\nthe Source, provided that you include complete instructions on how to\nget the Source of the Standard Version. Such instructions must be\nvalid at the time of your distribution. If these instructions, at any\ntime while you are carrying out such distribution, become invalid, you\nmust provide new instructions on demand or cease further distribution.\nIf you provide valid instructions or cease distribution within thirty\ndays after you become aware that the instructions are invalid, then\nyou do not forfeit any of your rights under this license.\n\n(6) You may Distribute a Modified Version in Compiled form without\nthe Source, provided that you comply with Section 4 with respect to\nthe Source of the Modified Version.\n\n\nAggregating or Linking the Package\n\n(7) You may aggregate the Package (either the Standard Version or\nModified Version) with other packages and Distribute the resulting\naggregation provided that you do not charge a licensing fee for the\nPackage. Distributor Fees are permitted, and licensing fees for other\ncomponents in the aggregation are permitted. The terms of this license\napply to the use and Distribution of the Standard or Modified Versions\nas included in the aggregation.\n\n(8) You are permitted to link Modified and Standard Versions with\nother works, to embed the Package in a larger work of your own, or to\nbuild stand-alone binary or bytecode versions of applications that\ninclude the Package, and Distribute the result without restriction,\nprovided the result does not expose a direct interface to the Package.\n\n\nItems That are Not Considered Part of a Modified Version\n\n(9) Works (including, but not limited to, modules and scripts) that\nmerely extend or make use of the Package, do not, by themselves, cause\nthe Package to be a Modified Version. In addition, such works are not\nconsidered parts of the Package itself, and are not subject to the\nterms of this license.\n\n\nGeneral Provisions\n\n(10) Any use, modification, and distribution of the Standard or\nModified Versions is governed by this Artistic License. By using,\nmodifying or distributing the Package, you accept this license. Do not\nuse, modify, or distribute the Package, if you do not accept this\nlicense.\n\n(11) If your Modified Version has been derived from a Modified\nVersion made by someone other than you, you are nevertheless required\nto ensure that your Modified Version complies with the requirements of\nthis license.\n\n(12) This license does not grant you the right to use any trademark,\nservice mark, tradename, or logo of the Copyright Holder.\n\n(13) This license includes the non-exclusive, worldwide,\nfree-of-charge patent license to make, have made, use, offer to sell,\nsell, import and otherwise transfer the Package with respect to any\npatent claims licensable by the Copyright Holder that are necessarily\ninfringed by the Package. If you institute patent litigation\n(including a cross-claim or counterclaim) against any party alleging\nthat the Package constitutes direct or contributory patent\ninfringement, then this Artistic License to you shall terminate on the\ndate that such litigation is filed.\n\n(14) Disclaimer of Warranty:\nTHE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS \"AS\nIS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\nNON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL\nLAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n--------\n" + } + } + } + ], + "purl": "pkg:npm/npm-lifecycle@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/lifecycle#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/lifecycle/issues" + }, + { + "type": "vcs", + "url": "git://github.com/npm/lifecycle.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/byline@5.0.0", + "author": "John Hewson", + "name": "byline", + "version": "5.0.0", + "description": "simple line-by-line stream reader", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3ac1e6c0cbe478491f1756e256b76576ac6be19eb87137ef52d7918db932b7c0a3ce5c517a44d73ef2e8365e11fedace1ffaeb9d1b891455899839058bda0d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "node-byline (C) 2011-2015 John Hewson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/byline@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jahewson/node-byline" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jahewson/node-byline/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jahewson/node-byline.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uid-number@0.0.6", + "author": "Isaac Z. Schlueter", + "name": "uid-number", + "version": "0.0.6", + "description": "Convert a username/group name to a uid/gid number", + "hashes": [ + { + "alg": "SHA-512", + "content": "738eb51572258ecc02bac7199faef1abd3e9b3390f4fa46385e585413802c9a6c9ad3528cc495a9dbd1812abf6506824db8ed8a5c264141b9218dbc19695ccf7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uid-number@0.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/uid-number#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/uid-number/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/uid-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/umask@1.1.0", + "author": "Sam Mikes", + "name": "umask", + "version": "1.1.0", + "description": "convert umask from string <-> number", + "hashes": [ + { + "alg": "SHA-512", + "content": "944febc4e866892709bbd2fa453355801ff365b17ebc60b4fe9e83df19e401e3c8da8d2c332146f7aea24792a2e74388ff498d8b6c9a467c5f2ec3e611917f24" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Sam Mikes\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/umask@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/smikes/umask" + }, + { + "type": "issue-tracker", + "url": "https://github.com/smikes/umask/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/smikes/umask.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-logical-tree@1.2.1", + "author": "Kat Marchán", + "name": "npm-logical-tree", + "version": "1.2.1", + "description": "Calculate 'logical' trees from a package.json + package-lock", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-logical-tree@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/logical-tree#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/logical-tree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/logical-tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-profile@4.0.1", + "author": "Rebecca Turner", + "name": "npm-profile", + "version": "4.0.1", + "description": "Library for updating an npmjs.com profile", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-profile@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npm-profile/tree/latest/lib#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-profile/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-profile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pacote@9.3.0", + "author": "Kat Marchán", + "name": "pacote", + "version": "9.3.0", + "description": "JavaScript package downloader", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2017 Kat Marchán\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\nOR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/pacote@9.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/pacote#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/pacote/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/pacote.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minipass@2.3.5", + "author": "Isaac Z. Schlueter", + "name": "minipass", + "version": "2.3.5", + "description": "minimal implementation of a PassThrough stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "c317d48e0f5679b1fe0940d7fc275b4658794a67d98b2fe1a64c5a448d7a63d5b9e8f6bbe6c5a077faef16295282b6ae0fd37217298fffe2455772b0cc8b097a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) npm, Inc. and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minipass@2.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minipass#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minipass/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/minipass.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-packlist@1.2.0", + "author": "Isaac Z. Schlueter", + "name": "npm-packlist", + "version": "1.2.0", + "description": "Get a list of the files to add from a folder into an npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "e7e019830aeee487af17965d9c5825079c0d9471b500e3aec36f16854abcffc7a684198bbfa8d7e5bcb85890a1ee55b4b92619612e835ea22cc995485d1654f4" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-packlist@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://www.npmjs.com/package/npm-packlist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-packlist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-packlist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-bundled@1.0.5", + "author": "Isaac Z. Schlueter", + "name": "npm-bundled", + "version": "1.0.5", + "description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof", + "hashes": [ + { + "alg": "SHA-512", + "content": "c790c7ba9d12bb241c98bdeced1c7f610f2c6f0fc7ce0d2b8f8f1e374755ee17f972642ae4f5c87a2a2ba07deb695d500b5ca1dee4d8b8c4e1bc4405de22a019" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) npm, Inc. and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-bundled@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npm-bundled#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-bundled/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-bundled.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-pick-manifest@2.2.3", + "author": "Kat Marchán", + "name": "npm-pick-manifest", + "version": "2.2.3", + "description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8896e042e4adb4d7e81153ce6f1655305f73c54a16406c0803369d9ec097563154a9a5da3f662874ba5d84724cbf5fb6f9d49ecbaeb5003fe5ce98e0af619a8" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) npm, Inc.\n\nPermission to use, copy, modify, and/or distribute this software for\nany purpose with or without fee is hereby granted, provided that the\nabove copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE COPYRIGHT HOLDER DISCLAIMS\nALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR\nCONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE\nUSE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-pick-manifest@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/npm-pick-manifest#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/npm-pick-manifest/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/npm-pick-manifest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/protoduck@5.0.1", + "author": "Kat Marchán", + "name": "protoduck", + "version": "5.0.1", + "description": "Fancy duck typing for the most serious of ducks.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b1a027830a8081639e4132f8f870012375550519159e77d6713e5a93298cb0d670c34d0e29aa69c830019f26583b0f1df9b81fccf8f1c93d39863af68268f4e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2017 Kat Marchán\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\nOR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/protoduck@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zkat/protoduck#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/protoduck/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zkat/protoduck.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/genfun@5.0.0", + "author": "Kat Marchán", + "name": "genfun", + "version": "5.0.0", + "description": "Fast, prototype-friendly multimethods.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3ccafd5e0d2e50af3e9c6d20c1062934bbb8c2802fde03d799ae5f4c20dd4b7cacc54ee1ade841e0af7d5833cc93f5c8dbe41a655dbe08cf756d3989a0b7c26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2017 Kat Marchán\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE\nOR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/genfun@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/zkat/genfun" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zkat/genfun/issues" + }, + { + "type": "vcs", + "url": "git://github.com/zkat/genfun.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tar@4.4.8", + "author": "Isaac Z. Schlueter", + "name": "tar", + "version": "4.4.8", + "description": "tar for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "14212143fe2b135cd8bfdad85c9c3f9ac46ab279a58dee631cfea1b9678167bd388d44f2d36739019c96ba3a4c4756b1ea6570f4dc8931fb8ad8230359521f80" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tar@4.4.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-tar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-tar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-tar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minizlib@1.2.1", + "author": "Isaac Z. Schlueter", + "name": "minizlib", + "version": "1.2.1", + "description": "A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9960c3849e656c7427932551345bd643fa956713c87d1e66bf88ec30443b1d42878fa685f9ebff01eb3dcff55370a6926e04a351b850d1351a9159ec53f46f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Minizlib was created by Isaac Z. Schlueter.\nIt is a derivative work of the Node.js project.\n\n\"\"\"\nCopyright Isaac Z. Schlueter and Contributors\nCopyright Node.js contributors. All rights reserved.\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\"\"\"\n" + } + } + } + ], + "purl": "pkg:npm/minizlib@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minizlib#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minizlib/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/minizlib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-package-json@2.0.13", + "author": "Isaac Z. Schlueter", + "name": "read-package-json", + "version": "2.0.13", + "description": "The thing npm uses to read package.json files with semantics and defaults and validation", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f52a6b8b42be994894b4b56f217f7586a51970b3324e5d9dc4f1877f0cd45a33977ed7055165d1e5a4604b02ea2f8ebdbc2db5af8e95a4047331a511868f334" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-package-json@2.0.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/read-package-json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/read-package-json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/read-package-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stringify-package@1.0.0", + "author": "Kat Marchán", + "name": "stringify-package", + "version": "1.0.0", + "description": "stringifies npm-written json files", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright npm, Inc\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stringify-package@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/stringify-package" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/stringify-package/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/stringify-package.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/command@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "command", + "version": "3.10.0", + "description": "Lerna's internal base class for commands", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/command@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/child-process@3.3.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "child-process", + "version": "3.3.0", + "description": "Lerna's internal child_process wrapper", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/child-process@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strong-log-transformer@2.1.0", + "author": "Ryan Graham", + "name": "strong-log-transformer", + "version": "2.1.0", + "description": "Stream transformer that prefixes lines with timestamps and other things.", + "hashes": [ + { + "alg": "SHA-512", + "content": "eacb1453cd74cde849f44795c1927f347752ea5ee293d9296b3224b65fa9e32e188d9e40594705013b8de7684c68ba96b549ff8b4c6fe3988946c8ad9c4d9624" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright (c) Ryan Graham 2014,2018. All Rights Reserved.\nNode module: strong-log-transformer\n\n--------\nCopyright 2014,2018 Ryan Graham \n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/strong-log-transformer@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/strongloop/strong-log-transformer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/strongloop/strong-log-transformer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/strongloop/strong-log-transformer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/project@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "project", + "version": "3.10.0", + "description": "Lerna project configuration", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/project@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/package@3.7.2", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "package", + "version": "3.7.2", + "description": "Lerna's internal representation of a package", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/package@3.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write-pkg@3.2.0", + "author": "Sindre Sorhus", + "name": "write-pkg", + "version": "3.2.0", + "description": "Write a package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "b57da27d9d18a8414e175c23456d8f93ddcd2ec8f4dbe9f550fe51bceeab0acd0ae91da0d6969dbdfd34e9c63be0f40928c192dabe3634aec50f4746e98ea96b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/write-pkg@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/write-pkg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/write-pkg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/write-pkg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sort-keys@2.0.0", + "author": "Sindre Sorhus", + "name": "sort-keys", + "version": "2.0.0", + "description": "Sort the keys of an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf39fc692a8a832b558a4d22c1d0448becdebdb4d866881ec1350ce9db69986c0471dcdbb9bfd35f86c2cd185e6c30910b74335e026c2d1281d95fcea1fec75e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sort-keys@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/sort-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/sort-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/sort-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write-json-file@2.3.0", + "author": "Sindre Sorhus", + "name": "write-json-file", + "version": "2.3.0", + "description": "Stringify and write JSON to a file atomically", + "hashes": [ + { + "alg": "SHA-512", + "content": "f38f85d22805a7674f0fa5290108ce517dc274a50ea94ce7ea813db0304dcd45c8351e5571e275adab9996da9007f6dc62cc771292b2b380bbfcf8af29402259" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/write-json-file@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/write-json-file#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/write-json-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/write-json-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-indent@5.0.0", + "author": "Sindre Sorhus", + "name": "detect-indent", + "version": "5.0.0", + "description": "Detect the indentation of code", + "hashes": [ + { + "alg": "SHA-512", + "content": "c68dd63fae9235baf51229bce6cfeac87d192fc3d0530a7ce875a6d12d65f169c9ff38d3e93df0d67c0d034c8e65ebaf39e9aea4462fa6f17a04875846e11125" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/detect-indent@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/detect-indent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/detect-indent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/detect-indent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@5.0.7", + "author": "David Clark", + "name": "cosmiconfig", + "version": "5.0.7", + "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a23572f00053d81f2db95e64cfa5a7d8be7dc22c0909f052ecb1cabbf0c41dd4a874394e98ce19f8795d8c545e06f561106685841a5b5ab5d47e9ed18f325e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 David Clark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cosmiconfig@5.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davidtheclark/cosmiconfig#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davidtheclark/cosmiconfig/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davidtheclark/cosmiconfig.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-fresh@2.0.0", + "author": "Sindre Sorhus", + "name": "import-fresh", + "version": "2.0.0", + "description": "Import a module while bypassing the cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "799e47f2b72061acc76ca0b73c6e029473729024b1b4087149210cfb699bfbb7af0f608a17957b73474dba6ec07690e1d197480b0658f6c4529fc7fe287f7ab2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-fresh@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-fresh#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-fresh/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-fresh.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caller-path@2.0.0", + "author": "Sindre Sorhus", + "name": "caller-path", + "version": "2.0.0", + "description": "Get the path of the caller function", + "hashes": [ + { + "alg": "SHA-512", + "content": "509884d68b635cf179ff1f93df34e7485893384989a064c3f47981a319c2530868eb56b6792367fd5c2dc2e2010c0a364843afd4027b0112398029a88452eefe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/caller-path@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/caller-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/caller-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/caller-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caller-callsite@2.0.0", + "author": "Sindre Sorhus", + "name": "caller-callsite", + "version": "2.0.0", + "description": "Get the callsite of the caller function", + "hashes": [ + { + "alg": "SHA-512", + "content": "26e1b7a88e1039fb45b19c8e9f5aaaf3b7eae60acb23293525877994999d03e7c6eda43da40fe2dc920919c3b7ab432b45c1e53add54f997875bc0eaf5ac402d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/caller-callsite@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/caller-callsite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/caller-callsite/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/caller-callsite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/callsites@2.0.0", + "author": "Sindre Sorhus", + "name": "callsites", + "version": "2.0.0", + "description": "Get callsites from the V8 stack trace API", + "hashes": [ + { + "alg": "SHA-512", + "content": "66fe039ecf486d75e63e48114548c06894207cde315f9a7af9140585652ab1c76fbcadb12bf64bf1bdc85c826c8fee2c0fe7f6e0dc275b2d8163c009f36241d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/callsites@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/callsites#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/callsites/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/callsites.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-yaml@3.12.0", + "author": "Vladimir Zapparov", + "name": "js-yaml", + "version": "3.12.0", + "description": "YAML 1.2 parser and serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24307ece5d727b62b37d3a4dff497ae7bb8897f723a4fb6e67a97e22992da7a6ebd36039a8fd0119a2ac199186880e4de356f04e4ce20480485a2ceca7052f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2011-2015 by Vitaly Puzrin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-yaml@3.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/js-yaml" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/js-yaml/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/js-yaml.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dedent@0.7.0", + "author": "Desmond Brand", + "name": "dedent", + "version": "0.7.0", + "description": "An ES6 string tag that strips indentation from multi-line strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "43a7ca50faa7007032862520154ec15332e2bf491df2c687f5a97bb67bb943fa248fa767ba9c724e01480635732404dd7c8026f4d02cbd73738da29af9bc55c8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Desmond Brand (dmnd@desmondbrand.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dedent@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dmnd/dedent" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dmnd/dedent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dmnd/dedent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dot-prop@4.2.0", + "author": "Sindre Sorhus", + "name": "dot-prop", + "version": "4.2.0", + "description": "Get, set, or delete a property from a nested object using a dot path", + "hashes": [ + { + "alg": "SHA-512", + "content": "93810b59e114dee09cc2e6fbf9d5b276a401463023915f4bdf71e35511b95e8d90c9b23a8dafeffb85bbdd2462f2e6c2a89cf497d5ec4cfd4d6dec1fcaa69297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dot-prop@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/dot-prop#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/dot-prop/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/dot-prop.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globby@8.0.2", + "author": "Sindre Sorhus", + "name": "globby", + "version": "8.0.2", + "description": "Extends `glob` with support for multiple patterns and exposes a Promise API", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c9453207d84787e3891af8b5a283e12a4f638d498a5594d7f1ea9c9de7ddbf545d536df96327b7a5c227bba12c1c5622c6a8e756a1c49dbb6b71c0117d6e399" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globby@8.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/globby#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/globby/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/globby.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-map@1.2.0", + "author": "Sindre Sorhus", + "name": "p-map", + "version": "1.2.0", + "description": "Map over promises concurrently", + "hashes": [ + { + "alg": "SHA-512", + "content": "afacca00230d8633c931397c29c147e258bffe092b5d67db0fa7de57c97a768447973963156189d803fa88a682257c9998050c38fb6f6d6ec45e46d63bfa4b10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-map@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/write-log-file@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "write-log-file", + "version": "3.6.0", + "description": "What lerna uses to dump logs", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/write-log-file@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-ci@1.2.1", + "author": "Thomas Watson Steen", + "name": "is-ci", + "version": "1.2.1", + "description": "Detect if the current environment is a CI server", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3ab5fb1a41a422dc935c8811fab2156a103be11aeb744945ebdf56a0f0f77c0416d55657067d68693e610ea0ce912794c585bca9bdfe72c91c3f5575b52225a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2018 Thomas Watson Steen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-ci@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/watson/is-ci" + }, + { + "type": "issue-tracker", + "url": "https://github.com/watson/is-ci/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/watson/is-ci.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ci-info@1.6.0", + "author": "Thomas Watson Steen", + "name": "ci-info", + "version": "1.6.0", + "description": "Get details about the current Continuous Integration environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "bec19d9304820e95a63fcd277004d7ee279ae435907a6835520096e49f2daa3537958c3814162e8fcf49d024d5a2603b0447ef49977ce06987928f8cc45414d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2018 Thomas Watson Steen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ci-info@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/watson/ci-info" + }, + { + "type": "issue-tracker", + "url": "https://github.com/watson/ci-info/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/watson/ci-info.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/filter-options@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "filter-options", + "version": "3.10.1", + "description": "Options for lerna sub-commands that need filtering", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/filter-options@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/collect-updates@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "collect-updates", + "version": "3.10.1", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/collect-updates@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/describe-ref@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "describe-ref", + "version": "3.10.0", + "description": "Parse git describe output for lerna-related tags", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/describe-ref@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/describe-ref#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/filter-packages@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "filter-packages", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/filter-packages@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/multimatch@2.1.0", + "author": "Sindre Sorhus", + "name": "multimatch", + "version": "2.1.0", + "description": "Extends minimatch.match() with support for multiple patterns", + "hashes": [ + { + "alg": "SHA-512", + "content": "d26ccaf329a259d7a14c1889874bc2940cc6c906ddb725aacd2571fff10ae0dfc3fb9f7d4459467d302c2b0db3312001b431bd0ba525dbeb7c7f62db7637f998" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus, Jon Schlinkert, contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/multimatch@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/multimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/multimatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/multimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-differ@1.0.0", + "author": "Sindre Sorhus", + "name": "array-differ", + "version": "1.0.0", + "description": "Create an array with values that are present in the first input array but not additional ones", + "hashes": [ + { + "alg": "SHA-512", + "content": "2de658f83643467bcfede32e43a2c77c2cd41b100021589406588adb83f78565cbeb2e12a2bb6047a3629bac6b91f48b9661f4fa4fbd358370542dace7766b61" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/array-differ@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/array-differ#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/array-differ/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/array-differ.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/has-npm-version@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "has-npm-version", + "version": "3.10.0", + "description": "Test if the current version of npm satisfies a given semver range", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/has-npm-version@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/has-npm-version#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/npm-install@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "npm-install", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/npm-install@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/get-npm-exec-opts@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "get-npm-exec-opts", + "version": "3.6.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/get-npm-exec-opts@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-extra@7.0.1", + "author": "JP Richardson", + "name": "fs-extra", + "version": "7.0.1", + "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", + "hashes": [ + { + "alg": "SHA-512", + "content": "26210f033cb4859d04376e699179209b3c67fd386a4db0eb4ea1a710ef5e14c477de67c6ef60366058d0db7fb34ec9c3b5c39eb01294b515d64e1e95e1b41456" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011-2017 JP Richardson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-extra@7.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-fs-extra" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-fs-extra/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jprichardson/node-fs-extra.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonfile@4.0.0", + "author": "JP Richardson", + "name": "jsonfile", + "version": "4.0.0", + "description": "Easily read/write JSON files.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ca96502a6e02e0c476a3f1312563298a08082b01279b26b5a94e712439a4e8c2ddb754a5d7374b147ab889f9e87bcbab9f6ff082e5aa75d69cfbd7f70cd2153" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2015, JP Richardson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonfile@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-jsonfile#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-jsonfile/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jprichardson/node-jsonfile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/universalify@0.1.2", + "author": "Ryan Zimmerman", + "name": "universalify", + "version": "0.1.2", + "description": "Make a callback- or promise-based function support both promises and callbacks.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac125e2390970259b2d6957eeb5ed607d27add4e9771acc71c5d9fd9d6c98b1e17ce9505d114b765b8f414620e080bdae4ffddfc604e61a002435c3ed1acd492" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2017, Ryan Zimmerman \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/universalify@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/RyanZim/universalify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/RyanZim/universalify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/RyanZim/universalify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/pulse-till-done@3.7.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "pulse-till-done", + "version": "3.7.1", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/pulse-till-done@3.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/rimraf-dir@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "rimraf-dir", + "version": "3.10.0", + "description": "Run rimraf on a directory in a subprocess to hack around slowness", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/rimraf-dir@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/run-lifecycle@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "run-lifecycle", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/run-lifecycle@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/npm-conf@3.7.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "npm-conf", + "version": "3.7.0", + "description": "Vendored npm-conf with updates", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/npm-conf@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/config-chain@1.1.12", + "author": "Dominic Tarr", + "name": "config-chain", + "version": "1.1.12", + "description": "HANDLE CONFIGURATION ONCE AND FOR ALL", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa3f9ff003c04571eb33486b6aa5d86f6fdb395495e0fbc9425359fc3563d10ae634cdaad9eba2ce47ae55c910e7b27e5b49911fa1ef8be939d0ce09ba5d9545" + } + ], + "purl": "pkg:npm/config-chain@1.1.12", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/config-chain" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/config-chain/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dominictarr/config-chain.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/proto-list@1.2.4", + "author": "Isaac Z. Schlueter", + "name": "proto-list", + "version": "1.2.4", + "description": "A utility for managing a prototype chain", + "hashes": [ + { + "alg": "SHA-512", + "content": "bed2bff786a4c6c4cc85ed3f71b7e947eb323eeb3372ec21a958c9ab6e82b8d0e01468faf36a1105738fe4c269bf6afb26d13c32c89ea4622abef3930709f6bc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/proto-list@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/proto-list#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/proto-list/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/proto-list.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/run-parallel-batches@3.0.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "run-parallel-batches", + "version": "3.0.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-2017 Sebastian McKenzie \n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/run-parallel-batches@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-map-series@1.0.0", + "author": "Sindre Sorhus", + "name": "p-map-series", + "version": "1.0.0", + "description": "Map over promises serially", + "hashes": [ + { + "alg": "SHA-512", + "content": "e24f4b96f63a068ff515c21d577df0a994044b43f2fa2288494f5473ca7c0235a864f9c528ca552150f7b341189f88f32e1d48f967946642746286b841fc372a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-map-series@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-map-series#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-map-series/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-map-series.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-reduce@1.0.0", + "author": "Sindre Sorhus", + "name": "p-reduce", + "version": "1.0.0", + "description": "Reduce a list of values using promises into a promise for a value", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd3c754f7a0cd713bf63c1a3d2c5b213bf0420967eb7e68499751dbd082f1a648cae2eda3d31e8a2f6d712b7962a42f98f6d44afad170162d3cca6c02983ae8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-reduce@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-reduce#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-reduce/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-reduce.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/symlink-binary@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "symlink-binary", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/symlink-binary@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/create-symlink@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "create-symlink", + "version": "3.6.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/create-symlink@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/symlink-dependencies@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "symlink-dependencies", + "version": "3.10.0", + "description": "Lerna's internal symlinking tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/symlink-dependencies@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/resolve-symlink@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "resolve-symlink", + "version": "3.6.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/resolve-symlink@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-port@3.2.0", + "author": "Sindre Sorhus", + "name": "get-port", + "version": "3.2.0", + "description": "Get an available port", + "hashes": [ + { + "alg": "SHA-512", + "content": "c795092a581e522353f27ca8fc0727c0b9d9b9935c4a34b0d24a20441f9685dd5f8e316ae01d61c921714855964a7e26201ce0dec44d5031587388398233e82e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-port@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/get-port#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/get-port/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/get-port.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-waterfall@1.0.0", + "author": "Sindre Sorhus", + "name": "p-waterfall", + "version": "1.0.0", + "description": "Run promise-returning & async functions in series, each passing its result to the next", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-waterfall@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-waterfall#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-waterfall/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-waterfall.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-package-tree@5.2.1", + "author": "Isaac Z. Schlueter", + "name": "read-package-tree", + "version": "5.2.1", + "description": "Read the contents of node_modules.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-package-tree@5.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/read-package-tree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/read-package-tree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/read-package-tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debuglog@1.0.1", + "author": "Sam Roberts", + "name": "debuglog", + "version": "1.0.1", + "description": "backport of util.debuglog from node v0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "b32059fab9c02b712032c1f669810e2d45bb999498f466fed3050c085b19bdc9a2cfe1e2800d0b39cabf1e842a56e186f842b292e9dced01b66f3ae9a277da4b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/debuglog@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sam-github/node-debuglog#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sam-github/node-debuglog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sam-github/node-debuglog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dezalgo@1.0.3", + "author": "Isaac Z. Schlueter", + "name": "dezalgo", + "version": "1.0.3", + "description": "Contain async insanity so that the dark pony lord doesn't eat souls", + "hashes": [ + { + "alg": "SHA-512", + "content": "2bb8b8ccd7d3da4810cf71b2943c38d28b7d180138eec159f445c71523cfeb338d2e01fa9165c4d0a58972191b4092c19116b3ab800fc19e0ec22145953f7939" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dezalgo@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/dezalgo" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/dezalgo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/dezalgo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readdir-scoped-modules@1.0.2", + "author": "Isaac Z. Schlueter", + "name": "readdir-scoped-modules", + "version": "1.0.2", + "description": "Like `fs.readdir` but handling `@org/module` dirs as if they were a single entry.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ac6a29037aa01083b2627d1b199f5349657a3d13e57097209f6e4661c322128a7aa4e73352eb6eba1d2e646a1e8fd1269028617a4a43676551d4cc7158c580f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/readdir-scoped-modules@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/readdir-scoped-modules" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/readdir-scoped-modules/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/readdir-scoped-modules.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/changed@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "changed", + "version": "3.10.1", + "description": "List local packages that have changed since the last tagged release", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/changed@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/listable@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "listable", + "version": "3.10.0", + "description": "Shared logic for listing package information", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/listable@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/listable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/columnify@1.5.4", + "author": "Tim Oxley", + "name": "columnify", + "version": "1.5.4", + "description": "Render data in text columns. Supports in-column text-wrap.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9689a3b8564a7cce8c4809d5f5a0990bdb1cd2a19b99975fca036ffa70a9a9591229d0b10a494bb5dd7a3b41082c6908987c3d6691e40271da07ef19c6ae56e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Tim Oxley\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/columnify@1.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/timoxley/columnify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/timoxley/columnify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/timoxley/columnify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wcwidth@1.0.1", + "author": "Tim Oxley", + "name": "wcwidth", + "version": "1.0.1", + "description": "Port of C's wcwidth() and wcswidth()", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c73c4c12d2ae936b172f1bce7ef046246e20aec765ed586da691ce3b360d80efb050bbdf83a8838995d493e0780f92e79aeddbca4a3e55817dcfd5de2b5bc4e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "wcwidth.js: JavaScript Portng of Markus Kuhn's wcwidth() Implementation\n=======================================================================\n\nCopyright (C) 2012 by Jun Woong.\n\nThis package is a JavaScript porting of `wcwidth()` implementation\n[by Markus Kuhn](http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c).\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\n\nTHIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR\nOR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n\n" + } + } + } + ], + "purl": "pkg:npm/wcwidth@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/timoxley/wcwidth#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/timoxley/wcwidth/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/timoxley/wcwidth.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/defaults@1.0.3", + "author": "Elijah Insua", + "name": "defaults", + "version": "1.0.3", + "description": "merge single level defaults over a config object", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3cda2b473a762b37421bf2bfb3ee5690cf7b1d13ee053f777d43b54b3bb53e2914fe091d06b16bb21f1cdd018f3623b717bf41bfb70aeaa264c92ceb2c3b91c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Elijah Insua\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/defaults@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tmpvar/defaults#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tmpvar/defaults/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tmpvar/defaults.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone@1.0.4", + "author": "Paul Vorbach", + "name": "clone", + "version": "1.0.4", + "description": "deep cloning of objects and arrays", + "hashes": [ + { + "alg": "SHA-512", + "content": "83ada7dca6fd72ccde66f9af054a8ffddb04243ffef34a4303cbbc2aa1e700fad59d0d897bdad557aa29c6486e5827759029f680e89bcc32b10ad06f0f7ab990" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright © 2011-2015 Paul Vorbach \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the “Software”), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pvorb/node-clone#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pvorb/node-clone/issues" + }, + { + "type": "vcs", + "url": "git://github.com/pvorb/node-clone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/output@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "output", + "version": "3.6.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/output@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/version@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "version", + "version": "3.10.1", + "description": "Bump version of packages changed since the last release", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/version@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/check-working-tree@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "check-working-tree", + "version": "3.10.0", + "description": "Check git working tree status and error appropriately", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/check-working-tree@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/check-working-tree#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/conventional-commits@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "conventional-commits", + "version": "3.10.0", + "description": "Lerna's internal interface to conventional-changelog and friends", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/conventional-commits@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-angular@5.0.2", + "author": "Steve Mao", + "name": "conventional-changelog-angular", + "version": "5.0.2", + "description": "conventional-changelog angular preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2e427152a82c51c3207163af29613b05906d2d6887629c72cd1005f98afb70f1b0919c8827a6f7079a547fca3532648acd3d80285e56355a210a5a0484e0136" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "### ISC License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE. \n" + } + } + } + ], + "purl": "pkg:npm/conventional-changelog-angular@5.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/compare-func@1.3.2", + "author": "Steve Mao", + "name": "compare-func", + "version": "1.3.2", + "description": "Get a compare function for array to sort", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2adac5adaea28f9045c00bcb44240d7e06a007f466c590606d50eaab517e7b5527f0a7cc7292d72d93eb8ba11cb979c713771cc3715233b65603a4ab3726fd5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/compare-func@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/compare-func" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/compare-func/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/compare-func.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-core@3.1.5", + "name": "conventional-changelog-core", + "version": "3.1.5", + "description": "conventional-changelog core", + "hashes": [ + { + "alg": "SHA-512", + "content": "faa9cc9ccc2c896adcc42a25af3a7d767dea20211c0a38c6b65d37702e07cb3ff1ac06d286d139d419d6ee67ac330b5a83bb14f9d7c881063130687e8ae568cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-changelog-core@3.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-core#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-writer@4.0.2", + "author": "Steve Mao", + "name": "conventional-changelog-writer", + "version": "4.0.2", + "description": "Write logs based on conventional commits and templates", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f97567124effd5915ef7e8c9053dacf06e105f96da78882b3860f77fd5d71774264886267ea10880799d6e1b124e062c0712f8ccecb54ffc917b8afe0ecc48b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-changelog-writer@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-writer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-commits-filter@2.0.1", + "author": "Steve Mao", + "name": "conventional-commits-filter", + "version": "2.0.1", + "description": "Filter out reverted commits parsed by conventional-commits-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "29c0e0b4244a242421ca4e952d3ef347e64ec829deadf7a613f0ac477890a7345115b2c4b3463aaf09379a90efb4e874e17db6df3fb5c72279f364ad7dcb7fd1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Steve Mao (https://github.com/stevemao)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-commits-filter@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-filter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dateformat@3.0.3", + "author": "Steven Levithan", + "name": "dateformat", + "version": "3.0.3", + "description": "A node.js package for Steven Levithan's excellent dateFormat() function.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c1517c00266c7748b6cf9e2a347d91826817456208c557f72a8bbb903b4bfbfe9ddd3beca80221338c8a2ae6c8206266928b0d76c13a4626eadbbbad7fd32a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(c) 2007-2009 Steven Levithan \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dateformat@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-dateformat" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-dateformat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/felixge/node-dateformat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/handlebars@4.0.12", + "author": "Yehuda Katz", + "name": "handlebars", + "version": "4.0.12", + "description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration", + "hashes": [ + { + "alg": "SHA-512", + "content": "6807179b93807c4ffc21791c66f09ea4a5375735b5ff7f456f966ea8cb6023f853f17d9882832f058e5d2e1abf7293afc3b2e4d672bf505ef568b1bf66755844" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2017 by Yehuda Katz\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/handlebars@4.0.12", + "externalReferences": [ + { + "type": "website", + "url": "http://www.handlebarsjs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wycats/handlebars.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wycats/handlebars.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async@2.6.1", + "author": "Caolan McMahon", + "name": "async", + "version": "2.6.1", + "description": "Higher-order functions and common patterns for asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d2560a1b938aefeb547d3d4483b58b7b98f541da8971351e51589700b07ebbebf79fd756d4670beeefe44662b61ab957433dc3b9d7dbfaf304615d0b71b15f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2018 Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async@2.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://caolan.github.io/async/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/caolan/async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/caolan/async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-commits-parser@3.0.1", + "author": "Steve Mao", + "name": "conventional-commits-parser", + "version": "3.0.1", + "description": "Parse raw conventional commits", + "hashes": [ + { + "alg": "SHA-512", + "content": "e38c4a16666fdcc937ab7eca03b6e17d877786f65413b364176a3450abbe7a990961fc6f8ac45a8e010fc15dabaedcc580c5606e7aa9bd1acbc29ff991599f41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-commits-parser@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-commits-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/trim-off-newlines@1.0.1", + "author": "Steve Mao", + "name": "trim-off-newlines", + "version": "1.0.1", + "description": "Similar to String#trim() but removes only newlines", + "hashes": [ + { + "alg": "SHA-512", + "content": "921e93bba19b79234c19faeb661e816ffe19107575425078c4d0c17a883c63dfd0c0594a4d1c96bd8dc5b3db510c0319962554c2278c80474878bfc5b6a8e426" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Steve Mao (github.com/stevemao)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/trim-off-newlines@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/trim-off-newlines#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/trim-off-newlines/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/trim-off-newlines.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/git-raw-commits@2.0.0", + "author": "Steve Mao", + "name": "git-raw-commits", + "version": "2.0.0", + "description": "Get raw git commits out of your repository using git-log(1)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2fb0adbab50f2f10a9ccb214c36ad488412303773f02c4822a2acbcfa9bb55db712d9b0e9535a1408adbbccf067456b3a77bb173b703f244bc4aeff0c851342" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/git-raw-commits@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/git-raw-commits#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/git-semver-tags@2.0.2", + "author": "Steve Mao", + "name": "git-semver-tags", + "version": "2.0.2", + "description": "Get all git semver tags of your repository in reverse chronological order", + "hashes": [ + { + "alg": "SHA-512", + "content": "da31e5267967e03fc40a4f45c46101877938e308187568d60ed32624f69e723a119b12a8dd8d4b87c18c62e38fbb4e021f0f3a35300e0dc8588c2e699e93108a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/git-semver-tags@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/git-semver-tags#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-recommended-bump@4.0.4", + "author": "Steve Mao", + "name": "conventional-recommended-bump", + "version": "4.0.4", + "description": "Get a recommended version bump based on conventional commits", + "hashes": [ + { + "alg": "SHA-512", + "content": "a098c6e8391182d9ebfedfd5acf77399fe1766ff1ce3129526b553e33ad21ddf762842fe118c526d8a0aabc950ed4e722ccc3bd77d30adc4132d18ccfd3f9de3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-recommended-bump@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-recommended-bump#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/conventional-changelog-preset-loader@2.0.2", + "name": "conventional-changelog-preset-loader", + "version": "2.0.2", + "description": "Configuration preset loader for `conventional-changelog`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32492c3381b861dacc953d8c6d3b15d85e8b5eefe1651d1373fc9e9d1ac320a470065fd23fb111e190e5825a89b02ccb262e14a2705ce760649b9873ace54273" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "### MIT License\n\nCopyright © [conventional-changelog team](https://github.com/conventional-changelog)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/conventional-changelog-preset-loader@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-preset-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/conventional-changelog/conventional-changelog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/conventional-changelog/conventional-changelog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/prompt@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "prompt", + "version": "3.6.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/prompt@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inquirer@6.2.1", + "author": "Simon Boudrias", + "name": "inquirer", + "version": "6.2.1", + "description": "A collection of common interactive command line user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ec6d9f29381302af1561eb518b1612b11547e8a02ad2dd721bbea3467544bed553f8d53056d88abd9ba7a6c08fc79f14dc56a875f4748b2ce9f250fbffaa79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/inquirer@6.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/Inquirer.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/Inquirer.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/Inquirer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-escapes@3.1.0", + "author": "Sindre Sorhus", + "name": "ansi-escapes", + "version": "3.1.0", + "description": "ANSI escape codes for manipulating the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "701869adee266be5344f5a0ce5f5e0ec3cb5270ef3cf0bfb96dfc6a02a6bfa10d02686272953cb2f8742bd210532642eace42f4abc13ed22ff0c0961048f7b45" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-escapes@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ansi-escapes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ansi-escapes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ansi-escapes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rxjs@6.3.3", + "author": "Ben Lesh", + "name": "rxjs", + "version": "6.3.3", + "description": "Reactive Extensions for modern JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "c71da2b672f9b016ea79e89580d3d5b904359c2f09a7659f349857587984956f589aba52f5456737384fdc41f71c5a9ec4ee53969f0685863e58472a71532f1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n" + } + } + } + ], + "purl": "pkg:npm/rxjs@6.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ReactiveX/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ReactiveX/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactivex/rxjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@5.0.0", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "5.0.0", + "description": "Strip ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-ansi@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@4.0.0", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "4.0.0", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-pipe@1.2.0", + "author": "Sindre Sorhus", + "name": "p-pipe", + "version": "1.2.0", + "description": "Compose promise-returning & async functions into a reusable pipeline", + "hashes": [ + { + "alg": "SHA-512", + "content": "200f12aa320603c97da8e92c5c9becbe4790f9519bd13033342cef2afcfdc2de7058ba9f59b57a7d7cb8de0a51d8be137bcb0eab74be425f5b88068c28f75bb7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-pipe@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-pipe#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-pipe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-pipe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/temp-write@3.4.0", + "author": "Sindre Sorhus", + "name": "temp-write", + "version": "3.4.0", + "description": "Write string/buffer/stream to a random temp file", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fc34ae5a36a7064010b7ee2ffca4bfcaf6d160c75e02176bddc25b83fc103f7465860f84f8139f5313b740c4fc9bdb0bacb6cd8584ca77e848a8a4106c189d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/temp-write@3.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/temp-write#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/temp-write/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/temp-write.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/temp-dir@1.0.0", + "author": "Sindre Sorhus", + "name": "temp-dir", + "version": "1.0.0", + "description": "Get the real path of the system temp directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "c591571066c6ed2342de2b700732374588eafdc121064c76849b8a18850e70450b9a4404c578876addb3fea908498b2e47e20aba68447ca29b579a979a120215" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/temp-dir@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/temp-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/temp-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/temp-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/clean@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "clean", + "version": "3.10.1", + "description": "Remove the node_modules directory from all packages", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/clean@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/cli@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "cli", + "version": "3.10.0", + "description": "Lerna's CLI", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/cli@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/global-options@3.1.3", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "global-options", + "version": "3.1.3", + "description": "Global options applicable to _every_ lerna sub-command", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-2017 Sebastian McKenzie \n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/global-options@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/create@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "create", + "version": "3.10.0", + "description": "Create a new lerna-managed package", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/create@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/init-package-json@1.10.3", + "author": "Isaac Z. Schlueter", + "name": "init-package-json", + "version": "1.10.3", + "description": "A node module to get your node module started", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/init-package-json@1.10.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/init-package-json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/init-package-json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/init-package-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/promzard@0.3.0", + "author": "Isaac Z. Schlueter", + "name": "promzard", + "version": "0.3.0", + "description": "prompting wizardly", + "hashes": [ + { + "alg": "SHA-512", + "content": "259798a9ded401c1c2c08fac4ce7940d892f114fb56d0ee2134513d4c801fed1119003e47ac5b8e8cae92324b33838bea304e366d885f00cb98fd9bad0a98c07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/promzard@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/promzard#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/promzard/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/promzard.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read@1.0.7", + "author": "Isaac Z. Schlueter", + "name": "read", + "version": "1.0.7", + "description": "read(1) for node programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad238a3585266b1cb4a26d4136330de1eccd4fa54a2bedb117818185cf359a41fb2fad22e9da7ca8f62b92774d2d3dd03e9868208de668bf4f542f579a11f055" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/read#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/read/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/read.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/whatwg-url@7.0.0", + "author": "Sebastian Mayr", + "name": "whatwg-url", + "version": "7.0.0", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "hashes": [ + { + "alg": "SHA-512", + "content": "44a4fc1c4c4ca68631e2280c895318f3794de947884ca265050faf47ff1927c38275288ddd1c02abef601f4f97ce3d3ee48accea2e23ffa2eebf36d921080471" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015–2016 Sebastian Mayr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/whatwg-url@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jsdom/whatwg-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jsdom/whatwg-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jsdom/whatwg-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.sortby@4.7.0", + "author": "John-David Dalton", + "name": "lodash.sortby", + "version": "4.7.0", + "description": "The lodash method `_.sortBy` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c35971bc8ac327b40c91179bd9ef12ae12f3a14f8021951b7fddccd34a3bc65318d8081551418e3c5620c7c9f633f552280645b84cc19035aa71fa5dd153074" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.sortby@4.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tr46@1.0.1", + "author": "Sebastian Mayr", + "name": "tr46", + "version": "1.0.1", + "description": "An implementation of the Unicode TR46 spec", + "hashes": [ + { + "alg": "SHA-512", + "content": "97b16f7c01e5726ba5a7c92bf9f969419995c2dbbb9df455ecd66e8ed3743aa112f042f83b87b4aaaccbd030b9800bf1fd90bff6593aae1714c18be406706760" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Sebastian Mayr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tr46@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Sebmaster/tr46.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Sebmaster/tr46.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Sebmaster/tr46.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@4.0.2", + "author": "Domenic Denicola", + "name": "webidl-conversions", + "version": "4.0.2", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "hashes": [ + { + "alg": "SHA-512", + "content": "57075d06e903ceeef5a1f7c0411f7be6e9c1206a9f299a4cfbc657eb24a4f27621568a39098699cb3b77601bd8b51b4ef9aa0696ac4f83f07cecd19567f7eeea" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "contentType": "text/markdown", + "content": "# The BSD 2-Clause License\n\nCopyright (c) 2014, Domenic Denicola\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/webidl-conversions@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jsdom/webidl-conversions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jsdom/webidl-conversions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jsdom/webidl-conversions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/diff@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "diff", + "version": "3.10.0", + "description": "Diff all packages or a single package since the last release", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/diff@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/exec@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "exec", + "version": "3.10.1", + "description": "Run an arbitrary command in each package", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/exec@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/import@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "import", + "version": "3.10.0", + "description": "Import a package into the monorepo with commit history", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/import@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/init@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "init", + "version": "3.10.0", + "description": "Create a new Lerna repo or upgrade an existing repo to the current version of Lerna", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/init@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/link@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "link", + "version": "3.10.0", + "description": "Symlink together all packages that are dependencies of each other", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/link@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/list@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "list", + "version": "3.10.1", + "description": "List local packages", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/list@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/publish@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "publish", + "version": "3.10.1", + "description": "Publish packages in the current project", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/publish@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/log-packed@3.6.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "log-packed", + "version": "3.6.0", + "description": "Log the result of npm pack --json", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/log-packed@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/log-packed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/byte-size@4.0.4", + "author": "Lloyd Brookes", + "name": "byte-size", + "version": "4.0.4", + "description": "Convert a bytes (and octets) value to a more human-readable format. Choose between metric or IEC units.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-18 Lloyd Brookes <75pound@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/byte-size@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/75lb/byte-size#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/75lb/byte-size/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/75lb/byte-size.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/npm-dist-tag@3.8.5", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "npm-dist-tag", + "version": "3.8.5", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/npm-dist-tag@3.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/npm-publish@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "npm-publish", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/npm-publish@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/pack-directory@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "pack-directory", + "version": "3.10.0", + "description": "Pack a directory into an npm package tarball", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/pack-directory@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/pack-directory#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/get-packed@3.7.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "get-packed", + "version": "3.7.0", + "description": "Read contents of package tarball created by npm pack", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/get-packed@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna/tree/master/utils/get-packed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/run@3.10.1", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "run", + "version": "3.10.1", + "description": "Run an npm script in each package that contains that script", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/run@3.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/npm-run-script@3.10.0", + "author": "Daniel Stockman", + "group": "@lerna", + "name": "npm-run-script", + "version": "3.10.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/npm-run-script@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40lerna/timer@3.5.0", + "author": "Kevin Verdieck", + "group": "@lerna", + "name": "timer", + "version": "3.5.0", + "description": "An internal Lerna tool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-present Lerna Contributors\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40lerna/timer@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lerna/lerna" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lerna/lerna/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lerna/lerna.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-local@1.0.0", + "author": "Sindre Sorhus", + "name": "import-local", + "version": "1.0.0", + "description": "Let a globally installed package use a locally installed version of itself if available", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc06991e278af6a8c6a39f1a811060f9b8475f78684d953f39adc611258bcfbb7553ad9f93adda1ee0c9244b5e5e80de4c270f9944fecf7f209073d99249a999" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-local@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-local#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-local/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-local.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/localforage@1.7.3", + "author": "Mozilla", + "name": "localforage", + "version": "1.7.3", + "description": "Offline storage, improved.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d78fc7d5a5fb8730419a687bb063ddf8038c92422b1ccdd9d4f0321a0662800d47d69e4ee403673325b3be90044ed1baf3f742e290b49dccb7f8f3c6cd76473e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright 2014 Mozilla\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/localforage@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/localForage/localForage" + }, + { + "type": "issue-tracker", + "url": "http://github.com/localForage/localForage/issues" + }, + { + "type": "vcs", + "url": "git://github.com/localForage/localForage.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lie@3.1.1", + "name": "lie", + "version": "3.1.1", + "description": "A basic but performant promise implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "51a88c27379646512e8f302ec392e8918d4be5e70d41864a7e6c99f4bef00c76ffa797ad29ac5786884172bc341186f2f86fcd039daf452378377f5dc47008c1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "#Copyright (c) 2014 Calvin Metcalf \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n**THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.**" + } + } + } + ], + "purl": "pkg:npm/lie@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/lie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/lie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/calvinmetcalf/lie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/immediate@3.0.6", + "name": "immediate", + "version": "3.0.6", + "description": "A cross browser microtask library", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d7385b72a838cd0c043155f631b85ee0f4897f21b5a69a5420d8c60a387f04c484f5aa0eb1738cf24b71da10401382cd5bb5fcf1ab5e5c894898ee08d25d119" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2012 Barnesandnoble.com, llc, Donavon West, Domenic Denicola, Brian Cavalier\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/immediate@3.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/immediate#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/immediate/issues" + }, + { + "type": "vcs", + "url": "git://github.com/calvinmetcalf/immediate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lunr@2.3.5", + "author": "Oliver Nightingale", + "name": "lunr", + "version": "2.3.5", + "description": "Simple full-text search in your browser.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013 by Oliver Nightingale\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lunr@2.3.5", + "externalReferences": [ + { + "type": "website", + "url": "http://lunrjs.com" + }, + { + "type": "issue-tracker", + "url": "http://github.com/olivernn/lunr.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olivernn/lunr.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mapbox-gl@0.52.0", + "name": "mapbox-gl", + "version": "0.52.0", + "description": "A WebGL interactive maps library", + "licenses": [ + { + "license": { + "name": "SEE LICENSE IN LICENSE.txt", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Mapbox\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Mapbox GL JS nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------------------\n\nContains Hershey Simplex Font: http://paulbourke.net/dataformats/hershey/\n\n-------------------------------------------------------------------------------\n\nContains code from glfx.js\n\nCopyright (C) 2011 by Evan Wallace\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n--------------------------------------------------------------------------------\n\nContains a portion of d3-color https://github.com/d3/d3-color\n\nCopyright 2010-2016 Mike Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the author nor the names of contributors may be used to\n endorse or promote products derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/mapbox-gl@0.52.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/mapbox-gl-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/mapbox-gl-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/mapbox-gl-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/geojson-types@1.0.2", + "group": "@mapbox", + "name": "geojson-types", + "version": "1.0.2", + "description": "Flow type declarations for [GeoJSON](https://tools.ietf.org/html/rfc7946).", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Mapbox\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40mapbox/geojson-types@1.0.2" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/jsonlint-lines-primitives@2.0.2", + "author": "Zach Carter", + "group": "@mapbox", + "name": "jsonlint-lines-primitives", + "version": "2.0.2", + "description": "Validate JSON", + "purl": "pkg:npm/%40mapbox/jsonlint-lines-primitives@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/jsonlint#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/mapbox/jsonlint/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/jsonlint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/mapbox-gl-supported@1.4.0", + "group": "@mapbox", + "name": "mapbox-gl-supported", + "version": "1.4.0", + "description": "A library to determine if a browser supports Mapbox GL JS", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/txt", + "content": "\nBSD 3-Clause License\n\nCopyright (c) 2017, Mapbox\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40mapbox/mapbox-gl-supported@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/mapbox-gl-supported#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/mapbox-gl-supported/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/mapbox-gl-supported.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/point-geometry@0.1.0", + "author": "Tom MacWright", + "group": "@mapbox", + "name": "point-geometry", + "version": "0.1.0", + "description": "a point geometry with transforms", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Mapbox <>\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40mapbox/point-geometry@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/point-geometry" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/point-geometry/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mapbox/point-geometry.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/tiny-sdf@1.1.0", + "author": "Vladimir Agafonkin", + "group": "@mapbox", + "name": "tiny-sdf", + "version": "1.1.0", + "description": "Browser-side SDF font generator", + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/%40mapbox/tiny-sdf@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/tiny-sdf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/tiny-sdf/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/tiny-sdf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/unitbezier@0.0.0", + "group": "@mapbox", + "name": "unitbezier", + "version": "0.0.0", + "description": "unit bezier curve interpolation", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/%40mapbox/unitbezier@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/unitbezier" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/unitbezier/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mapbox/unitbezier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/vector-tile@1.3.1", + "group": "@mapbox", + "name": "vector-tile", + "version": "1.3.1", + "description": "Parses vector tiles", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2014, Mapbox\n\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Mapbox nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40mapbox/vector-tile@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/vector-tile-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/vector-tile-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/vector-tile-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/whoots-js@3.1.0", + "author": "Bryan Housel", + "group": "@mapbox", + "name": "whoots-js", + "version": "3.1.0", + "description": "Request tiles from WMS servers that support EPSG:3857", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "ISC License\n\nCopyright (c) 2017, Mapbox\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40mapbox/whoots-js@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/whoots-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/whoots-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/whoots-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/csscolorparser@1.0.3", + "author": "Dean McNamee", + "name": "csscolorparser", + "version": "1.0.3", + "description": "https://github.com/deanm/css-color-parser-js", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/csscolorparser@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/deanm/css-color-parser-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/deanm/css-color-parser-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/deanm/css-color-parser-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/earcut@2.1.4", + "author": "Vladimir Agafonkin", + "name": "earcut", + "version": "2.1.4", + "description": "The fastest and smallest JavaScript polygon triangulation library for your WebGL apps", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2016, Mapbox\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/earcut@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/earcut#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/earcut/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/earcut.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esm@3.0.84", + "author": "John-David Dalton", + "name": "esm", + "version": "3.0.84", + "description": "Tomorrow's ECMAScript modules today!", + "hashes": [ + { + "alg": "SHA-512", + "content": "535b2e899da80d55afe333cee7a4b435c47942b8846a11ad74dd8e47a162386e1626f723055141d2a238f9e2a85851f8f373ca1ae2eebba57c6784f983add454" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright esm contributors\n\nBased on reify, copyright Ben Newman \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/esm@3.0.84", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/standard-things/esm#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/standard-things/esm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/standard-things/esm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/geojson-rewind@0.3.1", + "author": "Tom MacWright", + "name": "geojson-rewind", + "version": "0.3.1", + "description": "enforce winding order for geojson", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) {{ year }}, {{ organization }}\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/geojson-rewind@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/geojson-rewind" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/geojson-rewind/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/geojson-rewind.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40mapbox/geojson-area@0.2.2", + "author": "Tom MacWright", + "group": "@mapbox", + "name": "geojson-area", + "version": "0.2.2", + "description": "calculate the physical area of a geojson geometry", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright 2005-2013 OpenLayers Contributors. All rights reserved. See\nauthors.txt for full list.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n 1. Redistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer.\n\n 2. Redistributions in binary form must reproduce the above copyright notice,\nthis list of conditions and the following disclaimer in the documentation and/or\nother materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY OPENLAYERS CONTRIBUTORS ``AS IS'' AND ANY EXPRESS\nOR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT\nSHALL COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,\nINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nThe views and conclusions contained in the software and documentation are those\nof the authors and should not be interpreted as representing official policies,\neither expressed or implied, of OpenLayers Contributors.\n" + } + } + } + ], + "purl": "pkg:npm/%40mapbox/geojson-area@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/geojson-area#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/geojson-area/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mapbox/geojson-area.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wgs84@0.0.0", + "author": "Tom MacWright", + "name": "wgs84", + "version": "0.0.0", + "description": "constants from the standard reference ellipsoid", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/wgs84@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/wgs84" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/wgs84/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mapbox/wgs84.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sharkdown@0.1.0", + "author": "Tom MacWright", + "name": "sharkdown", + "version": "0.1.0", + "description": "markdown in your shell", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/sharkdown@0.1.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/cardinal@0.4.4", + "author": "Thorsten Lorenz", + "name": "cardinal", + "version": "0.4.4", + "description": "Syntax highlights JavaScript code with ANSI colors to be printed to the terminal.", + "hashes": [ + { + "alg": "SHA-512", + "content": "20db2e1781b28852e4f02f7514fa246ca4dcfebc07a95e099df6ad559e863e182e3f5aa6911597d9da79b5ea586e861d3e91968ac2d52c8f8ab17a1714f45232" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cardinal@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/cardinal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/cardinal/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/cardinal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansicolors@0.2.1", + "author": "Thorsten Lorenz", + "name": "ansicolors", + "version": "0.2.1", + "description": "Functions that surround a string with ansicolor codes so it prints in color.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4e22ecb5fd22bf76bf78640d1c903a2129735e04da99e2eb3a3e33152ece61d70d86041eae3ed3a49e9dbe545e05ff3732f4b23bd16f99fa91364a86a3932d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansicolors@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/ansicolors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/ansicolors/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/ansicolors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redeyed@0.4.4", + "author": "Thorsten Lorenz", + "name": "redeyed", + "version": "0.4.4", + "description": "Takes JavaScript code, along with a config and returns the original code with tokens wrapped as configured.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1e116b0d0a4576aefc0a2d2d42be9e5a80d8cc87045edae9becb7d81dbedcba8ece0e02f4104fb3abf301f575e88bdbf01f473cd288a9df0eadd070b3c90d95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redeyed@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/redeyed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/redeyed/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/redeyed.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima@1.0.4", + "name": "esprima", + "version": "1.0.4", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "purl": "pkg:npm/esprima@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "http://esprima.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ariya/esprima/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/ariya/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expect.js@0.2.0", + "name": "expect.js", + "version": "0.2.0", + "description": "BDD style assertions for node and the browser.", + "purl": "pkg:npm/expect.js@0.2.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist@0.0.5", + "author": "James Halliday", + "name": "minimist", + "version": "0.0.5", + "description": "parse argument options", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c8e79386f0dd826a6336ddc8188db0f5873df3bef94186ef8f42c6cea9782bb95e0e27ade9dae8e571398c6b413ab0c34266c2df9179ff2b820ba69132f3f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/minimist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/minimist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/minimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split@0.2.10", + "author": "Dominic Tarr", + "name": "split", + "version": "0.2.10", + "description": "split a Text Stream into a Line Stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "993c8ea0f6eb8afb579f09c8c59445611acf36d1052a5a41d9fbe34a7090522000eaa019ceac276b97a7bcae2e93a38878fd7b0ac745deb481198541b14d1392" + } + ], + "purl": "pkg:npm/split@0.2.10", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/split" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/split/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/split.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-spigot@2.1.2", + "author": "Bryce B. Baril", + "name": "stream-spigot", + "version": "2.1.2", + "description": "A readable stream generator, useful for testing or converting simple functions into Readable streams.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) Bryce B. Baril \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-spigot@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/brycebaril/node-stream-spigot#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/brycebaril/node-stream-spigot/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/brycebaril/node-stream-spigot.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/geojson-vt@3.2.1", + "author": "Vladimir Agafonkin", + "name": "geojson-vt", + "version": "3.2.1", + "description": "Slice GeoJSON data into vector tiles efficiently", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2015, Mapbox\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/geojson-vt@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/geojson-vt" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/geojson-vt/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/geojson-vt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gl-matrix@2.8.1", + "name": "gl-matrix", + "version": "2.8.1", + "description": "Javascript Matrix and Vector library for High Performance WebGL apps", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2015-2018, Brandon Jones, Colin MacKenzie IV.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/gl-matrix@2.8.1", + "externalReferences": [ + { + "type": "website", + "url": "http://glmatrix.net" + }, + { + "type": "issue-tracker", + "url": "https://github.com/toji/gl-matrix/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/toji/gl-matrix.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/grid-index@1.0.0", + "name": "grid-index", + "version": "1.0.0", + "description": "A 2D spatial index for axis-aligned boxes", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2016, Mapbox\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/grid-index@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/grid-index#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/grid-index/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/grid-index.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/murmurhash-js@1.0.0", + "author": "Gary Court", + "name": "murmurhash-js", + "version": "1.0.0", + "description": "Native JS murmur hash implementation", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/murmurhash-js@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikolalysenko/murmurhash-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikolalysenko/murmurhash-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mikolalysenko/murmurhash-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pbf@3.1.0", + "author": "Konstantin Kaefer", + "name": "pbf", + "version": "3.1.0", + "description": "a low-level, lightweight protocol buffers implementation in JavaScript", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2017, Mapbox\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of pbf nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/pbf@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/pbf" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/pbf/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mapbox/pbf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ieee754@1.1.12", + "author": "Feross Aboukhadijeh", + "name": "ieee754", + "version": "1.1.12", + "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object", + "hashes": [ + { + "alg": "SHA-512", + "content": "75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2008, Fair Oaks Labs, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/ieee754@1.1.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/ieee754#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/ieee754/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/ieee754.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-protobuf-schema@2.1.0", + "author": "Mathias Buus", + "name": "resolve-protobuf-schema", + "version": "2.1.0", + "description": "Read a protobuf schema from the disk, parse it and resolve all imports", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-protobuf-schema@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/resolve-protobuf-schema" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/resolve-protobuf-schema/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/resolve-protobuf-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/protocol-buffers-schema@3.3.2", + "author": "Mathias Buus", + "name": "protocol-buffers-schema", + "version": "3.3.2", + "description": "No nonsense protocol buffers schema parser written in Javascript", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/protocol-buffers-schema@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/protocol-buffers-schema" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/protocol-buffers-schema/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/protocol-buffers-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/potpack@1.0.1", + "author": "Vladimir Agafonkin", + "name": "potpack", + "version": "1.0.1", + "description": "A tiny library for packing 2D rectangles (for sprite layouts)", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2018, Mapbox\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/potpack@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://mapbox.github.io/potpack/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/potpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/potpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/quickselect@1.1.1", + "author": "Vladimir Agafonkin", + "name": "quickselect", + "version": "1.1.1", + "description": "A tiny and fast selection algorithm in JavaScript.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2018, Vladimir Agafonkin\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/quickselect@1.1.1" + }, + { + "type": "library", + "bom-ref": "pkg:npm/rw@1.3.3", + "author": "Mike Bostock", + "name": "rw", + "version": "1.3.3", + "description": "Now stdin and stdout are files.", + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014-2016, Michael Bostock\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* The name Michael Bostock may not be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT,\nINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,\nBUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\nOF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/rw@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mbostock/rw" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mbostock/rw/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mbostock/rw.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supercluster@5.0.0", + "author": "Vladimir Agafonkin", + "name": "supercluster", + "version": "5.0.0", + "description": "A very fast geospatial point clustering library.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2016, Mapbox\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supercluster@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/supercluster#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/supercluster/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/supercluster.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kdbush@3.0.0", + "author": "Vladimir Agafonkin", + "name": "kdbush", + "version": "3.0.0", + "description": "A very fast static 2D index for points based on kd-tree.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2018, Vladimir Agafonkin\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kdbush@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mourner/kdbush#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mourner/kdbush/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mourner/kdbush.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tinyqueue@1.2.3", + "name": "tinyqueue", + "version": "1.2.3", + "description": "The smallest and simplest JavaScript priority queue", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2017, Vladimir Agafonkin\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tinyqueue@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mourner/tinyqueue" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mourner/tinyqueue/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mourner/tinyqueue.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vt-pbf@3.1.1", + "author": "Anand Thakker", + "name": "vt-pbf", + "version": "3.1.1", + "description": "Serialize mapbox vector tiles to binary protobufs in javascript.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Anand Thakker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n--------------------------------------------------------------------------------\n\nContains geojson_wrapper.js from https://github.com/mapbox/mapbox-gl-js\n\nCopyright (c) 2014, Mapbox\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Mapbox GL JS nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n" + } + } + } + ], + "purl": "pkg:npm/vt-pbf@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/vt-pbf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/vt-pbf/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mapbox/vt-pbf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/markdown-it@8.4.2", + "name": "markdown-it", + "version": "8.4.2", + "description": "Markdown-it - modern pluggable markdown parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4dc84c7a66dfc5f355a4791bb6b89696d19673e9b7c6ccda443d0266ea7b185161cc8810ab121f9f77868f5c99a5fb9f9733ef7e4b7ad7507643f06c9356271a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Vitaly Puzrin, Alex Kocharin.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/markdown-it@8.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/markdown-it/markdown-it#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/markdown-it/markdown-it/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/markdown-it/markdown-it.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/linkify-it@2.1.0", + "name": "linkify-it", + "version": "2.1.0", + "description": "Links recognition library with FULL unicode support", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca74eccab152744e6867f3bd1847f4d243e782639f5706b347918a0eae8461f865a45ba0dc9db3c9b5f9e9ad8f451a5cf4ff85b92a06340c2395b0ecf632413d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Vitaly Puzrin.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/linkify-it@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/markdown-it/linkify-it#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/markdown-it/linkify-it/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/markdown-it/linkify-it.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uc.micro@1.0.5", + "name": "uc.micro", + "version": "1.0.5", + "description": "Micro subset of unicode data files for markdown-it projects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f18ef9a6f4d890b256da15901d7c68a91815eea6fd07ef6f144b6274c2feee4a075056a99d524067a70ab3e423cf9030dda6561cc0babb4c0913702dfa7486c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright Mathias Bynens \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uc.micro@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/markdown-it/uc.micro#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/markdown-it/uc.micro/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/markdown-it/uc.micro.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mdurl@1.0.1", + "name": "mdurl", + "version": "1.0.1", + "description": "URL utilities for markdown-it", + "hashes": [ + { + "alg": "SHA-512", + "content": "fec2a540908161563d12bb3d86accaa2ee07e95e5459cfcce7d4c7d9dbe4b7ef388ad7e7abbb8538c2e93a2392e2e8ef1cfe1eb659f5f1f988c40e51e5f965d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n--------------------------------------------------------------------------------\n\n.parse() is based on Joyent's node.js `url` code:\n\nCopyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mdurl@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/markdown-it/mdurl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/markdown-it/mdurl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/markdown-it/mdurl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/marked@0.5.2", + "author": "Christopher Jeffrey", + "name": "marked", + "version": "0.5.2", + "description": "A markdown parser built for speed", + "hashes": [ + { + "alg": "SHA-512", + "content": "79ad9e1963aa3713dc5eff1dc8445d4abffa166cef5b0ce3331a5f181fec6cc71c5e872dfb163e62e90f0fe413519c32bcaec167072be26db5581396e35a4092" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# License information\n\n## Contribution License Agreement\n\nIf you contribute code to this project, you are implicitly allowing your code\nto be distributed under the MIT license. You are also implicitly verifying that\nall code is your original work. ``\n\n## Marked\n\nCopyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n## Markdown\n\nCopyright © 2004, John Gruber \nhttp://daringfireball.net/ \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nThis software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.\n" + } + } + } + ], + "purl": "pkg:npm/marked@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://marked.js.org" + }, + { + "type": "issue-tracker", + "url": "http://github.com/markedjs/marked/issues" + }, + { + "type": "vcs", + "url": "git://github.com/markedjs/marked.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mini-css-extract-plugin-with-rtl@0.8.0", + "author": "Automattic", + "name": "mini-css-extract-plugin-with-rtl", + "version": "0.8.0", + "description": "extracts CSS into separate files", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mini-css-extract-plugin-with-rtl@0.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/automattic/mini-css-extract-plugin-with-rtl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/automattic/mini-css-extract-plugin-with-rtl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/automattic/mini-css-extract-plugin-with-rtl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-url@3.3.0", + "author": "Sindre Sorhus", + "name": "normalize-url", + "version": "3.3.0", + "description": "Normalize a URL", + "hashes": [ + { + "alg": "SHA-512", + "content": "038f0ccbf9ad0a4968c0706523c16ada31562b8b57e2527913acad16c48eab57f3a6f4f44904a02a14a0ee5379736b9814ead400e429eb3861267a69d5e325a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-url@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/normalize-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/normalize-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/normalize-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/morgan@1.9.1", + "name": "morgan", + "version": "1.9.1", + "description": "HTTP request logger middleware for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "01b7a0055238b21e8497ed60370bc3e5821c93b9d2037eb0783ef1bc8c46e229fcd23fd4a0af001066969e7cfcbf51b1a2730296d9a536ce5929b1af97d6f55d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2014-2017 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/morgan@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/expressjs/morgan#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/expressjs/morgan/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/expressjs/morgan.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/basic-auth@2.0.1", + "name": "basic-auth", + "version": "2.0.1", + "description": "node.js basic auth parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "345f9ea6e11d9d4615946ba16b16dbabe76f26db702e7198f988b195794c1392a94395b70a75c0e5c5539de63748f6cf0d191c8cc6e27ebc261587029603997a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 TJ Holowaychuk\nCopyright (c) 2014 Jonathan Ong \nCopyright (c) 2015-2016 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/basic-auth@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/basic-auth#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/basic-auth/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/basic-auth.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/on-headers@1.0.1", + "author": "Douglas Christopher Wilson", + "name": "on-headers", + "version": "1.0.1", + "description": "Execute a listener when a response is about to write headers", + "hashes": [ + { + "alg": "SHA-512", + "content": "a59004f8524ba32213cad76a2b4539b3e148a6337424fdcecc58bfbbc471f84579fd6f894d61971bcc45cdebc4ec08c17c3a87bfff2f2fca90b088479ea464ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/on-headers@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/on-headers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/on-headers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/on-headers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-sass@4.11.0", + "author": "Andrew Nesbitt", + "name": "node-sass", + "version": "4.11.0", + "description": "Wrapper around libsass", + "hashes": [ + { + "alg": "SHA-512", + "content": "b230ae3a5bc6c82252e3447c06c705e6f8559508cd374ebd36d435812c722b5bbd8aabe7ead7fb3b547818da305597e2654091b7932632cd7177ee15ffb62bd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013-2016 Andrew Nesbitt\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-sass@4.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sass/node-sass" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sass/node-sass/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sass/node-sass.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.mergewith@4.6.1", + "author": "John-David Dalton", + "name": "lodash.mergewith", + "version": "4.6.1", + "description": "The Lodash method `_.mergeWith` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "18ade0e513d959345278b4a980ff1786b6bea678c10b9eaaf456587b577944ddd3277e5d6e41b2dd8a8148c6f20ab95b8be08cf59dc9939c932fb442b2a6e8c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.mergewith@4.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-run-all@4.1.5", + "author": "Toru Nagashima", + "name": "npm-run-all", + "version": "4.1.5", + "description": "A CLI tool to run multiple npm-scripts in parallel or sequential.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a8f368090c055c68c762de7ba82856af9081c1455a90d6abcc6fef4b1e4fdc1783fa0769bc68fd388467fba0beb067d06e1b05f5a2794b869ba8a1f4b2a100d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Toru Nagashima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/npm-run-all@4.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mysticatea/npm-run-all" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mysticatea/npm-run-all/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mysticatea/npm-run-all.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/memorystream@0.3.1", + "author": "Dmitry Nizovtsev", + "name": "memorystream", + "version": "0.3.1", + "description": "This is lightweight memory stream module for node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b7530337ca3e66b544847cfe355199adff4482a15614714d6b917bfe050e4883c9dd2f8b0fa0934150911169f74f6f98e31c91ae320cad80abca21fe7c5cd07" + } + ], + "purl": "pkg:npm/memorystream@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JSBizon/node-memorystream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JSBizon/node-memorystream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JSBizon/node-memorystream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pidtree@0.3.0", + "author": "Simone Primarosa", + "name": "pidtree", + "version": "0.3.0", + "description": "Cross platform children list of a PID", + "hashes": [ + { + "alg": "SHA-512", + "content": "a906d6f7884b1c4a8283b9e16f2e32442ec6dbe8d81d8e1182e7366e3c3b52e83818826ebb5b6f7f6b87699bf943ccddb7e58a27aa8ad45388e9a99a594a3914" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Simone Primarosa\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pidtree@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/simonepri/pidtree#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/simonepri/pidtree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/simonepri/pidtree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shell-quote@1.6.1", + "author": "James Halliday", + "name": "shell-quote", + "version": "1.6.1", + "description": "quote and parse shell commands", + "hashes": [ + { + "alg": "SHA-512", + "content": "5697eac26e049ea19d96c0453661e1c61125258add7dcc4f4e1bbeaf2292e49f0bfdf840c0b6b3159b6af92f93599f40363da989240b1a3e8d420fa528f9b1af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 James Halliday (mail@substack.net)\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/shell-quote@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-shell-quote#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-shell-quote/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-shell-quote.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-filter@0.0.1", + "author": "Julian Gruber", + "name": "array-filter", + "version": "0.0.1", + "description": "Array#filter for older browsers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "556d05a422218d975aad68c8cfc569bdaed4f797e5d899fe6fe9a614530b9fc3c856c70e41c0201339f05334c4b941eea99a88c70cd195c68dfeead31454288b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/array-filter@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/array-filter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/array-filter/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/array-filter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-map@0.0.0", + "author": "James Halliday", + "name": "array-map", + "version": "0.0.0", + "description": "`[].map(f)` for older browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "d76dd732cccc074d50295a6da4343bc759b5a4fe4d989206d646e5d0948f3d17b3bf040287100dd06bf3a3baef475219dad38bdad9a2cbb918fca2a09e9555a6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-map@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/array-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/array-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/array-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-reduce@0.0.0", + "author": "James Halliday", + "name": "array-reduce", + "version": "0.0.0", + "description": "`[].reduce()` for old browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2347e4ada9a0badfabbb877c9ed5ca3795045e7e0555510521b809916c3a8831e476cae5f346f902350890e49ff06d1126a012cdb69d7776169a5696500d153" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-reduce@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/array-reduce" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/array-reduce/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/array-reduce.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string.prototype.padend@3.0.0", + "author": "Jordan Harband", + "name": "string.prototype.padend", + "version": "3.0.0", + "description": "ES7 spec-compliant String.prototype.padEnd shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8cd2087a89339e6f120ff4d921242c64a62eed127285e14db7ce0350fae1e3cd860bc455a7630aaa6d8ee68051746c5b0d0a17ae1856b4f21640e8b2db4b2f52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 EcmaScript Shims\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/string.prototype.padend@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/String.prototype.padEnd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/String.prototype.padEnd/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/String.prototype.padEnd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/objectpath@1.2.2", + "author": "Mike Marcacci", + "name": "objectpath", + "version": "1.2.2", + "description": "Parse js object paths using both dot and bracket notation. Stringify an array of properties into a valid path.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mike Marcacci\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/objectpath@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mike-marcacci/objectpath" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mike-marcacci/objectpath/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mike-marcacci/objectpath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/page@1.11.3", + "name": "page", + "version": "1.11.3", + "description": "Tiny client-side router", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/page@1.11.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/page.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/page.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/page.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-to-regexp@1.2.1", + "name": "path-to-regexp", + "version": "1.2.1", + "description": "Express style path to RegExp utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f8dc946195429402589b10984f7a2af59dc5080f5e909c48cda70ccd74edcb9b8cb0ac1a41679a0b0f423a6ebf5ebebd58f494eac11b4087b24ba0ecc041d54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-to-regexp@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/path-to-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/path-to-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/path-to-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-browserify@1.0.0", + "author": "James Halliday", + "name": "path-browserify", + "version": "1.0.0", + "description": "the path module from node core for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "580de9c62d6895441cb25f365b9efabe4aa15121a9d2e06daffdfcd69c71e565cba77342f8007df61506dda196ec7d0a83d3c5af50fcc2fd6225e2027bef4c87" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-browserify@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/path-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/path-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/path-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/percentage-regex@3.0.0", + "author": "Arthur Verschaeve", + "name": "percentage-regex", + "version": "3.0.0", + "description": "Regex to match a percentage value", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Arthur Verschaeve (arthurverschaeve.be)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/percentage-regex@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arthurvr/percentage-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/arthurvr/percentage-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/arthurvr/percentage-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/phone@2.4.0-pre", + "author": "AfterShip", + "name": "phone", + "version": "2.4.0-pre", + "description": "With a given country and phone number, validate and format the phone number to E.164 standard", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 AfterShip\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/phone@2.4.0-pre", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aftership/phone#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aftership/phone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aftership/phone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/photon@2.0.1", + "author": "Automattic, Inc.", + "name": "photon", + "version": "2.0.1", + "description": "JavaScript library for the WordPress.com Photon image manipulation service", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Automattic, Inc.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/photon@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/photon.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/photon.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/photon.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/crc32@0.2.2", + "author": "T. Jameson Little", + "name": "crc32", + "version": "0.2.2", + "description": "CRC-32 implemented in JavaScript", + "purl": "pkg:npm/crc32@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/beatgammit/crc32#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/beatgammit/crc32/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/beatgammit/crc32.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/seed-random@2.2.0", + "author": "ForbesLindesay", + "name": "seed-random", + "version": "2.2.0", + "description": "Generate random numbers with a seed, useful for reproducible tests", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "LICENSE for modifications of JavaScript Library by Forbes Lindesay (MIT):\r\n\r\nCopyright (c) 2013 Forbes Lindesay\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nLICENSE for original seedrandom javascript file (BSD):\r\n\r\nCopyright 2013 David Bau, all rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n 1. Redistributions of source code must retain the above copyright\r\n notice, this list of conditions and the following disclaimer.\r\n\r\n 2. Redistributions in binary form must reproduce the above copyright\r\n notice, this list of conditions and the following disclaimer in the\r\n documentation and/or other materials provided with the distribution.\r\n\r\n 3. Neither the name of this module nor the names of its contributors may\r\n be used to endorse or promote products derived from this software\r\n without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE" + } + } + } + ], + "purl": "pkg:npm/seed-random@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/seed-random#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/seed-random/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/seed-random.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-cli@6.0.1", + "name": "postcss-cli", + "version": "6.0.1", + "description": "CLI for PostCSS", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright (c) 2016 Michael Ciniawsky\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-cli@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-cli#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-cli/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-cli.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dependency-graph@0.7.2", + "author": "Jim Riecken", + "name": "dependency-graph", + "version": "0.7.2", + "description": "Simple dependency graph.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013-2015 by Jim Riecken\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/dependency-graph@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jriecken/dependency-graph#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/jriecken/dependency-graph/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jriecken/dependency-graph.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/get-stdin@6.0.0", + "author": "Sindre Sorhus", + "name": "get-stdin", + "version": "6.0.0", + "description": "Get stdin as a string or buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "179690332c302769fce6ce2124f4d3f513f11a6b9ba27b81d7430d628d7bff1a61d7be27d8c211df71d182e87355a835d0efe7a4ced23e4ef72cc64d3fe15a5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/get-stdin@6.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/get-stdin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/get-stdin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/get-stdin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-reporter@6.0.1", + "author": "David Clark", + "name": "postcss-reporter", + "version": "6.0.1", + "description": "Log PostCSS messages in the console", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac19036da1c0bb9bb2c1b091d9713c6b6e6d6adb37c523ac18dc7a9a9a4ae90f6448518a73f1720337dc8be7d633697e2b8d36a750f4a4d71f0c6c5e8dee482a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 David Clark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/postcss-reporter@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-reporter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-reporter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-reporter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pretty-hrtime@1.0.3", + "author": "Rob Richardson", + "name": "pretty-hrtime", + "version": "1.0.3", + "description": "process.hrtime() to words", + "hashes": [ + { + "alg": "SHA-512", + "content": "eba84a3c2afeef69a57e24a3944075fb8e488d74aabd5008cba9a872ea68c30e2d04513d47d221c30506a08e06fbe4dcf40abedabc4eb7444553a80f72bb5ed0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 [Richardson & Sons, LLC](http://richardsonandsons.com/)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/pretty-hrtime@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/robrich/pretty-hrtime" + }, + { + "type": "issue-tracker", + "url": "https://github.com/robrich/pretty-hrtime/issues" + }, + { + "type": "vcs", + "url": "git://github.com/robrich/pretty-hrtime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/read-cache@1.0.0", + "author": "Bogdan Chadkin", + "name": "read-cache", + "version": "1.0.0", + "description": "Reads and caches the entire contents of a file until it is modified", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b076ffc5b7b2233a09bf8b4c6f3436752eb4403517dec386f6a6b1773963102f12dfbb76d2f055610acad208c2b8951e7a63dc9af804e1a13a43093c429a944" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2016 Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/read-cache@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TrySound/read-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TrySound/read-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TrySound/read-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-custom-properties@8.0.9", + "author": "Jonathan Neal", + "name": "postcss-custom-properties", + "version": "8.0.9", + "description": "Use Custom Properties Queries in CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce88b09f8b0289415baf829c81c3592c5911ea0550a26eb8ecbfb3d69fca0551d9d4e6304fcedaa674b8d9ab49b71e97957db223b3797e35db162c528503b641" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright © PostCSS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-custom-properties@8.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-custom-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-custom-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-custom-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-values-parser@2.0.0", + "author": "Andrew Powell", + "name": "postcss-values-parser", + "version": "2.0.0", + "description": "A CSS property value parser for use with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "dccde9fb680ca74007ddd6b9df44e55fc9223b59f17539dcdc2eafafc74cc512c8961f14624cf4ff0730a6d4978e1b71d85af44f2488edaf811c343c34becb69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Andrew Powell \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-values-parser@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lesshint/postcss-values-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lesshint/postcss-values-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lesshint/postcss-values-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prismjs@1.15.0", + "author": "Lea Verou", + "name": "prismjs", + "version": "1.15.0", + "description": "Lightweight, robust, elegant syntax highlighting. A spin-off project from Dabblet.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1a697758be5d45ee20bb5e6d6ca6a49a63f389069616deff8a27e175ee2631bdd73cb1f8d6d7de0238ae705613195f8e6d1ad7a205081dbc3fe7871711c3297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT LICENSE\n\nCopyright (c) 2012 Lea Verou\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prismjs@1.15.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LeaVerou/prism#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LeaVerou/prism/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LeaVerou/prism.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qrcode.react@0.8.0", + "author": "Paul O’Shannessy", + "name": "qrcode.react", + "version": "0.8.0", + "description": "React component to generate QR codes", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2015, Paul O’Shannessy\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/qrcode.react@0.8.0", + "externalReferences": [ + { + "type": "website", + "url": "http://zpao.github.io/qrcode.react" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zpao/qrcode.react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zpao/qrcode.react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qr.js@0.0.0", + "author": "Roman Shtylman", + "name": "qr.js", + "version": "0.0.0", + "description": "qrcode encoding in javascript", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Roman Shtylman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/qr.js@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shtylman/qr.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shtylman/qr.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/shtylman/qr.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-day-picker@7.2.4", + "author": "Giampaolo Bellavite", + "name": "react-day-picker", + "version": "7.2.4", + "description": "Flexible date picker component for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "63c2f8fc0c52ec1b96a6326c1c5abc4251d0d57307a3529608fbcbb8a8ad890f074f459bcad29ef6046759c4ffb01f07fb6dfb88b3abeca485d5ec8d6f3b3ecf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Giampaolo Bellavite\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-day-picker@7.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://react-day-picker.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gpbl/react-day-picker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gpbl/react-day-picker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-lazily-render@1.1.0", + "name": "react-lazily-render", + "version": "1.1.0", + "description": "Lazily render react components", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/react-lazily-render@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jameslnewell/react-lazily-render#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jameslnewell/react-lazily-render/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jameslnewell/react-lazily-render.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/scrollparent@2.0.1", + "author": "Ola Holmström", + "name": "scrollparent", + "version": "2.0.1", + "description": "A function to get the scrolling parent of an html element.", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The MIT License\n\nCopyright (c) 2014 Ola Holmström \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/scrollparent@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olahol/scrollparent.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olahol/scrollparent.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/olahol/scrollparent.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-live@1.12.0", + "author": "Phil Plückthun", + "name": "react-live", + "version": "1.12.0", + "description": "A production-focused playground for live editing React code", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/react-live@1.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/philpl/react-live#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/philpl/react-live/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/philpl/react-live.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buble@0.19.6", + "author": "Rich Harris", + "name": "buble", + "version": "0.19.6", + "description": "The blazing fast, batteries-included ES2015 compiler", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a4df9d6771f344e26a3183668498075ee7103aa31a75717ae8395bbb6f5c800c9fad7231ae407d3b96bb71789cb2f616ffe12bc4fa1a4b59bd0eb2bcf64ca4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Rich Harris and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buble@0.19.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Rich-Harris/buble#README" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Rich-Harris/buble/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Rich-Harris/buble.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/magic-string@0.25.1", + "author": "Rich Harris", + "name": "magic-string", + "version": "0.25.1", + "description": "Modify strings, generate sourcemaps", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2b7a2a7dac9664cef03c43393d1c5b3c7d9185feeec7fe0b6b13c10de918ca27d921d87942fb243641ece27ea4d97c6ca2b80574751bf96becbff2005bd66f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/magic-string@0.25.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rich-harris/magic-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rich-harris/magic-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rich-harris/magic-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sourcemap-codec@1.4.4", + "author": "Rich Harris", + "name": "sourcemap-codec", + "version": "1.4.4", + "description": "Encode/decode sourcemap mappings", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4dca4a23579522878960a394a8e5db70f9fd098095f7d0a08d23c830873d89f40d79c03d0c97ab631cac1fe9f4d26ba7c075505d65e34eb3d789ef5a8293cbc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2015 Rich Harris\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sourcemap-codec@1.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Rich-Harris/sourcemap-codec" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Rich-Harris/sourcemap-codec/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Rich-Harris/sourcemap-codec.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vlq@1.0.0", + "author": "Rich Harris", + "name": "vlq", + "version": "1.0.0", + "description": "Generate, and decode, base64 VLQ mappings for source maps and other uses", + "hashes": [ + { + "alg": "SHA-512", + "content": "810a674e092e6c2ea142074871175818348373e49aba339dc9eb1940cbfa2657d079effd329d10867cace96c435af4272f9599753ee8d94975f3b692b7446afb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017 [these people](https://github.com/Rich-Harris/vlq/graphs/contributors)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vlq@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Rich-Harris/vlq#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Rich-Harris/vlq/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Rich-Harris/vlq.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-react-context@0.2.3", + "author": "James Kyle", + "name": "create-react-context", + "version": "0.2.3", + "description": "Polyfill for the proposed React context API", + "licenses": [ + { + "license": { + "name": "SEE LICENSE IN LICENSE", + "text": { + "content": "Copyright (c) Jamie Kyle\n\nThis license is granted to everyone except for the following entities and\nany of their subsidiaries:\n\n- \"Microsoft Corporation\" (for working with ICE)\n- \"Palantir Technologies\" (for working with ICE)\n- \"Amazon.com, Inc.\" (for abusive treatment of workers and for working with ICE)\n- \"Northeastern University\" (for working with ICE)\n- \"Ernst & Young\" (for working with ICE)\n- \"Thomson Reuters\" (for working with ICE)\n- \"Motorola Solutions\" (for working with ICE)\n- \"Deloitte Consulting LLP\" (for working with ICE)\n- \"John Hopkins University\" (for working with ICE)\n- \"Dell Inc\" (for working with ICE)\n- \"Xerox Corporation\" (for working with ICE)\n- \"Canon Inc\" (for working with ICE)\n- \"Vermont State Colleges\" (for working with ICE)\n- \"Charter Communications\"/\"Spectrum\"/\"Time Warner Cable\" (for working with ICE)\n- \"LinkedIn Corporation\" (for working with ICE)\n- \"United Parcel Service Co\" (for working with ICE)\n- \"Walmart Inc\" (for abusive treatment of workers)\n- \"Sears Holding Corporation\" (for abusive treatment of workers)\n- \"Apple Inc\" (for abusive treatment of workers)\n- \"Tyson Foods Inc\" (for abusive treatment of workers)\n- \"Target Corporation\" (for union busting and anti-union propaganda)\n- \"The H&M group\" (for abusive treatment of workers)\n- \"Tesla, Inc\" (for abusive treatment of workers)\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-react-context@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thejameskyle/create-react-context#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thejameskyle/create-react-context/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/thejameskyle/create-react-context.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gud@1.0.0", + "author": "Jamie Kyle", + "name": "gud", + "version": "1.0.0", + "description": "Create a 'gud nuff' (not cryptographically secure) globally unique id", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc610e54a14ce6c54f3eb62cec9e7f858130d8fa1ff0a0b23b0ca11bcb00176ea60807941407183eed66c01ee186920fdbdcce201683ab0b8774ba748ef6578f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/gud@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamiebuilds/global-unique-id#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamiebuilds/global-unique-id/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamiebuilds/global-unique-id.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-iterator@1.0.0", + "author": "Matthew Mueller", + "name": "dom-iterator", + "version": "1.0.0", + "description": "iterator for mini-html-parser", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/dom-iterator@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MatthewMueller/dom-iterator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MatthewMueller/dom-iterator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MatthewMueller/dom-iterator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-props@1.1.1", + "name": "component-props", + "version": "1.1.1", + "description": "Parse immediate identifiers from a js expression", + "purl": "pkg:npm/component-props@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/props#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/props/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/props.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-xor@0.0.4", + "author": "Matthew Mueller", + "name": "component-xor", + "version": "0.0.4", + "description": "tiny xor utility function", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/component-xor@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/xor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/xor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/xor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prismjs@1.6.0", + "author": "Lea Verou", + "name": "prismjs", + "version": "1.6.0", + "description": "Lightweight, robust, elegant syntax highlighting. A spin-off project from Dabblet.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1a697758be5d45ee20bb5e6d6ca6a49a63f389069616deff8a27e175ee2631bdd73cb1f8d6d7de0238ae705613195f8e6d1ad7a205081dbc3fe7871711c3297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT LICENSE\n\nCopyright (c) 2012 Lea Verou\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prismjs@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LeaVerou/prism#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LeaVerou/prism/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LeaVerou/prism.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unescape@0.2.0", + "author": "Jon Schlinkert", + "name": "unescape", + "version": "0.2.0", + "description": "Convert HTML entities to HTML characters, e.g. `>` converts to `>`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b4f9a7f51ace749721f59d4bb7672612d5c461d3543f91429ab533a44acee3ba45c4ebf35e6ee703571ca20ec03d010e090b55758d41fd10ef095f69cc0e019" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unescape@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/unescape" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/unescape/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/unescape.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clipboard@1.7.1", + "name": "clipboard", + "version": "1.7.1", + "description": "Modern copy to clipboard. No Flash. Just 2kb", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/clipboard@1.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenorocha/clipboard.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zenorocha/clipboard.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zenorocha/clipboard.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-modal@3.8.1", + "name": "react-modal", + "version": "3.8.1", + "description": "Accessible modal dialog component for React.JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd64029f7c6a91b114bf14543b79e47aac4c360b751780b2114dc189422b83b0bbd6d9ea8d022e484efe257a7ce72165f17d62453268bb248da7036abf89225a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017 Ryan Florence\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-modal@3.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactjs/react-modal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactjs/react-modal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactjs/react-modal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/exenv@1.2.2", + "author": "Jed Watson", + "name": "exenv", + "version": "1.2.2", + "description": "React's ExecutionEnvironment module extracted for use in other packages & components", + "hashes": [ + { + "alg": "SHA-512", + "content": "67e92d4f14f0bfd20b7e0282937d8e5f79ff7687be39c2d346da8af6970bf89b0fdc9d7f556f14be5e198cb94aa9e5b8af32b8a1eb03386304311219aad3f823" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD License\n\nFor React software\n\nCopyright (c) 2013-2015, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/exenv@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JedWatson/exenv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JedWatson/exenv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JedWatson/exenv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/warning@3.0.0", + "author": "Berkeley Martinez", + "name": "warning", + "version": "3.0.0", + "description": "A mirror of Facebook's Warning", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9272376db629622f1c9fc5e775d266fd1997f69c72a1d1f1eb7592968c4c3fdf2c2471b55f225fc73333363bb1566ea53237cdc51383c7b2712da4345f65eb" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "BSD License\n\nFor React software\n\nCopyright (c) 2013-2015, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Facebook nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/warning@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/BerkeleyTrue/warning" + }, + { + "type": "issue-tracker", + "url": "https://github.com/BerkeleyTrue/warning/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/BerkeleyTrue/warning.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-pure-render@1.0.2", + "author": "Dan Abramov", + "name": "react-pure-render", + "version": "1.0.2", + "description": "A function, a component and a mixin for React pure rendering", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-pure-render@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gaearon/react-pure-render" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gaearon/react-pure-render/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gaearon/react-pure-render.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-redux@5.1.1", + "author": "Dan Abramov", + "name": "react-redux", + "version": "5.1.1", + "description": "Official React bindings for Redux", + "hashes": [ + { + "alg": "SHA-512", + "content": "e5523c115e61760360ca37e65b305b76ba9492b5512a5c932a4d6c187de3cccd8cd8c863fec79080f5dacfa815023da5cff9f3ebcf00753a8c3b5f0baf6e1986" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-redux@5.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/react-redux" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/react-redux/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/react-redux.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hoist-non-react-statics@3.2.1", + "author": "Michael Ridgway", + "name": "hoist-non-react-statics", + "version": "3.2.1", + "description": "Copies non-react specific statics from a child component to a parent component", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe01a2bf18bc24f296366fd6d234a6cdc30fa5fa4f2dcddd63fe86c615f6850f621a3dda0df925578113ecd8caa528a72e9279bda7daf62886204660d7449f07" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Software License Agreement (BSD License)\n========================================\n\nCopyright (c) 2015, Yahoo! Inc. All rights reserved.\n----------------------------------------------------\n\nRedistribution and use of this software in source and binary forms, with or\nwithout modification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission of Yahoo! Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/hoist-non-react-statics@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mridgway/hoist-non-react-statics#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mridgway/hoist-non-react-statics/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-is@16.7.0", + "name": "react-is", + "version": "16.7.0", + "description": "Brand checking of React Elements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-is@16.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-transition-group@2.5.0", + "name": "react-transition-group", + "version": "2.5.0", + "description": "A react component toolset for managing animations", + "hashes": [ + { + "alg": "SHA-512", + "content": "09668bde56829a000577174a6e1869b3e7341d1185e1cfa174ce07db7f85235401354cb1fc031e209196a2b7a13cd49a2a740d380c4becf426a8cbbbf020e3dd" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD 3-Clause License\n\nCopyright (c) 2016, React Community\nForked from React (https://github.com/facebook/react) Copyright 2013-present, Facebook, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/react-transition-group@2.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reactjs/react-transition-group#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactjs/react-transition-group/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactjs/react-transition-group.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-virtualized@9.21.0", + "author": "Brian Vaughn", + "name": "react-virtualized", + "version": "9.21.0", + "description": "React components for efficiently rendering large, scrollable lists and tabular data", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Brian Vaughn\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-virtualized@9.21.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bvaughn/react-virtualized" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bvaughn/react-virtualized/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bvaughn/react-virtualized.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-form@7.4.2", + "author": "Erik Rasmussen", + "name": "redux-form", + "version": "7.4.2", + "description": "A higher order component decorator for forms using Redux and React", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Erik Rasmussen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-form@7.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://redux-form.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/erikras/redux-form/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/erikras/redux-form.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash-es@4.17.11", + "author": "John-David Dalton", + "name": "lodash-es", + "version": "4.17.11", + "description": "Lodash exported as ES modules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "98a9c2f9027da56573bfe0b8fd4deb46c1daa457c7bd0168141f767b9db17b218c717ebf3a5225efc8ded6ef2f78fcd8652924a2030f276ca3c71b1bf3d731cb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash-es@4.17.11", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/custom-builds" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash-cli/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-thunk@2.3.0", + "author": "Dan Abramov", + "name": "redux-thunk", + "version": "2.3.0", + "description": "Thunk middleware for Redux.", + "hashes": [ + { + "alg": "SHA-512", + "content": "38e606358e49cb64d6bd32f52a0025572e9d731dec88f275c13abbe3510fc9429f9fa5ba9c285d2028d9c02774a7c01906ce645a96656e45d6da713fce351af9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-thunk@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/redux-thunk" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux-thunk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux-thunk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resize-observer-polyfill@1.5.0", + "author": "Denis Rul", + "name": "resize-observer-polyfill", + "version": "1.5.0", + "description": "A polyfill for the Resize Observer API", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f066ba2d7473a8d769d0b99947126b6e5dda86a0e0f43a16b1a2968d1715b3227a4481a2d6a15b8031b4f38b1ba8b02c769c41b9f278335b7bf1756a3122076" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2016 Denis Rul\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/resize-observer-polyfill@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/que-etc/resize-observer-polyfill" + }, + { + "type": "issue-tracker", + "url": "https://github.com/que-etc/resize-observer-polyfill/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/que-etc/resize-observer-polyfill.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/rtlcss@2.4.0", + "author": "Mohammad Younes", + "name": "rtlcss", + "version": "2.4.0", + "description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2014-2016 Mohammad Younes\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/rtlcss@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "http://rtlcss.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MohammadYounes/rtlcss/issues?state=open" + }, + { + "type": "vcs", + "url": "git+https://github.com/MohammadYounes/rtlcss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/findup@0.1.5", + "author": "Filirom1", + "name": "findup", + "version": "0.1.5", + "description": "Walk up ancester's dir up to root", + "hashes": [ + { + "alg": "SHA-512", + "content": "51dc68dc2f40e9a96dd8667630db209c8bd7ec37b4577546c5e3ffc7df0d495812962cdc0c77662736bad4b23bcc9cb8384b52889c84ef6b34ffeb41979fd9c4" + } + ], + "purl": "pkg:npm/findup@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Filirom1/findup#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Filirom1/findup/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Filirom1/findup.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colors@0.6.2", + "author": "Marak Squires", + "name": "colors", + "version": "0.6.2", + "description": "get colors in your node.js console like what", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e3b2e530a43798f7cfb2cfde7d3a550aea6ee62c133ed4c106e6869e9dfb909cd9eb424d56bed72f16037714d0cfddfd8d999db5d6dd263447d210dd61d1e22" + } + ], + "purl": "pkg:npm/colors@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Marak/colors.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Marak/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Marak/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.1.0", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.1.0", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "purl": "pkg:npm/commander@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/social-logos@2.0.0", + "name": "social-logos", + "version": "2.0.0", + "description": "A repository of all the social logos we use on WordPress.com.", + "licenses": [ + { + "license": { + "id": "GPL-2.0+", + "text": { + "contentType": "text/markdown", + "content": "The GNU General Public License, Version 2, June 1991 (GPLv2)\n============================================================\n\n> Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA\n\nEveryone is permitted to copy and distribute verbatim copies of this license\ndocument, but changing it is not allowed.\n\n\nPreamble\n--------\n\nThe licenses for most software are designed to take away your freedom to share\nand change it. By contrast, the GNU General Public License is intended to\nguarantee your freedom to share and change free software--to make sure the\nsoftware is free for all its users. This General Public License applies to most\nof the Free Software Foundation's software and to any other program whose\nauthors commit to using it. (Some other Free Software Foundation software is\ncovered by the GNU Library General Public License instead.) You can apply it to\nyour programs, too.\n\nWhen we speak of free software, we are referring to freedom, not price. Our\nGeneral Public Licenses are designed to make sure that you have the freedom to\ndistribute copies of free software (and charge for this service if you wish),\nthat you receive source code or can get it if you want it, that you can change\nthe software or use pieces of it in new free programs; and that you know you can\ndo these things.\n\nTo protect your rights, we need to make restrictions that forbid anyone to deny\nyou these rights or to ask you to surrender the rights. These restrictions\ntranslate to certain responsibilities for you if you distribute copies of the\nsoftware, or if you modify it.\n\nFor example, if you distribute copies of such a program, whether gratis or for a\nfee, you must give the recipients all the rights that you have. You must make\nsure that they, too, receive or can get the source code. And you must show them\nthese terms so they know their rights.\n\nWe protect your rights with two steps: (1) copyright the software, and (2) offer\nyou this license which gives you legal permission to copy, distribute and/or\nmodify the software.\n\nAlso, for each author's protection and ours, we want to make certain that\neveryone understands that there is no warranty for this free software. If the\nsoftware is modified by someone else and passed on, we want its recipients to\nknow that what they have is not the original, so that any problems introduced by\nothers will not reflect on the original authors' reputations.\n\nFinally, any free program is threatened constantly by software patents. We wish\nto avoid the danger that redistributors of a free program will individually\nobtain patent licenses, in effect making the program proprietary. To prevent\nthis, we have made it clear that any patent must be licensed for everyone's free\nuse or not licensed at all.\n\nThe precise terms and conditions for copying, distribution and modification\nfollow.\n\n\nTerms And Conditions For Copying, Distribution And Modification\n---------------------------------------------------------------\n\n**0.** This License applies to any program or other work which contains a notice\nplaced by the copyright holder saying it may be distributed under the terms of\nthis General Public License. The \"Program\", below, refers to any such program or\nwork, and a \"work based on the Program\" means either the Program or any\nderivative work under copyright law: that is to say, a work containing the\nProgram or a portion of it, either verbatim or with modifications and/or\ntranslated into another language. (Hereinafter, translation is included without\nlimitation in the term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not covered by\nthis License; they are outside its scope. The act of running the Program is not\nrestricted, and the output from the Program is covered only if its contents\nconstitute a work based on the Program (independent of having been made by\nrunning the Program). Whether that is true depends on what the Program does.\n\n**1.** You may copy and distribute verbatim copies of the Program's source code\nas you receive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice and\ndisclaimer of warranty; keep intact all the notices that refer to this License\nand to the absence of any warranty; and give any other recipients of the Program\na copy of this License along with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at\nyour option offer warranty protection in exchange for a fee.\n\n**2.** You may modify your copy or copies of the Program or any portion of it,\nthus forming a work based on the Program, and copy and distribute such\nmodifications or work under the terms of Section 1 above, provided that you also\nmeet all of these conditions:\n\n* **a)** You must cause the modified files to carry prominent notices stating\n that you changed the files and the date of any change.\n\n* **b)** You must cause any work that you distribute or publish, that in whole\n or in part contains or is derived from the Program or any part thereof, to\n be licensed as a whole at no charge to all third parties under the terms of\n this License.\n\n* **c)** If the modified program normally reads commands interactively when\n run, you must cause it, when started running for such interactive use in the\n most ordinary way, to print or display an announcement including an\n appropriate copyright notice and a notice that there is no warranty (or\n else, saying that you provide a warranty) and that users may redistribute\n the program under these conditions, and telling the user how to view a copy\n of this License. (Exception: if the Program itself is interactive but does\n not normally print such an announcement, your work based on the Program is\n not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If identifiable\nsections of that work are not derived from the Program, and can be reasonably\nconsidered independent and separate works in themselves, then this License, and\nits terms, do not apply to those sections when you distribute them as separate\nworks. But when you distribute the same sections as part of a whole which is a\nwork based on the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the entire whole,\nand thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your\nrights to work written entirely by you; rather, the intent is to exercise the\nright to control the distribution of derivative or collective works based on the\nProgram.\n\nIn addition, mere aggregation of another work not based on the Program with the\nProgram (or with a work based on the Program) on a volume of a storage or\ndistribution medium does not bring the other work under the scope of this\nLicense.\n\n**3.** You may copy and distribute the Program (or a work based on it, under\nSection 2) in object code or executable form under the terms of Sections 1 and 2\nabove provided that you also do one of the following:\n\n* **a)** Accompany it with the complete corresponding machine-readable source\n code, which must be distributed under the terms of Sections 1 and 2 above on\n a medium customarily used for software interchange; or,\n\n* **b)** Accompany it with a written offer, valid for at least three years, to\n give any third party, for a charge no more than your cost of physically\n performing source distribution, a complete machine-readable copy of the\n corresponding source code, to be distributed under the terms of Sections 1\n and 2 above on a medium customarily used for software interchange; or,\n\n* **c)** Accompany it with the information you received as to the offer to\n distribute corresponding source code. (This alternative is allowed only for\n noncommercial distribution and only if you received the program in object\n code or executable form with such an offer, in accord with Subsection b\n above.)\n\nThe source code for a work means the preferred form of the work for making\nmodifications to it. For an executable work, complete source code means all the\nsource code for all modules it contains, plus any associated interface\ndefinition files, plus the scripts used to control compilation and installation\nof the executable. However, as a special exception, the source code distributed\nneed not include anything that is normally distributed (in either source or\nbinary form) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component itself\naccompanies the executable.\n\nIf distribution of executable or object code is made by offering access to copy\nfrom a designated place, then offering equivalent access to copy the source code\nfrom the same place counts as distribution of the source code, even though third\nparties are not compelled to copy the source along with the object code.\n\n**4.** You may not copy, modify, sublicense, or distribute the Program except as\nexpressly provided under this License. Any attempt otherwise to copy, modify,\nsublicense or distribute the Program is void, and will automatically terminate\nyour rights under this License. However, parties who have received copies, or\nrights, from you under this License will not have their licenses terminated so\nlong as such parties remain in full compliance.\n\n**5.** You are not required to accept this License, since you have not signed\nit. However, nothing else grants you permission to modify or distribute the\nProgram or its derivative works. These actions are prohibited by law if you do\nnot accept this License. Therefore, by modifying or distributing the Program (or\nany work based on the Program), you indicate your acceptance of this License to\ndo so, and all its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n**6.** Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the original\nlicensor to copy, distribute or modify the Program subject to these terms and\nconditions. You may not impose any further restrictions on the recipients'\nexercise of the rights granted herein. You are not responsible for enforcing\ncompliance by third parties to this License.\n\n**7.** If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues), conditions\nare imposed on you (whether by court order, agreement or otherwise) that\ncontradict the conditions of this License, they do not excuse you from the\nconditions of this License. If you cannot distribute so as to satisfy\nsimultaneously your obligations under this License and any other pertinent\nobligations, then as a consequence you may not distribute the Program at all.\nFor example, if a patent license would not permit royalty-free redistribution of\nthe Program by all those who receive copies directly or indirectly through you,\nthen the only way you could satisfy both it and this License would be to refrain\nentirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under any\nparticular circumstance, the balance of the section is intended to apply and the\nsection as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or\nother property right claims or to contest validity of any such claims; this\nsection has the sole purpose of protecting the integrity of the free software\ndistribution system, which is implemented by public license practices. Many\npeople have made generous contributions to the wide range of software\ndistributed through that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing to\ndistribute software through any other system and a licensee cannot impose that\nchoice.\n\nThis section is intended to make thoroughly clear what is believed to be a\nconsequence of the rest of this License.\n\n**8.** If the distribution and/or use of the Program is restricted in certain\ncountries either by patents or by copyrighted interfaces, the original copyright\nholder who places the Program under this License may add an explicit\ngeographical distribution limitation excluding those countries, so that\ndistribution is permitted only in or among countries not thus excluded. In such\ncase, this License incorporates the limitation as if written in the body of this\nLicense.\n\n**9.** The Free Software Foundation may publish revised and/or new versions of\nthe General Public License from time to time. Such new versions will be similar\nin spirit to the present version, but may differ in detail to address new\nproblems or concerns.\n\nEach version is given a distinguishing version number. If the Program specifies\na version number of this License which applies to it and \"any later version\",\nyou have the option of following the terms and conditions either of that version\nor of any later version published by the Free Software Foundation. If the\nProgram does not specify a version number of this License, you may choose any\nversion ever published by the Free Software Foundation.\n\n**10.** If you wish to incorporate parts of the Program into other free programs\nwhose distribution conditions are different, write to the author to ask for\npermission. For software which is copyrighted by the Free Software Foundation,\nwrite to the Free Software Foundation; we sometimes make exceptions for this.\nOur decision will be guided by the two goals of preserving the free status of\nall derivatives of our free software and of promoting the sharing and reuse of\nsoftware generally.\n\n\nNo Warranty\n-----------\n\n**11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR\nTHE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE\nSTATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM\n\"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,\nBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE\nPROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n**12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR\nINABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA\nBEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A\nFAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER\nOR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES." + } + } + } + ], + "purl": "pkg:npm/social-logos@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/social-logos#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/social-logos/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/social-logos.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/socket.io-client@2.2.0", + "name": "socket.io-client", + "version": "2.2.0", + "description": "[![Build Status](https://secure.travis-ci.org/socketio/socket.io-client.svg?branch=master)](http://travis-ci.org/socketio/socket.io-client) [![Dependency Status](https://david-dm.org/socketio/socket.io-client.svg)](https://david-dm.org/socketio/socket.io-client) [![devDependency Status](https://david-dm.org/socketio/socket.io-client/dev-status.svg)](https://david-dm.org/socketio/socket.io-client#info=devDependencies) [![NPM version](https://badge.fury.io/js/socket.io-client.svg)](https://www.npmjs.com/package/socket.io-client) ![Downloads](http://img.shields.io/npm/dm/socket.io-client.svg?style=flat) [![](http://slack.socket.io/badge.svg?)](http://slack.socket.io)", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd6f71afd5f24c97a3152fffec635998b4cb91448072f392c515d786ba2357eef06e84c507c0aebcad540425b736207692aca2d21f5c4dec83edd5e375477d8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Guillermo Rauch\n\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/socket.io-client@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-client#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/socket.io-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io-client@3.3.1", + "name": "engine.io-client", + "version": "3.3.1", + "description": "Client for the realtime Engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebeac89d0bbcc54edcd1f205e910b84912ae1d558fb7c5ead1b6584b894cad3c268518a778e94432c5375f4cd2e661c8bc2809b26a4e2845fb0e18a11a4ee3d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2015 Automattic \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/engine.io-client@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/socketio/engine.io-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io-parser@2.1.3", + "name": "engine.io-parser", + "version": "2.1.3", + "description": "Parser for the client for the realtime Engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd4c93268fb925b9abeeb777328b13000a4aec1388a38b23c7c7496121dadc49b947703d636b3d196bb824525ee8fc745627890b484a500e4d072b42f8eee4d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2016 Guillermo Rauch (@rauchg)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/engine.io-parser@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/socketio/engine.io-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arraybuffer.slice@0.0.7", + "name": "arraybuffer.slice", + "version": "0.0.7", + "description": "Exports a function for slicing ArrayBuffers (no polyfilling)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e998df41a052cba0ae207d3e07436bc4c7c31395483823ffe603aa4a9108b1a019c7dfe08accf3ad783a3d9ec6e7553f9fcf149a502060b350f70027208ecf24" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013 Rase-\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arraybuffer.slice@0.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rase-/arraybuffer.slice" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rase-/arraybuffer.slice/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/rase-/arraybuffer.slice.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/blob@0.0.5", + "name": "blob", + "version": "0.0.5", + "description": "Abstracts out Blob and uses BlobBulder in cases where it is supported with any vendor prefix.", + "hashes": [ + { + "alg": "SHA-512", + "content": "61173dcef573e3035ac5c5e689281bf4b020ed8630a90db17744a3ea8b1f03b93f3ca988195967398b37c0e15d9110bdfc9a50bbcb06b7fcc780957bc737ab7e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\r\n\r\nCopyright (C) 2014 Rase-\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/blob@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/blob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/blob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webmodules/blob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-binary2@1.0.3", + "author": "Kevin Roark", + "name": "has-binary2", + "version": "1.0.3", + "description": "A function that takes anything in javascript and returns true if its argument contains binary data.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b52d62a10d2be119e010f263d5425a8d70e076b09770013b592a5da90ca2877e97ffad88f6e259229f17faf5b9496e7b2fb6aa8d53e2f748be74bf36615ce9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Kevin Roark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-binary2@1.0.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/isarray@2.0.1", + "author": "Julian Gruber", + "name": "isarray", + "version": "2.0.1", + "description": "Array#isArray for older browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "54b82121634ce842d0ce8ef3c26720d0d99357258a623bc878cf37ca3a74c110d39949eb33aefc7d06dc281a3a9f6089105d2cce81bfff2b60f932a56bcf402d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/isarray@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/isarray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/isarray/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/isarray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ws@6.1.2", + "author": "Einar Otto Stangvik", + "name": "ws", + "version": "6.1.2", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a372aa8a95cd51d4bbc2943304749ed7cd250463bad12a0ad32568dc260981bd8c9286ee5ae057e9d86460fe4e4422dde79cbe49a7e530e5797ea001e77bb1e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Einar Otto Stangvik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ws@6.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/websockets/ws" + }, + { + "type": "issue-tracker", + "url": "https://github.com/websockets/ws/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/websockets/ws.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmlhttprequest-ssl@1.5.5", + "author": "Michael de Wit", + "name": "xmlhttprequest-ssl", + "version": "1.5.5", + "description": "XMLHttpRequest for Node", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd77de404ff0364beb224b67d8a7f4f3af5f0b404de94a727556ac1887929b60752e58a17fbff451f64cf9e0a43b0dcfedb3f8faa3e0aa19bb668c6e26d154d1" + } + ], + "purl": "pkg:npm/xmlhttprequest-ssl@1.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mjwwit/node-XMLHttpRequest#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/mjwwit/node-XMLHttpRequest/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mjwwit/node-XMLHttpRequest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socket.io-parser@3.3.0", + "name": "socket.io-parser", + "version": "3.3.0", + "description": "socket.io protocol parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4153e03221388a901650785b0232691830c034a048b6ee7a275181800dc0347c65a5fc3290a4b0f1d2a18f8c376ba15a95c7c6371310c43f1e31129e34cbb03" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Guillermo Rauch \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socket.io-parser@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/socket.io-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.5.9", + "name": "source-map-support", + "version": "0.5.9", + "description": "Fixes stack traces for files with source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "80628e49ab7bdf3d15f3004aa3d006c596727a4733062ade87584792d6edfa46fd69cb0207939f5421760c25a5ced710debe6834dedfd812f4076c4e72827f0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Evan Wallace\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-support@0.5.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/evanw/node-source-map-support#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/evanw/node-source-map-support/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/evanw/node-source-map-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/store@2.0.12", + "author": "Marcus Westin", + "name": "store", + "version": "2.0.12", + "description": "A localStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userData behavior under the hood", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010-2017 Marcus Westin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/store@2.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/marcuswestin/store.js#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/marcuswestin/store.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/marcuswestin/store.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/striptags@2.2.1", + "author": "Eric Norris", + "name": "striptags", + "version": "2.2.1", + "description": "PHP strip_tags in Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd94ef9853f4218bbfce7f0c5d5e8facb6fa54a6ddf56192127966e03e513574bffb3618947ad27c9828070d70e7a0fa4490abe75e5eaf7062b6d44642a8a12c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) [2017] [Eric Norris]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/striptags@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ericnorris/striptags" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ericnorris/striptags/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ericnorris/striptags.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/terser-webpack-plugin@1.1.0", + "author": "webpack Contrib Team", + "name": "terser-webpack-plugin", + "version": "1.1.0", + "description": "Terser plugin for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3845f7b8f7a94df0462bbb08baa0f4241b4be8f02f874f8f57ebcec5667a4f174a8c0081ce348e8711760f283384f1ee478d74f229fa9177f6a01ed1f490eb7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/terser-webpack-plugin@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/terser-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/terser-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/terser@3.14.0", + "author": "Mihai Bazon", + "name": "terser", + "version": "3.14.0", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", + "hashes": [ + { + "alg": "SHA-512", + "content": "e069cb0b4c7aebb7891b47b02536bacffc97adb2c6bfcd03f51bba1c8a424263be4383df12d0458b439b49c92ac0be95c90bffec434989e5c7a3600d99d43083" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2018 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/terser@3.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fabiosantoscode/terser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fabiosantoscode/terser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fabiosantoscode/terser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/worker-farm@1.6.0", + "name": "worker-farm", + "version": "1.6.0", + "description": "Distribute processing tasks to child processes with an über-simple API and baked-in durability & custom concurrency options.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aefc3741365cf25031c95aea7121959b9c8ffc827651c07753482b684dcb085a19d189f6c78128552a8929d07f4f933e14b7113e3cf84c369c45fdce09f354cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2014 LevelUP contributors\n---------------------------------------\n\n*LevelUP contributors listed at *\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/worker-farm@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/node-worker-farm" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/node-worker-farm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/node-worker-farm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/textarea-caret@3.1.0", + "name": "textarea-caret", + "version": "3.1.0", + "description": "(x, y) coordinates of the caret in a textarea or input type='text'", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/textarea-caret@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/textarea-caret-position#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/textarea-caret-position/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/textarea-caret-position.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/thread-loader@2.1.2", + "author": "Tobias Koppers @sokra", + "name": "thread-loader", + "version": "2.1.2", + "description": "Runs the following loaders in a worker pool", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/thread-loader@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/thread-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/thread-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/thread-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader-runner@2.3.1", + "author": "Tobias Koppers @sokra", + "name": "loader-runner", + "version": "2.3.1", + "description": "Runs (webpack) loaders", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c9abf3d45c5c62308af158db515c46b8ac6197ef2cc4d6c7990e2dcf894f1b6904e1bac4c2f4bf36dce921101b614ef7fe05737c16e0b55c0790e619f95a47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) Tobias Koppers @sokra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader-runner@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/loader-runner#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/loader-runner/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/loader-runner.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/neo-async@2.6.0", + "name": "neo-async", + "version": "2.6.0", + "description": "Neo-Async is thought to be used as a drop-in replacement for Async, it almost fully covers its functionality and runs faster ", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-2018 Suguru Motegi\nBased on Async.js, Copyright Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/neo-async@2.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/suguru03/neo-async" + }, + { + "type": "issue-tracker", + "url": "https://github.com/suguru03/neo-async/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/suguru03/neo-async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-title-case@1.0.0", + "name": "to-title-case", + "version": "1.0.0", + "description": "Convert a string to title case.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/to-title-case@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ianstormtaylor/to-title-case#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ianstormtaylor/to-title-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ianstormtaylor/to-title-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escape-regexp-component@1.0.2", + "name": "escape-regexp-component", + "version": "1.0.2", + "description": "Escape regular expression special characters", + "hashes": [ + { + "alg": "SHA-512", + "content": "074cb169f8f50f56533441e4168431cf889ba1949f6991e168d848ba0ec671408be1952b5522594e65940243ce15a6037e2dd1353f57334f364ee184ea3a6689" + } + ], + "purl": "pkg:npm/escape-regexp-component@1.0.2" + }, + { + "type": "library", + "bom-ref": "pkg:npm/title-case-minors@1.0.0", + "name": "title-case-minors", + "version": "1.0.0", + "description": "A list of the minor words that shouldn't be capitalized in a title case string.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/title-case-minors@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ianstormtaylor/title-case-minors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ianstormtaylor/title-case-minors/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ianstormtaylor/title-case-minors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-capital-case@1.0.0", + "name": "to-capital-case", + "version": "1.0.0", + "description": "Convert a string to capital case.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/to-capital-case@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ianstormtaylor/to-capital-case#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ianstormtaylor/to-capital-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ianstormtaylor/to-capital-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-space-case@1.0.0", + "name": "to-space-case", + "version": "1.0.0", + "description": "Convert a string to space case.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/to-space-case@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ianstormtaylor/to-space-case#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ianstormtaylor/to-space-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ianstormtaylor/to-space-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-no-case@1.0.2", + "name": "to-no-case", + "version": "1.0.2", + "description": "Remove any existing casing from a string.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/to-no-case@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ianstormtaylor/to-no-case#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ianstormtaylor/to-no-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ianstormtaylor/to-no-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-sentence-case@1.0.0", + "name": "to-sentence-case", + "version": "1.0.0", + "description": "Convert a string to sentence case.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/to-sentence-case@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ianstormtaylor/to-sentence-case#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ianstormtaylor/to-sentence-case/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ianstormtaylor/to-sentence-case.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tracekit@0.4.5", + "author": "Blake Niemyjski", + "name": "tracekit", + "version": "0.4.5", + "description": "Cross browser stack traces", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/tracekit@0.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csnover/TraceKit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csnover/TraceKit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csnover/TraceKit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/twemoji@11.2.0", + "author": "Twitter, Inc.", + "name": "twemoji", + "version": "11.2.0", + "description": "A Unicode 11.0 standard based way to implement emoji across all platforms.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2018 Twitter, Inc and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + }, + { + "license": { + "id": "CC-BY-4.0", + "text": { + "content": "Copyright (c) 2018 Twitter, Inc and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/twemoji@11.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/twitter/twemoji" + }, + { + "type": "issue-tracker", + "url": "https://github.com/twitter/twemoji/issues" + }, + { + "type": "vcs", + "url": "git://github.com/twitter/twemoji.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/valid-url@1.0.9", + "name": "valid-url", + "version": "1.0.9", + "description": "URI validation functions", + "purl": "pkg:npm/valid-url@1.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ogt/valid-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ogt/valid-url/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ogt/valid-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack@4.28.1", + "author": "Tobias Koppers @sokra", + "name": "webpack", + "version": "4.28.1", + "description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b0ecc74820ebff9e4ccfcde7b8a3411dbc2b8f9b14fdf3ebd5a48bf0b5cc1c17543848348da7ddafc1c29ce1111eecd22d1fd7f54b8adaf45b90ef2b9867c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack@4.28.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/ast@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "ast", + "version": "1.7.11", + "description": "AST utils for webassemblyjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ba9e96213dc4c70d87bd9e5b0a6bd0b2581c858bc563f07a2f70082d98c01065439ccce65b43c0a7c0c60a602e47119cf1104fa86348df424e1c565237279f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/ast@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-module-context@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-module-context", + "version": "1.7.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "309096f22182d3cb4c9367a7724d5a3d6f811390b0f3fee987f546671c32bc66c9c2392d2a40caeefcbb80098c0f1f3c0fb9a10d308d2805b9b440fe819d16f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-module-context@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-wasm-bytecode", + "version": "1.7.11", + "description": "WASM's Bytecode constants", + "hashes": [ + { + "alg": "SHA-512", + "content": "23b6d2f8768ed0ad3b228f3daa126ffb3d508a94e9bab6a61b05120e4c0469f89c6d2bc270bf76094644b60ca47cdb64e706f40a82d0c169665d3c066cd65479" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wast-parser@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wast-parser", + "version": "1.7.11", + "description": "WebAssembly text format parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "4210ac433a95d02a6c124458c93cd00e294235467ee63f767fe837e5b1c736a4b6d85a69353cb03457c73eaf195997d80a06de72d73e3e88210fec5fcd5161d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-parser@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.7.11", + "author": "Mauro Bringolf", + "group": "@webassemblyjs", + "name": "floating-point-hex-parser", + "version": "1.7.11", + "description": "A function to parse floating point hexadecimal strings as defined by the WebAssembly specification", + "hashes": [ + { + "alg": "SHA-512", + "content": "df34e4485b30c1938f3479f390ff4e36ae1b8c949e29531cb9a8465ee6eb94b9993fc7e64c8279f1d5bb87fcce5568854ae1b67a6dff1c7dc194237bc32bbd47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\r\n\r\nCopyright (c) 2017 Mauro Bringolf\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-api-error@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-api-error", + "version": "1.7.11", + "description": "Common API errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "35c30b8e814c5e9b004991712798761d945c1210e4be73453802a778fe516ca47369624ddfa342e23a901cac12b488465eee66516954524ef281db6b3bc95b9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-api-error@1.7.11" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-code-frame@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-code-frame", + "version": "1.7.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4580712d36c65061a2ab182b6c8ecc018a5e3c429d5a82bcd170fcc26d09680a86936ce5cb27d2119aa4feb8465b7a7a542cb44d16e833dc8e2ec35f2124cf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-code-frame@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wast-printer@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wast-printer", + "version": "1.7.11", + "description": "WebAssembly text format printer", + "hashes": [ + { + "alg": "SHA-512", + "content": "1205e4e1a9dff232a6b9926ca83f2acb96f3d9fac442106f66bbaff9bab03682d6508b63352172824f32c0bdc94c4cfd2adc539409aa4d736b743d5df60343b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-printer@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40xtuc/long@4.2.1", + "author": "Daniel Wirtz", + "group": "@xtuc", + "name": "long", + "version": "4.2.1", + "description": "A Long class for representing a 64-bit two's-complement integer value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e1ea058d4f07f0fcc54eacfed84180e02200fec73980d0df6f8115920b27c8af9149001d09d67e7e9684befd3b08f5aa6527a0dfd83e192d748a2e722a6401" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/%40xtuc/long@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dcodeIO/long.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dcodeIO/long.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dcodeIO/long.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-fsm@1.7.11", + "author": "Mauro Bringolf", + "group": "@webassemblyjs", + "name": "helper-fsm", + "version": "1.7.11", + "description": "FSM implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "248358efa53eef4d8845fede3ee90eb74dfb4709ad1f9f491ef71d59b4d3c878b5f22c6643eb8eb8d85c7427101d3aae0c01f7e7f420165a7763d2aab7226c09" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-fsm@1.7.11" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-edit@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-edit", + "version": "1.7.11", + "description": "> Rewrite a WASM binary", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab3bb0527efbd4f57afcb8a5aa45dc4b4a3325801e63f38a6d72165376bc81ec6ea9be837b6a78c9afdb681787e4943658975f856852bd26eef3a5627a7b6da7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-edit@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-buffer@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-buffer", + "version": "1.7.11", + "description": "Buffer manipulation utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bcf8a64787e455f0c52fa1246db93d6c157b24167586f6f6c3cb8ece6b5ebac57fa5d1d0f9b04449db5839fed707f18a3de5ef48377bbb25cdcd6e19d471293" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-buffer@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-wasm-section", + "version": "1.7.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "a74c9e78efe1dabdf43f28e7257f715d247a10372f25dfe30bac5afcfc60e25a5f70d8bb254b303a9a834e8650e791cc3158570e287fcaa91acb01d618bc6ac9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-gen@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-gen", + "version": "1.7.11", + "description": "WebAssembly binary format printer", + "hashes": [ + { + "alg": "SHA-512", + "content": "791dfde13f1d1d97e92c9ed4fd9e69152bf19752fadc975111e6e9bfd818739e732e1cf37493c0bb18c1613e17a9ebd4756ebba94dacd27340de406e3491db69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-gen@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/ieee754@1.7.11", + "group": "@webassemblyjs", + "name": "ieee754", + "version": "1.7.11", + "description": "IEEE754 decoder and encoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "75c5fc26e614fe0bf29b320773d0e0c53cd45132dec56c2df2e09358fde8b72b39f7a8a8d0be5a5b4d866f5463629c76fb426eb35878645aa395aeee9859e24e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/ieee754@1.7.11" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/leb128@1.7.11", + "group": "@webassemblyjs", + "name": "leb128", + "version": "1.7.11", + "description": "LEB128 decoder and encoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2ed0b24b48fcee443587c1daacad38589fe5aa30556a6c8da5b4dac7bd9664cc53cef17399d07150e5e55ce2363f4cd1e05dc9f0ac78ce3613c662eb9ffff29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012 The Obvious Corporation.\nhttp://obvious.com/\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n\n-------------------------------------------------------------------------\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/leb128@1.7.11" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/utf8@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "utf8", + "version": "1.7.11", + "description": "UTF8 encoder/decoder for WASM", + "hashes": [ + { + "alg": "SHA-512", + "content": "1996d0956b68a414cfd2eedc1eb131fbbdf264aad0a01329c2418422a95a7258e15c291533590c4207bf31ff9cb0c2408c4752c213b22c04b4028477006e4ff3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/utf8@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-opt@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-opt", + "version": "1.7.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6a7e9ec721b8a883b802f5c66a785f3d2b8046f18a8157c389c2158126cbecadca78419d378673d5bd701d5746ed70f29a9153695b8f6541040e1c2f96762b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-opt@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-parser@1.7.11", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-parser", + "version": "1.7.11", + "description": "WebAssembly binary format parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "297063b65c00dc156e911ff25870bd185f920b305c823d1aee59bdda44ce69ae1c6e369369ae3b6c28d7c3a717e12190a649dc07d3d4da11c6615cb223bc0546" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Sven Sauleau \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-parser@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn@5.7.3", + "name": "acorn", + "version": "5.7.3", + "description": "ECMAScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43fbe546ec186bb6f42935b073a2f28d73514b186104fe819eedbf71266fd11473017946941a996e57d44b8d96b8ed815d3dc0c07a7118baaf6940f70c74b26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2018 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn@5.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acornjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acornjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acornjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-dynamic-import@3.0.0", + "author": "Jordan Gensler", + "name": "acorn-dynamic-import", + "version": "3.0.0", + "description": "Support dynamic imports in acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "18aa79b50f21d0a30f5886064471d7235b39b54a598b16772071768c0bb8db04827fa227fc6f3bdecebfcb80dd29d856bf386ed53ea6135260be78402aac9861" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Jordan Gensler\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-dynamic-import@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kesne/acorn-dynamic-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kesne/acorn-dynamic-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kesne/acorn-dynamic-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv@6.6.2", + "author": "Evgeny Poberezkin", + "name": "ajv", + "version": "6.6.2", + "description": "Another JSON Schema Validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "023af821c317abfd9098c904992bf1a9f2cde731a627dda01d701e397ab539e9281f6adf0cdb20743a0bd9fed06910b2ec6fc4e93a71055751b8dada333b461f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ajv@6.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@3.2.0", + "author": "Evgeny Poberezkin", + "name": "ajv-keywords", + "version": "3.2.0", + "description": "Custom JSON-Schema keywords for Ajv validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "645ced1f35517462c0cc99a9513f4b3452ded58895384ca571a36912eb4cdba3d54c2b4e0fdd7d20c7c3d350a06d1a2e078d8377d6ad8f1d47b1e0b5e4380e64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ajv-keywords@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv-keywords#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv-keywords/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv-keywords.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chrome-trace-event@1.0.0", + "author": "Trent Mick, Sam Saccone", + "name": "chrome-trace-event", + "version": "1.0.0", + "description": "A library to create a trace of your node app per Google's Trace Event format.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b239ddc991ebad68aee1163b0241e08e7f3419f00cd994b352464b57f26ce7d2dd9a1e890d385fd12526387539deb16edab571c5f0b3277d1491c7dc87719bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "# This is the MIT license\n\nCopyright (c) 2015 Joyent Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/chrome-trace-event@1.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "github.com:samccone/chrome-trace-event" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@4.0.0", + "name": "eslint-scope", + "version": "4.0.0", + "description": "ECMAScript scope analyzer for ESLint", + "hashes": [ + { + "alg": "SHA-512", + "content": "5be0744af17881a9b209399473eb884cf634f7cf625d57cabe1c2d989a1c4da62873fde48441e6126bdf63f1a7f4703d555ef98eb4040ac1e2ce4370d5bebc14" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright JS Foundation and other contributors, https://js.foundation\nCopyright (C) 2012-2013 Yusuke Suzuki (twitter: @Constellation) and other contributors.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-scope@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/eslint/eslint-scope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint-scope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint-scope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-libs-browser@2.1.0", + "author": "Tobias Koppers @sokra", + "name": "node-libs-browser", + "version": "2.1.0", + "description": "The node core libs for in browser usage.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87fcdc0fc1fd91a0d9f402d45b0941503a3a4ca17c6bba8148248419f8d354861eaac8a848a6805fe04decd822306a7a8922176773f1802bbc292ddbef560ae5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-libs-browser@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/node-libs-browser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/node-libs-browser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/node-libs-browser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/assert@1.4.1", + "name": "assert", + "version": "1.4.1", + "description": "commonjs assert - node.js api compatible", + "hashes": [ + { + "alg": "SHA-512", + "content": "103b206b0cf0a2e9f609990282dc496efdfddafe276e4f570c3d3acc8fa4418a0133fdd10562e51322404433a6840028b018d600212428be92fa5219b5c02e6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/assert@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/commonjs-assert" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/commonjs-assert/issues" + }, + { + "type": "vcs", + "url": "git://github.com/defunctzombie/commonjs-assert.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/events@1.1.1", + "author": "Irakli Gozalishvili", + "name": "events", + "version": "1.1.1", + "description": "Node's event emitter for all engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "90472fbc2041c965c69d9cba254960029da00485237c2015e8fe93813d7f69a40a726b80102e0e65357523811640bcf6831670efa6adb95caf1e14f1be2d0597" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT\n\nCopyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/events@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Gozala/events#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Gozala/events/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/Gozala/events.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-browserify@2.0.1", + "author": "James Halliday", + "name": "stream-browserify", + "version": "2.0.1", + "description": "the stream module from node core for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d7ea19a4947b3f82bd85bb160396dabc7c90351839712900b3f0efc83386ad46a047f0e3919813607ef5b9806d74193fea43dbb40b322faf65f93e4b7a9edaa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-browserify@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/stream-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/stream-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/stream-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/util@0.10.4", + "author": "Joyent", + "name": "util", + "version": "0.10.4", + "description": "Node.JS util module", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0f9bd853437b1ee659755e285189cdc50c892eef40be88751d4ff5bddbaad28075794205ec61b29937c3120b7b49b52921b913b3bec42301a1443515ebfb5f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/util@0.10.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/node-util" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/node-util/issues" + }, + { + "type": "vcs", + "url": "git://github.com/defunctzombie/node-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-bundle-analyzer@3.0.3", + "author": "Yury Grunin", + "name": "webpack-bundle-analyzer", + "version": "3.0.3", + "description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-bundle-analyzer@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-cli@3.2.1", + "name": "webpack-cli", + "version": "3.2.1", + "description": "CLI for webpack & friends", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/webpack-cli@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-cli#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-cli/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-cli.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/findup-sync@2.0.0", + "author": "\"Cowboy\" Ben Alman", + "name": "findup-sync", + "version": "2.0.0", + "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "baff1ad1ecec8c04fdf7391226c26dc75b1cc9e7ba8d2da20b84f9d27e8c700b9da590f9ac7b06b1dbe03be91def7852877bff6625bff1d0df2dbda9f72c69b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/findup-sync@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/js-cli/node-findup-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/js-cli/node-findup-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/js-cli/node-findup-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-file@1.0.0", + "author": "Brian Woodward", + "name": "detect-file", + "version": "1.0.0", + "description": "Detects if a file exists and returns the resolved filepath.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ed08e2c6f7c3f4d3bc7bc2288e99f2347e2dde20ac9688b4c62763039d58bf134e255866dff89ceb447326d2b808219246b47a4aa5b5602d61ebbfcc57a5cdd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2017, Brian Woodward.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/detect-file@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doowb/detect-file" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doowb/detect-file/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doowb/detect-file.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve-dir@1.0.1", + "author": "Jon Schlinkert", + "name": "resolve-dir", + "version": "1.0.1", + "description": "Resolve a directory that is either local, global or in the user's home directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "47bba24e3102cef3ac5927dd33440a14d05515c2b6eda1ce53076f2b9dc1716f33aa719d629d056e3f36732e78fb60383f6b45336d89e6445f7b547e94cff5ca" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve-dir@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/resolve-dir" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/resolve-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/resolve-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-tilde@2.0.2", + "author": "Jon Schlinkert", + "name": "expand-tilde", + "version": "2.0.2", + "description": "Bash-like tilde expansion for node.js. Expands a leading tilde in a file path to the user home directory, or `~+` to the cwd.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0391267ac1d6eab7e767dcac1d08cf7494678b44916abd2d8ed1b930db66f67e5352fb1853ca28ce9aed443e00a87c5c6565a556e026428da758a7cdf68ca34f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/expand-tilde@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/expand-tilde" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/expand-tilde/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/expand-tilde.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/homedir-polyfill@1.0.1", + "author": "Brian Woodward", + "name": "homedir-polyfill", + "version": "1.0.1", + "description": "Node.js os.homedir polyfill for older versions of node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7929a6584e5b6532b6368bb8834008df367daecc29ec644aa0a5d2d412d492f3ef88eaace184cdd5d8d022aad7cbd939804b5d2cfcbce898d1c2c34cf6d9c370" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Brian Woodward\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/homedir-polyfill@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doowb/homedir-polyfill" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doowb/homedir-polyfill/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doowb/homedir-polyfill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-passwd@1.0.0", + "author": "Brian Woodward", + "name": "parse-passwd", + "version": "1.0.0", + "description": "Parse a passwd file into a list of users.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d58d40fff4145c464aed82b3fab0fd5b275c135f84b8fafa64180a79c001f2d9a85ba505bf435111525ed69fa3471b5386471b6ca91fc086d625efc8784ea6d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Brian Woodward\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-passwd@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doowb/parse-passwd" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doowb/parse-passwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doowb/parse-passwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/global-modules@1.0.0", + "author": "Jon Schlinkert", + "name": "global-modules", + "version": "1.0.0", + "description": "The directory used by npm for globally installed npm modules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0ace91247f5d46a4e16ec346738f39ade01e146708ce706ef9ecf3efadf87170b15bab4c29b20a4eab1a71b71162086e03b46f7733a5d155b176a0675ebfb6e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/global-modules@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/global-modules" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/global-modules/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/global-modules.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/global-prefix@1.0.2", + "author": "Jon Schlinkert", + "name": "global-prefix", + "version": "1.0.2", + "description": "Get the npm global path prefix.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e65b31d4d5031ed4a37e0d1e1e5998bd92aff3f9d5a97e1c9056ccf85ac6710fb4e0a59c585a3d3f93313d9612cd4bf2ce67536c8ec48b1f10e086c42c3ab32a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/global-prefix@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/global-prefix" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/global-prefix/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/global-prefix.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/global-modules-path@2.3.1", + "author": "Telerik", + "name": "global-modules-path", + "version": "2.3.1", + "description": "Returns path to globally installed package", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbeb2191fe089c8ee63d11d2a366ff93a8b1ebe34b0edc9c718bfceb0861c6b4865fdc233d7d553084e6ac36c4d5e87bce4ce1896b56dac1e494962843ad82c6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/global-modules-path@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rosen-vladimirov/global-modules-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rosen-vladimirov/global-modules-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rosen-vladimirov/global-modules-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lightercollective@0.1.0", + "author": "Andrea Giammarchi", + "name": "lightercollective", + "version": "0.1.0", + "description": "a basic postinstall only binary based on package.json collective info", + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2018, Andrea Giammarchi, @WebReflection\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lightercollective@0.1.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/v8-compile-cache@2.0.2", + "author": "Andres Suarez", + "name": "v8-compile-cache", + "version": "2.0.2", + "description": "Require hook for automatic V8 compile cache persistence", + "hashes": [ + { + "alg": "SHA-512", + "content": "97c9421262dc2d8661e276ee9cd66f40225ce69bfbf910b06bcabf2dd531f2eee5b16bcf0ca9a9a1d24024dc24021242fff745638f0ab881268ed778455883ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/v8-compile-cache@2.0.2" + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-middleware@3.5.1", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-middleware", + "version": "3.5.1", + "description": "A development middleware for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "142aea3f2d72cbfb0de94fd268465c1ca4571a5a94d0351a1012f8e6391462807c7e855beb00a76c82751ca231faa5054d6fb726955c0890b167c5404cbe1ef8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-middleware@3.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-dev-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime@2.4.0", + "author": "Robert Kieffer", + "name": "mime", + "version": "2.4.0", + "description": "A comprehensive library for mime-type mapping", + "hashes": [ + { + "alg": "SHA-512", + "content": "c74567f2ca48fb0b89d4ee92ee09db69083c3f187834d1dbeca4883661162a23c4e1128ea65be28e7f8d92662699180febc99cef48f611b793151b2bb306907a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 Benjamin Thomas, Robert Kieffer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broofa/node-mime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broofa/node-mime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broofa/node-mime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-rtl-plugin@1.8.0", + "author": "Romain Berger", + "name": "webpack-rtl-plugin", + "version": "1.8.0", + "description": "Webpack plugin to produce a rtl css bundle", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2016 Romain Berger\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-rtl-plugin@1.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/romainberger/webpack-rtl-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/romainberger/webpack-rtl-plugin" + }, + { + "type": "vcs", + "url": "git+https://github.com/romainberger/webpack-rtl-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40romainberger/css-diff@1.0.3", + "author": "Romain Berger", + "group": "@romainberger", + "name": "css-diff", + "version": "1.0.3", + "description": "Get the diff between two css", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2016 Romain Berger\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40romainberger/css-diff@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dailymotion/css-diff" + }, + { + "type": "issue-tracker", + "url": "https://github.com/romainberger/css-diff" + }, + { + "type": "vcs", + "url": "git+https://github.com/romainberger/css-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.merge@4.6.1", + "author": "John-David Dalton", + "name": "lodash.merge", + "version": "4.6.1", + "description": "The Lodash method `_.merge` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.merge@4.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano@4.1.8", + "author": "Ben Briggs", + "name": "cssnano", + "version": "4.1.8", + "description": "A modular minifier, built on top of the PostCSS ecosystem.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d28d08310134133a386f8d58ae6f14e91a7dfc083cd6f3576358193274f55e13b80e98c47f6bad28446a5896cea33de0d5675cd5ddd04ad6bf708b89d7049312" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano@4.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano-preset-default@4.0.6", + "author": "Ben Briggs", + "name": "cssnano-preset-default", + "version": "4.0.6", + "description": "Safe defaults for cssnano which require minimal configuration.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano-preset-default@4.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-declaration-sorter@4.0.1", + "author": "Selwyn", + "name": "css-declaration-sorter", + "version": "4.0.1", + "description": "Sorts CSS declarations fast and automatically in a certain order.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright 2016 Selwyn \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-declaration-sorter@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Siilwyn/css-declaration-sorter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Siilwyn/css-declaration-sorter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Siilwyn/css-declaration-sorter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/timsort@0.3.0", + "author": "Marco Ziccardi", + "name": "timsort", + "version": "0.3.0", + "description": "TimSort: Fast Sorting for Node.js", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License\n\nCopyright (c) 2015 Marco Ziccardi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/timsort@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mziccard/node-timsort" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mziccard/node-timsort/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mziccard/node-timsort.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano-util-raw-cache@4.0.1", + "author": "Ben Briggs", + "name": "cssnano-util-raw-cache", + "version": "4.0.1", + "description": "Manages the raw value formatting for generated AST nodes.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano-util-raw-cache@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-calc@7.0.1", + "author": "Andy Jansson", + "name": "postcss-calc", + "version": "7.0.1", + "description": "PostCSS plugin to reduce calc()", + "hashes": [ + { + "alg": "SHA-512", + "content": "881729b5816af90521f60ccfeed6b66edc39d28e34b38b8b238503560779c91019b540d673900f765e7240377687f4f289935b26bbf41e26214f5d3608c80ded" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-calc@7.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-calc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-calc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-calc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-unit-converter@1.1.1", + "author": "Andy Jansson", + "name": "css-unit-converter", + "version": "1.1.1", + "description": "Converts CSS values from one unit to another", + "hashes": [ + { + "alg": "SHA-512", + "content": "222270302f2b759134fb18846477abbba62838d0b8adf3cca869b65bce633086e416fbf99c54f02551476a6d9e16b37ab719a85181401578aff080957933b430" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright 2015 Andy Jansson \r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/css-unit-converter@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/andyjansson/css-unit-converter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/andyjansson/css-unit-converter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/andyjansson/css-unit-converter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-colormin@4.0.2", + "author": "Ben Briggs", + "name": "postcss-colormin", + "version": "4.0.2", + "description": "Minify colors in your CSS files with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d78ad41efa334d3dffafc6f417210d7ea6f7502962a0931f33949365b5c30498b99ad72a4344343094bb7ee9c3f6e9f06b7a284d859c68861d6b720087d96e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-colormin@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color@3.1.0", + "name": "color", + "version": "3.1.0", + "description": "Color conversion and manipulation with CSS string support", + "hashes": [ + { + "alg": "SHA-512", + "content": "023a6377c6aca99e8477141ea86cd4e560618537c9ff4700e1695badeedee6f5df9834a675aecebfa8de2a8aeef9bd2f1dc6f50aabeeae84c7a79cc85b385530" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Heather Arthur\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-string@1.5.3", + "author": "Heather Arthur", + "name": "color-string", + "version": "1.5.3", + "description": "Parser and generator for CSS color strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "b33dbd8f56e64837e8031288114eb3c282195cde81ac56c030885f6023728995c10ee53f6a21e537ce25a7fc43ccbdae6f21612c3a1b1c8954d57ef45d1acc0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Heather Arthur \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color-string@1.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/simple-swizzle@0.2.2", + "author": "Qix", + "name": "simple-swizzle", + "version": "0.2.2", + "description": "Simply swizzle your arguments", + "hashes": [ + { + "alg": "SHA-512", + "content": "240fff910819b5bb98f379bec53fad5c9926267706313153f82fa0da1d91f6ec64608ac4db2cbdb2099c2e10a7c39eff5920fe121dc9f7b14f1031676d79c352" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Josh Junon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/simple-swizzle@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/qix-/node-simple-swizzle#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/qix-/node-simple-swizzle/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/qix-/node-simple-swizzle.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-arrayish@0.3.2", + "author": "Qix", + "name": "is-arrayish", + "version": "0.3.2", + "description": "Determines if an object can be used as an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf3d3a4bcb74a33a035cc1beb9b7b6eb37824cd5dc2883c96498bc841ac5e227422e6b38086f50b4aeea065d5ba22e4e0f31698ecc1be493e61c26cca63698ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 JD Ballard\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-arrayish@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/qix-/node-is-arrayish#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/qix-/node-is-arrayish/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/qix-/node-is-arrayish.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-convert-values@4.0.1", + "author": "Ben Briggs", + "name": "postcss-convert-values", + "version": "4.0.1", + "description": "Convert values with PostCSS (e.g. ms -> s)", + "hashes": [ + { + "alg": "SHA-512", + "content": "484ee67f6e43dce454117a6edd652a42acb49c26ccb8ce41127cbe50b13f157752ff450c039f0e773c2fcee1c9469205964d6ea23b75e8985a12882d3fa5b6a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-convert-values@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-comments@4.0.1", + "author": "Ben Briggs", + "name": "postcss-discard-comments", + "version": "4.0.1", + "description": "Discard comments in your CSS files with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c866f2043a39171b08984f742c3f02f3bbe09cd97079090e0cc9146650d533f08180bafd0b945ab0b189c7187d1a354e05e1bc35c08c6ada2a235a5783c24d5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-comments@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-duplicates@4.0.2", + "author": "Ben Briggs", + "name": "postcss-discard-duplicates", + "version": "4.0.2", + "description": "Discard duplicate rules in your CSS files with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa59395b5baa3bca88513113f94113823f465b290b0b72ce95dafb11e866ca65745aedfa932a078a60b87082eb0006291d0f9faf8ca929c59c54d686ce6d2b78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-duplicates@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-empty@4.0.1", + "author": "Ben Briggs", + "name": "postcss-discard-empty", + "version": "4.0.1", + "description": "Discard empty rules and values with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "201168cabc24e7676117ee73fd901bceae49cbb5aad1a2d4b0e9faf49352fbb61ebb21da373270048604d109541ffa797772fe38e37bd85b1ec726fb38aff7a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-empty@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-overridden@4.0.1", + "author": "Justineo", + "name": "postcss-discard-overridden", + "version": "4.0.1", + "description": "PostCSS plugin to discard overridden @keyframes or @counter-style.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2322a80cbf1034e6ce89473a781c3c90cc411c27f151a11161351ed9017c93b8ffc628ab6b20f3ce49a547a94c423ac0335a750c3453bd6ad2ec06bc969ebfb8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2016 Justineo \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-discard-overridden@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-longhand@4.0.10", + "author": "Ben Briggs", + "name": "postcss-merge-longhand", + "version": "4.0.10", + "description": "Merge longhand properties into shorthand with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "99aed8bf18dd2d07627e77351c5b16fc05ba7d57ee6c6c91f97e1b13714e49d055318f5b6632957649474fea1d92728107b15209f2881c2df21caed1500a913e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-merge-longhand@4.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-color-names@0.0.4", + "author": "Dave Eddy", + "name": "css-color-names", + "version": "0.0.4", + "description": "A JSON Object of css color names mapped to their hex value", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce3e43ed7d54da1db3b1738033c1325111019e7b6ce87f899be7753360db89041c52d9ea810b0cadda3c256f51f3460552621d05978cbb9c2f60cee172058ffd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/css-color-names@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bahamas10/css-color-names#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bahamas10/css-color-names/issues" + }, + { + "type": "vcs", + "url": "git://github.com/bahamas10/css-color-names.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stylehacks@4.0.1", + "author": "Ben Briggs", + "name": "stylehacks", + "version": "4.0.1", + "description": "Detect/remove browser hacks from CSS files.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/stylehacks@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-parser@3.1.1", + "name": "postcss-selector-parser", + "version": "3.1.1", + "description": "> Selector parser with built in methods for working with selector strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9ab26a478686b3b4050e7efed1937ef8b920050084745ac862bc5854aed3a684bf60661e85f0fcc85bfb0ed56391c4448b82f90a1423bc20ac272ada1a8254" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-selector-parser@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-selector-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-selector-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-selector-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-rules@4.0.2", + "author": "Ben Briggs", + "name": "postcss-merge-rules", + "version": "4.0.2", + "description": "Merge CSS rules with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a0836152e96dc060197ee4bf69a0be995084a2e58ccbfac0c225f33bccdc3f435aacc954175d9d9c6d5ba2ea6bb6718269b7584e2821a3d710389aafe86f3fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-merge-rules@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caniuse-api@3.0.0", + "name": "caniuse-api", + "version": "3.0.0", + "description": "request the caniuse data to check browsers compatibilities", + "hashes": [ + { + "alg": "SHA-512", + "content": "4814e5ef42b43e40d421e6db917af15aa6651cdb34c118110fa419f20b9cb528636e1eb78043df17e5a3d18c3eef97f963cb52cea008fcd722b18bff7026a1d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Sébastien Balayn\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/caniuse-api@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nyalab/caniuse-api#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nyalab/caniuse-api/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nyalab/caniuse-api.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.memoize@4.1.2", + "author": "John-David Dalton", + "name": "lodash.memoize", + "version": "4.1.2", + "description": "The lodash method `_.memoize` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7b8fe3739a09d0cd30185dcb0760b8229a5b4e5753171ed94e59fe868cbf4a8fc18ae45227c39268b71bdb3acf88bd5d7f0f3a34e3f7c219f2d5b3b6976f802" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.memoize@4.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.uniq@4.5.0", + "author": "John-David Dalton", + "name": "lodash.uniq", + "version": "4.5.0", + "description": "The lodash method `_.uniq` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7737fd7e38de9a4c68ad0b74dfa98a258868930f2f0df684d4a44ef930743ca37d7acc581d287f5bf5cc6b5058df1a723cabb05b271113d4586ea1ef4baf3780" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.uniq@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano-util-same-parent@4.0.1", + "author": "Ben Briggs", + "name": "cssnano-util-same-parent", + "version": "4.0.1", + "description": "Check that two PostCSS nodes share the same parent.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano-util-same-parent@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vendors@1.0.2", + "author": "Titus Wormer", + "name": "vendors", + "version": "1.0.2", + "description": "List of vendor prefixes known to the web platform", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe3b86eb99132f80b2dacbb83fc1e3b644f193a56624388e3c1b9f5a78aa43ac249da73a8cd8974bdbd4fa13b7c20bac8b2a969734db5478b477226a44e360df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2016 Titus Wormer \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vendors@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wooorm/vendors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wooorm/vendors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wooorm/vendors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-font-values@4.0.2", + "author": "Bogdan Chadkin", + "name": "postcss-minify-font-values", + "version": "4.0.2", + "description": "Minify font declarations with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc548fceb26135eebff0c70e2d4d775c8b0446884126220516e0b53e89606a33997515aa4602884cffc0e19fe7e06421126b5bc663bd343c3740b6857c4d5d15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-minify-font-values@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-gradients@4.0.1", + "author": "Ben Briggs", + "name": "postcss-minify-gradients", + "version": "4.0.1", + "description": "Minify gradient parameters with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d9853d0e13e45b56a5721ac4c82b1f38ad4ff972eaf2d639b03dad7d6d58aa60f42ee3df5953cdf5c8ccf3b320bc12189955def7fa1e59f716ff0dd681a70ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-minify-gradients@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano-util-get-arguments@4.0.0", + "author": "Ben Briggs", + "name": "cssnano-util-get-arguments", + "version": "4.0.0", + "description": "Get a list of arguments, separated by a comma.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano-util-get-arguments@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-color-stop@1.1.0", + "author": "pigcan", + "name": "is-color-stop", + "version": "1.1.0", + "description": "Check if a string is CSS color stop", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 pigcan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-color-stop@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pigcan/is-color-stop#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pigcan/is-color-stop/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pigcan/is-color-stop.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hex-color-regex@1.1.0", + "author": "Charlike Mike Reagent", + "name": "hex-color-regex", + "version": "1.1.0", + "description": "The best regular expression (regex) for matching hex color values from string.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License\n\nCopyright (c) 2015 [Charlike Make Reagent](http://j.mp/1stW47C)\n\n> Permission is hereby granted, free of charge, to any person obtaining a copy\n> of this software and associated documentation files (the \"Software\"), to deal\n> in the Software without restriction, including without limitation the rights\n> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n> copies of the Software, and to permit persons to whom the Software is\n> furnished to do so, subject to the following conditions:\n>\n> The above copyright notice and this permission notice shall be included in\n> all copies or substantial portions of the Software.\n>\n> THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n> SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/hex-color-regex@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexps/hex-color-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexps/hex-color-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexps/hex-color-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hsl-regex@1.0.0", + "author": "John Otander", + "name": "hsl-regex", + "version": "1.0.0", + "description": "Regex for matching HSL colors.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hsl-regex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexps/hsl-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexps/hsl-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexps/hsl-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hsla-regex@1.0.0", + "author": "John Otander", + "name": "hsla-regex", + "version": "1.0.0", + "description": "Regex for matching HSLA colors.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hsla-regex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexps/hsla-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexps/hsla-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexps/hsla-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rgb-regex@1.0.1", + "author": "John Otander", + "name": "rgb-regex", + "version": "1.0.1", + "description": "Regex for RGB color strings.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rgb-regex@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexps/rgb-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexps/rgb-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexps/rgb-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rgba-regex@1.0.0", + "author": "John Otander", + "name": "rgba-regex", + "version": "1.0.0", + "description": "Regex for matching RGBA color strings.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 John Otander\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rgba-regex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/johnotander/rgba-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/johnotander/rgba-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/johnotander/rgba-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-params@4.0.1", + "author": "Bogdan Chadkin", + "name": "postcss-minify-params", + "version": "4.0.1", + "description": "Minify at-rule params with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "86125d31580ff2f6acac76e428093e69bdbcbc498f620cae0f3465df557704407740e4772f94d32151162c3367659dfe7e24e2f5de8a7abf0633c4b587ca763b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-minify-params@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/alphanum-sort@1.0.2", + "author": "Bogdan Chadkin", + "name": "alphanum-sort", + "version": "1.0.2", + "description": "Alphanumeric sorting algorithm", + "hashes": [ + { + "alg": "SHA-512", + "content": "d057017dd7266ae9863d0d2a3e7ed0e6a4e0cffa285e0232a75adff229396c65fc9a91366078c2d0ffdec90bf1bb5194458420abda337f69ad790e590fd622c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Bogdan Chadkin \r\n\r\nPermission is hereby granted, free of charge, to any person\r\nobtaining a copy of this software and associated documentation\r\nfiles (the \"Software\"), to deal in the Software without\r\nrestriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the\r\nSoftware is furnished to do so, subject to the following\r\nconditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\r\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\r\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\r\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\r\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\r\nOTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/alphanum-sort@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TrySound/alphanum-sort" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TrySound/alphanum-sort/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TrySound/alphanum-sort.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uniqs@2.0.0", + "author": "Felix Gnass", + "name": "uniqs", + "version": "2.0.0", + "description": "Tiny utility to create unions and de-duplicated lists", + "hashes": [ + { + "alg": "SHA-512", + "content": "999743a5fdef055e447e1dbd90cc39b57a2ea7f6ee320c4bcceb7f5ca14a7159a2fb5e4c6a73505abe877d9d9a8994d89588b16dd349d0a16621922fe76b4749" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/uniqs@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fgnass/uniqs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fgnass/uniqs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fgnass/uniqs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-selectors@4.0.1", + "author": "Ben Briggs", + "name": "postcss-minify-selectors", + "version": "4.0.1", + "description": "Minify selectors with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b5defc4f052a3765a3e77b8dca56033e5044e4c7706ce3f42f9bac9723d1d0a50a789f26fb1d9d202a9905f969f6c7efdd6d0facc0da4275949b30e4fbf9320" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-minify-selectors@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-charset@4.0.1", + "author": "Bogdan Chadkin", + "name": "postcss-normalize-charset", + "version": "4.0.1", + "description": "Add necessary or remove extra charset with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "44a823124b3cde5f30e32121ced3b0359fa72d2ac9f8dbcf361a52fa6543ce86a24476505681bb345d933f9aa3c2768df58b305218fa9b51344b467e5830a011" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-normalize-charset@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-display-values@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-display-values", + "version": "4.0.1", + "description": "Normalize multiple value display syntaxes into single values.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-display-values@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano-util-get-match@4.0.0", + "author": "Ben Briggs", + "name": "cssnano-util-get-match", + "version": "4.0.0", + "description": "Convert a list of keywords into a single keyword match.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano-util-get-match@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-positions@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-positions", + "version": "4.0.1", + "description": "Normalize keyword values for position into length values.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-positions@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-repeat-style@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-repeat-style", + "version": "4.0.1", + "description": "Convert two value syntax for repeat-style into one value.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-repeat-style@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-string@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-string", + "version": "4.0.1", + "description": "Normalize wrapping quotes for CSS string literals.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-string@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-timing-functions@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-timing-functions", + "version": "4.0.1", + "description": "Normalize CSS animation/transition timing functions.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-timing-functions@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-unicode@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-unicode", + "version": "4.0.1", + "description": "Normalize unicode-range descriptors, and can convert to wildcard ranges.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-unicode@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-url@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-url", + "version": "4.0.1", + "description": "Normalize URLs with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "5aab561ba195da710bb10105112d11cdf2f679b57098697f33c56631bb212ada3f502941a3e9b39d7f198b8fe191385dab1ee28f0bfe3bc1d63dda4aee71ff22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-url@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-absolute-url@2.1.0", + "author": "Sindre Sorhus", + "name": "is-absolute-url", + "version": "2.1.0", + "description": "Check if an URL is absolute", + "hashes": [ + { + "alg": "SHA-512", + "content": "bcec7b569aec2b2965c234a42d5efd348869c8b7ebde3029ed569308c5ce247bb89b4130d426767dc8c04b0995d63237056b961c1d35dcce3c7b27a5764f6062" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-absolute-url@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-absolute-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-absolute-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-absolute-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-whitespace@4.0.1", + "author": "Ben Briggs", + "name": "postcss-normalize-whitespace", + "version": "4.0.1", + "description": "Trim whitespace inside and around CSS rules & declarations.", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-whitespace@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-ordered-values@4.1.1", + "author": "Ben Briggs", + "name": "postcss-ordered-values", + "version": "4.1.1", + "description": "Ensure values are ordered consistently in your CSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e510752146619310c27dae5fc7fa20a7f03cda6b6afabed44aa4beef3b747b8dbc1c9efe0470b1c9e637f4296692452dc5d39dde693c803e9df5b8c7d8110232" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-ordered-values@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-initial@4.0.2", + "author": "Ben Briggs", + "name": "postcss-reduce-initial", + "version": "4.0.2", + "description": "Reduce initial definitions to the actual initial value, where possible.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c916b575bd638f090b08562b5ac067ac460320ba76dc944450fc84465bbafddee1eb5733504261d0ef39ec3888c93d9e3258ccece40f0d161a770243c73db0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-reduce-initial@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-transforms@4.0.1", + "author": "Ben Briggs", + "name": "postcss-reduce-transforms", + "version": "4.0.1", + "description": "Reduce transform functions with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "946811aa74ae011e62e6e520d53037debf549e07d369d5b13b22f6ab1d4ab8fa024337e6b5a1e3a7d3eec17ef25724711b705607378551a4b9b95f5e5609c481" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-reduce-transforms@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-svgo@4.0.1", + "author": "Ben Briggs", + "name": "postcss-svgo", + "version": "4.0.1", + "description": "Optimise inline SVG with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb901d41d801a05e2b6e975b796009bb113de7783fca545f54da7a9af022eb554237f636e53bbda799a1dc2c88e3659b4d1222c11f5ad46745b660e734f7ac91" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-svgo@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-svg@3.0.0", + "author": "Sindre Sorhus", + "name": "is-svg", + "version": "3.0.0", + "description": "Check if a string or buffer is SVG", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ad6089825491c2fff78aae8f4f9719c9adb3a7044cf056d4c885cf545e26b9c327af34179daaa40106004194d27abde854462063f1e98a350b23d770ea321b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-svg@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-svg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-svg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-svg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-comment-regex@1.1.2", + "author": "Steve Mao", + "name": "html-comment-regex", + "version": "1.1.2", + "description": "Regular expression for matching HTML comments", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fe33ae50636250e58d06f4a29d943a68d332befce1e9b54e40681c147c02032599353187f7d85ae6f3811c3b2b5f244d2de49be40272a59a3b170e75b308999" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2018 Steve Mao\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-comment-regex@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stevemao/html-comment-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stevemao/html-comment-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stevemao/html-comment-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/svgo@1.1.1", + "author": "Kir Belevich", + "name": "svgo", + "version": "1.1.1", + "description": "Nodejs-based tool for optimizing SVG vector graphics files", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d3fe0f4514ca1ef65bb6213e87b40c5303b451d973ab99cae60ad1a7c81ffe1909d5e998cd9fe28e1d96d9df9c8bf35fb517f681e8e784b09cedcc1436104c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright © 2012–2016 Kir Belevich\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nЛицензия MIT\n\nCopyright © 2012–2016 Кир Белевич\n\nДанная лицензия разрешает лицам, получившим копию данного\nпрограммного обеспечения и сопутствующей документации\n(в дальнейшем именуемыми «Программное Обеспечение»), безвозмездно\nиспользовать Программное Обеспечение без ограничений, включая\nнеограниченное право на использование, копирование, изменение,\nдобавление, публикацию, распространение, сублицензирование\nи/или продажу копий Программного Обеспечения, также как и лицам,\nкоторым предоставляется данное Программное Обеспечение,\nпри соблюдении следующих условий:\n\nУказанное выше уведомление об авторском праве и данные условия\nдолжны быть включены во все копии или значимые части данного\nПрограммного Обеспечения.\n\nДАННОЕ ПРОГРАММНОЕ ОБЕСПЕЧЕНИЕ ПРЕДОСТАВЛЯЕТСЯ «КАК ЕСТЬ»,\nБЕЗ КАКИХ-ЛИБО ГАРАНТИЙ, ЯВНО ВЫРАЖЕННЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ,\nВКЛЮЧАЯ, НО НЕ ОГРАНИЧИВАЯСЬ ГАРАНТИЯМИ ТОВАРНОЙ ПРИГОДНОСТИ,\nСООТВЕТСТВИЯ ПО ЕГО КОНКРЕТНОМУ НАЗНАЧЕНИЮ И ОТСУТСТВИЯ НАРУШЕНИЙ\nПРАВ. НИ В КАКОМ СЛУЧАЕ АВТОРЫ ИЛИ ПРАВООБЛАДАТЕЛИ НЕ НЕСУТ\nОТВЕТСТВЕННОСТИ ПО ИСКАМ О ВОЗМЕЩЕНИИ УЩЕРБА, УБЫТКОВ ИЛИ ДРУГИХ\nТРЕБОВАНИЙ ПО ДЕЙСТВУЮЩИМ КОНТРАКТАМ, ДЕЛИКТАМ ИЛИ ИНОМУ,\nВОЗНИКШИМ ИЗ, ИМЕЮЩИМ ПРИЧИНОЙ ИЛИ СВЯЗАННЫМ С ПРОГРАММНЫМ\nОБЕСПЕЧЕНИЕМ ИЛИ ИСПОЛЬЗОВАНИЕМ ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ\nИЛИ ИНЫМИ ДЕЙСТВИЯМИ С ПРОГРАММНЫМ ОБЕСПЕЧЕНИЕМ.\n" + } + } + } + ], + "purl": "pkg:npm/svgo@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/svg/svgo" + }, + { + "type": "issue-tracker", + "url": "https://github.com/svg/svgo/issues" + }, + { + "type": "vcs", + "url": "git://github.com/svg/svgo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/coa@2.0.2", + "author": "Sergey Berezhnoy", + "name": "coa", + "version": "2.0.2", + "description": "Command-Option-Argument: Yet another parser for command line options.", + "hashes": [ + { + "alg": "SHA-512", + "content": "28019c93f78d02608bd1d713dc18ae6302db1312ba95db91f03c4cdc2d53c83cda5e1647c99f28a17e48e7e9dad9eddd3c5ba26dfc6b19da2baf4fcbafb45809" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Sergey Berezhnoy \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/coa@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/veged/coa" + }, + { + "type": "issue-tracker", + "url": "https://github.com/veged/coa/issues" + }, + { + "type": "vcs", + "url": "git://github.com/veged/coa.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/q@1.5.1", + "group": "@types", + "name": "q", + "version": "1.5.1", + "description": "TypeScript definitions for Q", + "hashes": [ + { + "alg": "SHA-512", + "content": "a988b7615f629d4fd11047f1c157066736d2dca1bf5ecf7496fd0fafe943b6e56304f19dd40f9e7225f3552691bcb89fcb5df605f72f86f1237956a1ad497452" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/q@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colors@1.1.2", + "author": "Marak Squires", + "name": "colors", + "version": "1.1.2", + "description": "get colors in your node.js console", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e3b2e530a43798f7cfb2cfde7d3a550aea6ee62c133ed4c106e6869e9dfb909cd9eb424d56bed72f16037714d0cfddfd8d999db5d6dd263447d210dd61d1e22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Original Library\n - Copyright (c) Marak Squires\n\nAdditional Functionality\n - Copyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/colors@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Marak/colors.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Marak/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Marak/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-select@2.0.2", + "author": "Felix Boehm", + "name": "css-select", + "version": "2.0.2", + "description": "a CSS selector compiler/engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "75440e068a9d47b43057dd16cac5cf2d71b92ceee785806089655fc45f340ca3c5f33c75b7fa54776158cbbdde9a0df3ae3b4ce9dce66206c729f576af188740" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/css-select@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/css-select#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/css-select/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/css-select.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-select-base-adapter@0.1.1", + "author": "Nik Coughlin", + "name": "css-select-base-adapter", + "version": "0.1.1", + "description": "Provides some base functions needed by a css-select adapter so that you don't have to implement the whole thing.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Nik Coughlin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/css-select-base-adapter@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nrkn/css-select-base-adapter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nrkn/css-select-base-adapter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nrkn/css-select-base-adapter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-tree@1.0.0-alpha.28", + "author": "Roman Dvornov", + "name": "css-tree", + "version": "1.0.0-alpha.28", + "description": "CSSTree is a tool set to work with CSS, including fast detailed parser (string->AST), walker (AST traversal), generator (AST->string) and lexer (validation and matching) based on knowledge of spec and browser implementations", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2016 by Roman Dvornov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-tree@1.0.0-alpha.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstree/csstree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstree/csstree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstree/csstree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mdn-data@1.1.4", + "author": "Mozilla Developer Network", + "name": "mdn-data", + "version": "1.1.4", + "description": "Open Web data by the Mozilla Developer Network", + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "text": { + "content": "Mozilla Public License Version 2.0\n==================================\n\n1. Definitions\n--------------\n\n1.1. \"Contributor\"\n means each individual or legal entity that creates, contributes to\n the creation of, or owns Covered Software.\n\n1.2. \"Contributor Version\"\n means the combination of the Contributions of others (if any) used\n by a Contributor and that particular Contributor's Contribution.\n\n1.3. \"Contribution\"\n means Covered Software of a particular Contributor.\n\n1.4. \"Covered Software\"\n means Source Code Form to which the initial Contributor has attached\n the notice in Exhibit A, the Executable Form of such Source Code\n Form, and Modifications of such Source Code Form, in each case\n including portions thereof.\n\n1.5. \"Incompatible With Secondary Licenses\"\n means\n\n (a) that the initial Contributor has attached the notice described\n in Exhibit B to the Covered Software; or\n\n (b) that the Covered Software was made available under the terms of\n version 1.1 or earlier of the License, but not also under the\n terms of a Secondary License.\n\n1.6. \"Executable Form\"\n means any form of the work other than Source Code Form.\n\n1.7. \"Larger Work\"\n means a work that combines Covered Software with other material, in\n a separate file or files, that is not Covered Software.\n\n1.8. \"License\"\n means this document.\n\n1.9. \"Licensable\"\n means having the right to grant, to the maximum extent possible,\n whether at the time of the initial grant or subsequently, any and\n all of the rights conveyed by this License.\n\n1.10. \"Modifications\"\n means any of the following:\n\n (a) any file in Source Code Form that results from an addition to,\n deletion from, or modification of the contents of Covered\n Software; or\n\n (b) any new file in Source Code Form that contains any Covered\n Software.\n\n1.11. \"Patent Claims\" of a Contributor\n means any patent claim(s), including without limitation, method,\n process, and apparatus claims, in any patent Licensable by such\n Contributor that would be infringed, but for the grant of the\n License, by the making, using, selling, offering for sale, having\n made, import, or transfer of either its Contributions or its\n Contributor Version.\n\n1.12. \"Secondary License\"\n means either the GNU General Public License, Version 2.0, the GNU\n Lesser General Public License, Version 2.1, the GNU Affero General\n Public License, Version 3.0, or any later versions of those\n licenses.\n\n1.13. \"Source Code Form\"\n means the form of the work preferred for making modifications.\n\n1.14. \"You\" (or \"Your\")\n means an individual or a legal entity exercising rights under this\n License. For legal entities, \"You\" includes any entity that\n controls, is controlled by, or is under common control with You. For\n purposes of this definition, \"control\" means (a) the power, direct\n or indirect, to cause the direction or management of such entity,\n whether by contract or otherwise, or (b) ownership of more than\n fifty percent (50%) of the outstanding shares or beneficial\n ownership of such entity.\n\n2. License Grants and Conditions\n--------------------------------\n\n2.1. Grants\n\nEach Contributor hereby grants You a world-wide, royalty-free,\nnon-exclusive license:\n\n(a) under intellectual property rights (other than patent or trademark)\n Licensable by such Contributor to use, reproduce, make available,\n modify, display, perform, distribute, and otherwise exploit its\n Contributions, either on an unmodified basis, with Modifications, or\n as part of a Larger Work; and\n\n(b) under Patent Claims of such Contributor to make, use, sell, offer\n for sale, have made, import, and otherwise transfer either its\n Contributions or its Contributor Version.\n\n2.2. Effective Date\n\nThe licenses granted in Section 2.1 with respect to any Contribution\nbecome effective for each Contribution on the date the Contributor first\ndistributes such Contribution.\n\n2.3. Limitations on Grant Scope\n\nThe licenses granted in this Section 2 are the only rights granted under\nthis License. No additional rights or licenses will be implied from the\ndistribution or licensing of Covered Software under this License.\nNotwithstanding Section 2.1(b) above, no patent license is granted by a\nContributor:\n\n(a) for any code that a Contributor has removed from Covered Software;\n or\n\n(b) for infringements caused by: (i) Your and any other third party's\n modifications of Covered Software, or (ii) the combination of its\n Contributions with other software (except as part of its Contributor\n Version); or\n\n(c) under Patent Claims infringed by Covered Software in the absence of\n its Contributions.\n\nThis License does not grant any rights in the trademarks, service marks,\nor logos of any Contributor (except as may be necessary to comply with\nthe notice requirements in Section 3.4).\n\n2.4. Subsequent Licenses\n\nNo Contributor makes additional grants as a result of Your choice to\ndistribute the Covered Software under a subsequent version of this\nLicense (see Section 10.2) or under the terms of a Secondary License (if\npermitted under the terms of Section 3.3).\n\n2.5. Representation\n\nEach Contributor represents that the Contributor believes its\nContributions are its original creation(s) or it has sufficient rights\nto grant the rights to its Contributions conveyed by this License.\n\n2.6. Fair Use\n\nThis License is not intended to limit any rights You have under\napplicable copyright doctrines of fair use, fair dealing, or other\nequivalents.\n\n2.7. Conditions\n\nSections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\nin Section 2.1.\n\n3. Responsibilities\n-------------------\n\n3.1. Distribution of Source Form\n\nAll distribution of Covered Software in Source Code Form, including any\nModifications that You create or to which You contribute, must be under\nthe terms of this License. You must inform recipients that the Source\nCode Form of the Covered Software is governed by the terms of this\nLicense, and how they can obtain a copy of this License. You may not\nattempt to alter or restrict the recipients' rights in the Source Code\nForm.\n\n3.2. Distribution of Executable Form\n\nIf You distribute Covered Software in Executable Form then:\n\n(a) such Covered Software must also be made available in Source Code\n Form, as described in Section 3.1, and You must inform recipients of\n the Executable Form how they can obtain a copy of such Source Code\n Form by reasonable means in a timely manner, at a charge no more\n than the cost of distribution to the recipient; and\n\n(b) You may distribute such Executable Form under the terms of this\n License, or sublicense it under different terms, provided that the\n license for the Executable Form does not attempt to limit or alter\n the recipients' rights in the Source Code Form under this License.\n\n3.3. Distribution of a Larger Work\n\nYou may create and distribute a Larger Work under terms of Your choice,\nprovided that You also comply with the requirements of this License for\nthe Covered Software. If the Larger Work is a combination of Covered\nSoftware with a work governed by one or more Secondary Licenses, and the\nCovered Software is not Incompatible With Secondary Licenses, this\nLicense permits You to additionally distribute such Covered Software\nunder the terms of such Secondary License(s), so that the recipient of\nthe Larger Work may, at their option, further distribute the Covered\nSoftware under the terms of either this License or such Secondary\nLicense(s).\n\n3.4. Notices\n\nYou may not remove or alter the substance of any license notices\n(including copyright notices, patent notices, disclaimers of warranty,\nor limitations of liability) contained within the Source Code Form of\nthe Covered Software, except that You may alter any license notices to\nthe extent required to remedy known factual inaccuracies.\n\n3.5. Application of Additional Terms\n\nYou may choose to offer, and to charge a fee for, warranty, support,\nindemnity or liability obligations to one or more recipients of Covered\nSoftware. However, You may do so only on Your own behalf, and not on\nbehalf of any Contributor. You must make it absolutely clear that any\nsuch warranty, support, indemnity, or liability obligation is offered by\nYou alone, and You hereby agree to indemnify every Contributor for any\nliability incurred by such Contributor as a result of warranty, support,\nindemnity or liability terms You offer. You may include additional\ndisclaimers of warranty and limitations of liability specific to any\njurisdiction.\n\n4. Inability to Comply Due to Statute or Regulation\n---------------------------------------------------\n\nIf it is impossible for You to comply with any of the terms of this\nLicense with respect to some or all of the Covered Software due to\nstatute, judicial order, or regulation then You must: (a) comply with\nthe terms of this License to the maximum extent possible; and (b)\ndescribe the limitations and the code they affect. Such description must\nbe placed in a text file included with all distributions of the Covered\nSoftware under this License. Except to the extent prohibited by statute\nor regulation, such description must be sufficiently detailed for a\nrecipient of ordinary skill to be able to understand it.\n\n5. Termination\n--------------\n\n5.1. The rights granted under this License will terminate automatically\nif You fail to comply with any of its terms. However, if You become\ncompliant, then the rights granted under this License from a particular\nContributor are reinstated (a) provisionally, unless and until such\nContributor explicitly and finally terminates Your grants, and (b) on an\nongoing basis, if such Contributor fails to notify You of the\nnon-compliance by some reasonable means prior to 60 days after You have\ncome back into compliance. Moreover, Your grants from a particular\nContributor are reinstated on an ongoing basis if such Contributor\nnotifies You of the non-compliance by some reasonable means, this is the\nfirst time You have received notice of non-compliance with this License\nfrom such Contributor, and You become compliant prior to 30 days after\nYour receipt of the notice.\n\n5.2. If You initiate litigation against any entity by asserting a patent\ninfringement claim (excluding declaratory judgment actions,\ncounter-claims, and cross-claims) alleging that a Contributor Version\ndirectly or indirectly infringes any patent, then the rights granted to\nYou by any and all Contributors for the Covered Software under Section\n2.1 of this License shall terminate.\n\n5.3. In the event of termination under Sections 5.1 or 5.2 above, all\nend user license agreements (excluding distributors and resellers) which\nhave been validly granted by You or Your distributors under this License\nprior to termination shall survive termination.\n\n************************************************************************\n* *\n* 6. Disclaimer of Warranty *\n* ------------------------- *\n* *\n* Covered Software is provided under this License on an \"as is\" *\n* basis, without warranty of any kind, either expressed, implied, or *\n* statutory, including, without limitation, warranties that the *\n* Covered Software is free of defects, merchantable, fit for a *\n* particular purpose or non-infringing. The entire risk as to the *\n* quality and performance of the Covered Software is with You. *\n* Should any Covered Software prove defective in any respect, You *\n* (not any Contributor) assume the cost of any necessary servicing, *\n* repair, or correction. This disclaimer of warranty constitutes an *\n* essential part of this License. No use of any Covered Software is *\n* authorized under this License except under this disclaimer. *\n* *\n************************************************************************\n\n************************************************************************\n* *\n* 7. Limitation of Liability *\n* -------------------------- *\n* *\n* Under no circumstances and under no legal theory, whether tort *\n* (including negligence), contract, or otherwise, shall any *\n* Contributor, or anyone who distributes Covered Software as *\n* permitted above, be liable to You for any direct, indirect, *\n* special, incidental, or consequential damages of any character *\n* including, without limitation, damages for lost profits, loss of *\n* goodwill, work stoppage, computer failure or malfunction, or any *\n* and all other commercial damages or losses, even if such party *\n* shall have been informed of the possibility of such damages. This *\n* limitation of liability shall not apply to liability for death or *\n* personal injury resulting from such party's negligence to the *\n* extent applicable law prohibits such limitation. Some *\n* jurisdictions do not allow the exclusion or limitation of *\n* incidental or consequential damages, so this exclusion and *\n* limitation may not apply to You. *\n* *\n************************************************************************\n\n8. Litigation\n-------------\n\nAny litigation relating to this License may be brought only in the\ncourts of a jurisdiction where the defendant maintains its principal\nplace of business and such litigation shall be governed by laws of that\njurisdiction, without reference to its conflict-of-law provisions.\nNothing in this Section shall prevent a party's ability to bring\ncross-claims or counter-claims.\n\n9. Miscellaneous\n----------------\n\nThis License represents the complete agreement concerning the subject\nmatter hereof. If any provision of this License is held to be\nunenforceable, such provision shall be reformed only to the extent\nnecessary to make it enforceable. Any law or regulation which provides\nthat the language of a contract shall be construed against the drafter\nshall not be used to construe this License against a Contributor.\n\n10. Versions of the License\n---------------------------\n\n10.1. New Versions\n\nMozilla Foundation is the license steward. Except as provided in Section\n10.3, no one other than the license steward has the right to modify or\npublish new versions of this License. Each version will be given a\ndistinguishing version number.\n\n10.2. Effect of New Versions\n\nYou may distribute the Covered Software under the terms of the version\nof the License under which You originally received the Covered Software,\nor under the terms of any subsequent version published by the license\nsteward.\n\n10.3. Modified Versions\n\nIf you create software not governed by this License, and you want to\ncreate a new license for such software, you may create and use a\nmodified version of this License if you rename the license and remove\nany references to the name of the license steward (except to note that\nsuch modified license differs from this License).\n\n10.4. Distributing Source Code Form that is Incompatible With Secondary\nLicenses\n\nIf You choose to distribute Source Code Form that is Incompatible With\nSecondary Licenses under the terms of this version of the License, the\nnotice described in Exhibit B of this License must be attached.\n\nExhibit A - Source Code Form License Notice\n-------------------------------------------\n\n This Source Code Form is subject to the terms of the Mozilla Public\n License, v. 2.0. If a copy of the MPL was not distributed with this\n file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\nIf it is not possible or desirable to put the notice in a particular\nfile, then You may include the notice in a location (such as a LICENSE\nfile in a relevant directory) where a recipient would be likely to look\nfor such a notice.\n\nYou may add additional accurate notices of copyright ownership.\n\nExhibit B - \"Incompatible With Secondary Licenses\" Notice\n---------------------------------------------------------\n\n This Source Code Form is \"Incompatible With Secondary Licenses\", as\n defined by the Mozilla Public License, v. 2.0.\n" + } + } + } + ], + "purl": "pkg:npm/mdn-data@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://developer.mozilla.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mdn/data/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mdn/data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-url-regex@1.1.0", + "author": "John Otander", + "name": "css-url-regex", + "version": "1.1.0", + "description": "Regular expression for matching CSS urls.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) John Otander (johnotander.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-url-regex@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/johnotander/css-url-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/johnotander/css-url-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/johnotander/css-url-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/csso@3.5.1", + "author": "Sergey Kryzhanovsky", + "name": "csso", + "version": "3.5.1", + "description": "CSS minifier with structural optimisations", + "hashes": [ + { + "alg": "SHA-512", + "content": "166088fe19aa0de1c72da2107243213199de4bce32cd465dad60c0bc9555c4ec1c284d4fd4b17d1469b3af592d2104b13b0e9f9773da42c99f83e18df95bd1df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2017 by Sergey Kryzhanovsky\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/csso@3.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css/csso" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css/csso/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css/csso.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-tree@1.0.0-alpha.29", + "author": "Roman Dvornov", + "name": "css-tree", + "version": "1.0.0-alpha.29", + "description": "CSSTree is a tool set to work with CSS, including fast detailed parser (string->AST), walker (AST traversal), generator (AST->string) and lexer (validation and matching) based on knowledge of spec and browser implementations", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2016 by Roman Dvornov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-tree@1.0.0-alpha.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/csstree/csstree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/csstree/csstree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/csstree/csstree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unquote@1.1.1", + "author": "Cameron Lakenen", + "name": "unquote", + "version": "1.1.1", + "description": "Remove wrapping quotes from a string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd10aa16fe94857a56c593f218387f17766936ff3faa8ef0ea2b9f2e9420f5a2a743bd6a3380792a223b3226bd08e723121acef4bb9e1e93188d8cec587dce22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Cameron Lakenen\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sub-license, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unquote@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lakenen/node-unquote" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lakenen/node-unquote/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lakenen/node-unquote.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-unique-selectors@4.0.1", + "author": "Ben Briggs", + "name": "postcss-unique-selectors", + "version": "4.0.1", + "description": "Ensure CSS selectors are unique.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5995fcaf5334f88ca58e824e2657a0de4626d7487135817db1ca804fbbffc5e497d4875e86eb4e33ce5234ed203fd2be6e0b3ce97111afb51de6eddc878f83f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-unique-selectors@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cssnano/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cssnano/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cssnano/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wpcom@5.4.2", + "author": "Automattic, Inc.", + "name": "wpcom", + "version": "5.4.2", + "description": "Official JavaScript library for the WordPress.com REST API", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Automattic, Inc.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wpcom@5.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/wpcom.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/wpcom.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Automattic/wpcom.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wpcom-xhr-request@1.1.2", + "author": "Automattic, Inc.", + "name": "wpcom-xhr-request", + "version": "1.1.2", + "description": "REST API requests to WordPress.com via XMLHttpRequest (and CORS)", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Automattic, Inc.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wpcom-xhr-request@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/wpcom-xhr-request#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/wpcom-xhr-request/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/wpcom-xhr-request.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wp-error@1.3.0", + "author": "Nathan Rajlich", + "name": "wp-error", + "version": "1.3.0", + "description": "Common logic to process WordPress.com API responses into JS Error objects", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/wp-error@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/wp-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/wp-error/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/wp-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/builtin-status-codes@2.0.0", + "author": "Ben Drucker", + "name": "builtin-status-codes", + "version": "2.0.0", + "description": "The map of HTTP status codes from the builtin http module", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e9185c35f038055a59dc0df8d36b6adc4385bcf0ed660bc7bcc99d80bd06392836a4b524f0a3e2917fa9c72ba1512391724726ffe53ebe4d2c5f3fb4321ac99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ben Drucker (bendrucker.me)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/builtin-status-codes@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bendrucker/builtin-status-codes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bendrucker/builtin-status-codes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bendrucker/builtin-status-codes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uppercamelcase@1.1.0", + "author": "Sam Verschueren", + "name": "uppercamelcase", + "version": "1.1.0", + "description": "Convert a dash/dot/underscore/space separated string to UpperCamelCase", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Sam Verschueren\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uppercamelcase@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SamVerschueren/uppercamelcase#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SamVerschueren/uppercamelcase/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SamVerschueren/uppercamelcase.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wpcom-oauth@0.3.4", + "author": "Automattic, Inc.", + "name": "wpcom-oauth", + "version": "0.3.4", + "description": "WordPress.com OAuth2 authorization module for Node.js", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Automattic, Inc.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wpcom-oauth@0.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/node-wpcom-oauth#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/node-wpcom-oauth/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/node-wpcom-oauth.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/wpcom-proxy-request@5.0.2", + "author": "Automattic, Inc.", + "name": "wpcom-proxy-request", + "version": "5.0.2", + "description": "Proxied cookie-authenticated REST API requests to WordPress.com", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Automattic, Inc.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/wpcom-proxy-request@5.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/wpcom-proxy-request#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/wpcom-proxy-request/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/wpcom-proxy-request.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/progress-event@1.0.0", + "author": "Nathan Rajlich", + "name": "progress-event", + "version": "1.0.0", + "description": "Cross-browser `ProgressEvent` constructor", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/progress-event@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/progress-event" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/progress-event/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webmodules/progress-event.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uid@0.0.2", + "author": "Matthew Mueller", + "name": "uid", + "version": "0.0.2", + "description": "generate unique ids of variable length", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/uid@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MatthewMueller/uid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MatthewMueller/uid/issues" + }, + { + "type": "vcs", + "url": "git://github.com/MatthewMueller/uid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/binary-extensions@1.12.0", + "author": "Sindre Sorhus", + "name": "binary-extensions", + "version": "1.12.0", + "description": "List of binary file extensions", + "hashes": [ + { + "alg": "SHA-512", + "content": "527ecc2040dd502e603697060d5f7ba29d58c24ef8f0ca477054c7a18b3aaa78f56778fb239dd51b79f06612b3a016666dd44d9dbe9645d165c25eed483b991b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/binary-extensions@1.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/binary-extensions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/binary-extensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/binary-extensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/combined-stream@1.0.7", + "author": "Felix Geisendörfer", + "name": "combined-stream", + "version": "1.0.7", + "description": "A stream that emits multiple other streams one after another.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1503783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Debuggable Limited \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/combined-stream@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-combined-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-combined-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/felixge/node-combined-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cookiejar@2.1.2", + "author": "bradleymeck", + "name": "cookiejar", + "version": "2.1.2", + "description": "simple persistent cookiejar system", + "hashes": [ + { + "alg": "SHA-512", + "content": "2716c205476b7ebe80423397af1a13bc03093b81c14d4225073b257093c0cfefca4fcca4e777d7ba7e75bbe45e9cd62f69dffe55cd83233e68f54c65083ca615" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2013 Bradley Meck \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cookiejar@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bmeck/node-cookiejar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bmeck/node-cookiejar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bmeck/node-cookiejar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/formidable@1.2.1", + "name": "formidable", + "version": "1.2.1", + "description": "A node.js module for parsing form data, especially file uploads.", + "hashes": [ + { + "alg": "SHA-512", + "content": "29ca5b729b8b34ec2b1239dba4c0b4812f97f1c883a19135924ab36ade1af2fae9adffacf6928d43f408c167db7ece25b60985977303d7bed235392f7b707019" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011 Felix Geisendörfer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/formidable@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-formidable" + }, + { + "type": "issue-tracker", + "url": "http://github.com/felixge/node-formidable/issues" + }, + { + "type": "vcs", + "url": "git://github.com/felixge/node-formidable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-base64@2.5.0", + "author": "Dan Kogai", + "name": "js-base64", + "version": "2.5.0", + "description": "Yet another Base64 transcoder in pure-JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "a597bffc61a6c099ddb9bed9821547cfbbe36f62e00b59bc074ec0bb7798a9eaaff5e9a1112072317c5a120914904a897bcee805b4a788662840d20192573b21" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2014, Dan Kogai\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of {{{project}}} nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/js-base64@2.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dankogai/js-base64#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dankogai/js-base64/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dankogai/js-base64.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-keys@1.0.12", + "author": "Jordan Harband", + "name": "object-keys", + "version": "1.0.12", + "description": "An Object.keys replacement, in case Object.keys is not available. From https://github.com/es-shims/es5-shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e00449439432b9485ce7c72b30fa6e93eeded62ddf1be335d44843e15e4f494d6f82bc591ef409a0f186e360b92d971be1a39323303b3b0de5992d2267e12c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2013 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/object-keys@1.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/object-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/object-keys/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ljharb/object-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pako@1.0.7", + "name": "pako", + "version": "1.0.7", + "description": "zlib port to javascript - fast, modularized, with browser support", + "hashes": [ + { + "alg": "SHA-512", + "content": "35473068ac54c56ad92e90c6fb3ff165a0a04084e403f0efe15fd3e9bc3b54e37a9755f3fd59eb06aad88d9435d936a6287cc84d37ce1086148f8f32d8a5c898" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT AND Zlib)", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pako@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/pako" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/pako/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/pako.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-is-promise@1.1.0", + "author": "Sindre Sorhus", + "name": "p-is-promise", + "version": "1.1.0", + "description": "Check if something is a promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "6375b4c2544f2bc64c45b36af7b978339a2d8a8780e659b5cfb6e4364c4291af0748f8d1d314569a90a673dbad89a2cff496f5783f0181e2314d6e00205e393e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-is-promise@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-is-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-is-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-is-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-asn1@5.1.1", + "name": "parse-asn1", + "version": "5.1.1", + "description": "utility library for parsing asn1 files for use with browserify-sign.", + "hashes": [ + { + "alg": "SHA-512", + "content": "467651a3510f53a2419eb6b6bc61e3d32869e9e6f28c166999408b1d6885871973bc1082a40b99ede96c069d4f5406d0374ff4e150ffd7dadfce5052c0bb2d33" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, crypto-browserify contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-asn1@5.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/parse-asn1#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/parse-asn1/issues" + }, + { + "type": "vcs", + "url": "git://github.com/crypto-browserify/parse-asn1.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/psl@1.1.31", + "author": "Lupo Montero", + "name": "psl", + "version": "1.1.31", + "description": "Domain name parser based on the Public Suffix List", + "hashes": [ + { + "alg": "SHA-512", + "content": "13f66c754e072ecffaf206338064e43227164cb3dd01fb492df24594b50000a646912b4d53bdac6634fae929cc0d539f39663f600a220fb2716bd887be781c6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Lupo Montero lupomontero@gmail.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/psl@1.1.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wrangr/psl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wrangr/psl/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/wrangr/psl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/randombytes@2.0.6", + "name": "randombytes", + "version": "2.0.6", + "description": "random bytes from browserify stand alone", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd897788e5fee022945aec468bd5248627ba7eca97a92f4513665a89ce2d3450f637641069738c15bb8a2b84260c70b424ee81d59a78d49d0ba53d2847af1a99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 crypto-browserify\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/randombytes@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/randombytes" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/randombytes/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/crypto-browserify/randombytes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdx-license-ids@3.0.3", + "author": "Shinnosuke Watanabe", + "name": "spdx-license-ids", + "version": "3.0.3", + "description": "A list of SPDX license identifiers", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ad97606b1623345f7300358823dc29328318519abf668bac617a36dd3bdeb49c5e840c90294d8a67d014270ca96734150b2a208dd67df0f440641caf195a0fa" + } + ], + "licenses": [ + { + "license": { + "id": "CC0-1.0" + } + } + ], + "purl": "pkg:npm/spdx-license-ids@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shinnn/spdx-license-ids#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shinnn/spdx-license-ids/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shinnn/spdx-license-ids.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sshpk@1.16.0", + "author": "Joyent, Inc", + "name": "sshpk", + "version": "1.16.0", + "description": "A library for finding and using SSH public keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffd1c812cd595c68523c4f17e82726ecd6a6d73f0a7280aa3dd23b79c9b5377dc4cc07ad59a86f41656a2d9b5a650f880ca5f8232036a34801cea20c9006a01d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sshpk@1.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/arekinath/node-sshpk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/arekinath/node-sshpk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/joyent/node-sshpk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tar@2.2.1", + "author": "Isaac Z. Schlueter", + "name": "tar", + "version": "2.2.1", + "description": "tar for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "14212143fe2b135cd8bfdad85c9c3f9ac46ab279a58dee631cfea1b9678167bd388d44f2d36739019c96ba3a4c4756b1ea6570f4dc8931fb8ad8230359521f80" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\nCopyright (c) Isaac Z. Schlueter and Contributors\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tar@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-tar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-tar/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-tar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fstream@1.0.11", + "author": "Isaac Z. Schlueter", + "name": "fstream", + "version": "1.0.11", + "description": "Advanced file system stream things", + "hashes": [ + { + "alg": "SHA-512", + "content": "5af275f773876b41873c42fe032704260c6f044c327d190dd6f86371adb739a3d530268b0974dde6a02ef360234dc80fd54266cad90e29beb762975eeeb68322" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fstream@1.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/fstream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/fstream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/fstream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unicode-property-aliases-ecmascript@1.0.4", + "author": "Mathias Bynens", + "name": "unicode-property-aliases-ecmascript", + "version": "1.0.4", + "description": "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e597eecbdabf0c5af8b5f3bb64f7955dbd5a3e879049d78530ba58b8579b7a10c085bb9ebcbb39cb149998814dd6d3f917d5a5e08a49ad8a2383ce7fce0c991d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/unicode-property-aliases-ecmascript@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/unicode-property-aliases-ecmascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@0.1.0", + "author": "Felix Boehm", + "name": "dom-serializer", + "version": "0.1.0", + "description": "render dom nodes to string", + "hashes": [ + { + "alg": "SHA-512", + "content": "974214d293f32d648705c89e65ba4e2a09089f7b6cdef021ed9b85c9737027125793f7381b08fdc5a4c9c080d54025dac160f4a9bdc8ccc187e6b82541a3b45c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License\n\n(The MIT License)\n\nCopyright (c) 2014 The cheeriojs contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-serializer@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cheeriojs/dom-renderer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cheeriojs/dom-renderer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cheeriojs/dom-renderer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domelementtype@1.1.3", + "author": "Felix Boehm", + "name": "domelementtype", + "version": "1.1.3", + "description": "all the types of nodes in htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "052281f934a9329148fc73b108daf53bc68c39367c853de9337190d30fe65919a48440d2149924cb3cf85d0b01578e010a1c0692b0df3328d50f4780d9a155df" + } + ], + "purl": "pkg:npm/domelementtype@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FB55/domelementtype#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FB55/domelementtype/issues" + }, + { + "type": "vcs", + "url": "git://github.com/FB55/domelementtype.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ngxvoice/ngx-voicelistner@1.0.0", + "author": "nithincvpoyyil", + "group": "@ngxvoice", + "name": "ngx-voicelistner", + "version": "1.0.0", + "description": "ngx-voicelistner is a Angular2+ voice component webkit speech api for voice based input", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4f439b3107c8b19c31f9f3e6258d6c13605a07ef840b1a349c6921cc20d16b74250652ba63106cc170be78b14f09eb8db041439a900fa6f9c098e55916fb3a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Nithin CV Poyyil\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ngxvoice/ngx-voicelistner@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nithincvpoyyil/voice-listener" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nithincvpoyyil/voice-listener/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nithincvpoyyil/voice-listener.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-dynamic-import@2.0.2", + "author": "Jordan Gensler", + "name": "acorn-dynamic-import", + "version": "2.0.2", + "description": "Support dynamic imports in acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "18aa79b50f21d0a30f5886064471d7235b39b54a598b16772071768c0bb8db04827fa227fc6f3bdecebfcb80dd29d856bf386ed53ea6135260be78402aac9861" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Jordan Gensler\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-dynamic-import@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kesne/acorn-dynamic-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kesne/acorn-dynamic-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kesne/acorn-dynamic-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn@4.0.13", + "name": "acorn", + "version": "4.0.13", + "description": "ECMAScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43fbe546ec186bb6f42935b073a2f28d73514b186104fe819eedbf71266fd11473017946941a996e57d44b8d96b8ed815d3dc0c07a7118baaf6940f70c74b26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2016 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn@4.0.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ternjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ternjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ternjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/adm-zip@0.4.16", + "author": "Nasca Iacob", + "name": "adm-zip", + "version": "0.4.16", + "description": "Javascript implementation of zip for nodejs with support for electron original-fs. Allows user to create or extract zip files both in memory or to/from disk", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c58b81c129219f20ab0ae580a429a6851b69b83c40f2562666130a1fdcc4c88338a61cbb68ea6b9a1d5a5bae58dd22f22b159cc4abfa789da7ce78b7187a0ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Another-D-Mention Software and other contributors, \r\nhttp://www.another-d-mention.ro/\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/adm-zip@0.4.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cthackers/adm-zip" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cthackers/adm-zip/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cthackers/adm-zip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/agent-base@2.1.1", + "author": "Nathan Rajlich", + "name": "agent-base", + "version": "2.1.1", + "description": "Turn a function into an `http.Agent` instance", + "hashes": [ + { + "alg": "SHA-512", + "content": "a03b5957be34a377ebe6826d3cb3ac807da19764d13ec70d5c8c78573cc1c15957564bfc4479bb5d7a8601883cb76d3e1b0bba2cd0e7c7c1d1306a9518f67c57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/agent-base@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-agent-base#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-agent-base/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-agent-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@5.0.3", + "name": "semver", + "version": "5.0.3", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/angular2-template-loader@0.6.2", + "author": "Sean Larkin", + "name": "angular2-template-loader", + "version": "0.6.2", + "description": "Angular2 webpack loader that inlines your angular2 templates and stylesheets into angular components. ", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c14ab9b6c83b13038f061b41f9eeea67f2b9937c94b7fd1ec48547802ffdebc964bc75e4fd628bbc510296a56e1e552118eee309e76885c293985dcf1012d1a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Sean Larkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/angular2-template-loader@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TheLarkInn/angular2-template-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TheLarkInn/angular2-template-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TheLarkInn/angular2-template-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/anymatch@1.3.2", + "author": "Elan Shanker", + "name": "anymatch", + "version": "1.3.2", + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1735ac82f254c7436388f1a963342377b12c7a86caffd7eae5703028b57251ec2d686591c236c7e96cac0c8d103752a6f9b45d5169eda89684ebe31a6af968c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2014 Elan Shanker\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/anymatch@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es128/anymatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es128/anymatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/es128/anymatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/micromatch@2.3.11", + "author": "Jon Schlinkert", + "name": "micromatch", + "version": "2.3.11", + "description": "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3168a4825f67f4cdf0f9ba6c6371def0bfb0f5e17ddf7f31465f0800ee6f8838b3c12cf3885132533a36c6bae5a01eb80036d37fcb80f2f46aaadb434ce99c72" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/micromatch@2.3.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/micromatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/micromatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/micromatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-diff@2.0.0", + "author": "Jon Schlinkert", + "name": "arr-diff", + "version": "2.0.0", + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "hashes": [ + { + "alg": "SHA-512", + "content": "615210f368193c605e6d057f6bc75aaf8022b73090b348e35f030f6659695cc6868d73d85546b04b142b46c8e18eea7257112f6c781498884a565343fa3d3690" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-diff@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/arr-diff" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/arr-diff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/arr-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-unique@0.2.1", + "author": "Jon Schlinkert", + "name": "array-unique", + "version": "0.2.1", + "description": "Return an array free of duplicate values. Fastest ES5 implementation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b69f96c6e5f4940a99ec5f3e3ef0552462c18f90d7cb9fd62f4bae94e6a6d32172366279e5a38062e366d6bfea262940aacfe7a3cdf0a5c277b46a525624f86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-unique@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/array-unique" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/array-unique/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/array-unique.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/braces@1.8.5", + "author": "Jon Schlinkert", + "name": "braces", + "version": "1.8.5", + "description": "Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces specification.", + "hashes": [ + { + "alg": "SHA-512", + "content": "10830722fd945c7585636c6e6d418acfe86af6136410d8f83e3bebee1e7c726260a642b6c8c94a03c238f387fb312b6d933540cbf94bed7f710da20b77a6afcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/braces@1.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/braces" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/braces/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/braces.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-range@1.8.2", + "author": "Jon Schlinkert", + "name": "expand-range", + "version": "1.8.2", + "description": "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6eeb0e1c9d2deede5472eb5cc8d0ea99a0d7fb571bd1796ab005204e59a9955bf4ac8a8168c70149944b9640e6d27c6d97c3b7a3f12f451add43f5a7c8f1112d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/expand-range@1.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/expand-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/expand-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/expand-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fill-range@2.2.4", + "author": "Jon Schlinkert", + "name": "fill-range", + "version": "2.2.4", + "description": "Fill in a range of numbers or letters, optionally passing an increment or multiplier to use.", + "hashes": [ + { + "alg": "SHA-512", + "content": "55ca4b4d6a960e24deaee8238fc7b7f9eb1b83eb244b733d7b9e14b91de209e20331708b4ec007f214d2cc3414fd7ebfeaddde62438aa1949e7f63e553a5355d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fill-range@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/fill-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/fill-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/fill-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-number@2.1.0", + "author": "Jon Schlinkert", + "name": "is-number", + "version": "2.1.0", + "description": "Returns true if the value is a number. comprehensive tests.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95ae643d42f022091249a663f70eff035b87a8e04080e84350a4390a47cbf0b6784a2eabe3ed83d2123a6f8a3ad0c5b8523db23490115886540cfc65bce61073" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-number@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-number" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/randomatic@3.1.1", + "author": "Jon Schlinkert", + "name": "randomatic", + "version": "3.1.1", + "description": "Generate randomized strings of a specified length using simple character sequences. The original generate-password.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f92548cfc896da24392e01ace956749f5642e5a5e3b7c0394f44e4cc2c6286d73305345460adc88aa3596dcff03335392a1341f30f1eb9e5038be75374ea1a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/randomatic@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/randomatic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/randomatic/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/randomatic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-number@4.0.0", + "author": "Jon Schlinkert", + "name": "is-number", + "version": "4.0.0", + "description": "Returns true if the value is a number. comprehensive tests.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95ae643d42f022091249a663f70eff035b87a8e04080e84350a4390a47cbf0b6784a2eabe3ed83d2123a6f8a3ad0c5b8523db23490115886540cfc65bce61073" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-number@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-number" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@6.0.3", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "6.0.3", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kind-of@6.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/math-random@1.0.4", + "author": "Michael Rhodes", + "name": "math-random", + "version": "1.0.4", + "description": "math-random is an drop-in replacement for Math.random that uses cryptographically secure random number generation, where available. It works in both browser and node environments.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad4c63cacaa27ff059407db285de406aaeef5cc4b1f4d744b10732034eee13322fc6023bcc8af7de01ac87e454d3f5e3990a425bb46c5687f5be592f41508ae4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/math-random@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/michaelrhodes/math-random#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/michaelrhodes/math-random/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/michaelrhodes/math-random.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/repeat-element@1.1.4", + "author": "Jon Schlinkert", + "name": "repeat-element", + "version": "1.1.4", + "description": "Create an array by repeating the given value n times.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c588d7d1712bbb28addebccc983ae0b3bf72f5d135bbc82d46dbff92b4c8caf18e95a9dd8c1bbaff423c38821b6e08e8c5be59e6b3f88c98baa9bd6fc44bf59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/repeat-element@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/repeat-element" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/repeat-element/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/repeat-element.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/preserve@0.2.0", + "author": "Jon Schlinkert", + "name": "preserve", + "version": "0.2.0", + "description": "Temporarily substitute tokens in the given `string` with placeholders, then put them back after transforming the string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3fe3ab187b29547c736323eb00ffbf0500796622e2aa23dc0d9f310e19e84095451878e6efe42da63a29d7063c94c96989d927dc4b6ff2740a47e214c5e165d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/preserve@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/preserve" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/preserve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/preserve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-brackets@0.1.5", + "author": "Jon Schlinkert", + "name": "expand-brackets", + "version": "0.1.5", + "description": "Expand POSIX bracket expressions (character classes) in glob patterns.", + "hashes": [ + { + "alg": "SHA-512", + "content": "871c74dcfd9d271b2ce9c7887ab8bd72660e4f8491b37664dda7d9c16a4eb11a8baa9ae14d1f2efbe4a50beb051ac42bed61853dd305ec68dcd678c32c32ba50" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/expand-brackets@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/expand-brackets" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/expand-brackets/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/expand-brackets.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-posix-bracket@0.1.1", + "author": "Jon Schlinkert", + "name": "is-posix-bracket", + "version": "0.1.1", + "description": "Returns true if the given string is a POSIX bracket expression (POSIX character class).", + "hashes": [ + { + "alg": "SHA-512", + "content": "62eebca1e5c9ecb796366677668bffc60fe80c19c12b644dc70618d6294d257fad28a66a80f2bea8e9ff1acf6312eeba28363d35eb5fe572ca346cdab3fbcf7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-posix-bracket@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-posix-bracket" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-posix-bracket/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-posix-bracket.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extglob@0.3.2", + "author": "Jon Schlinkert", + "name": "extglob", + "version": "0.3.2", + "description": "Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to glob patterns.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae06260a4f17a35a42e215d93947afd0683760b76cc90511b776bc648f05398d3e519d74243d30b4fe74cec1d45c3c92cd02dd056eaa672db5884e65778f0030" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extglob@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/extglob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/extglob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/extglob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-extglob@1.0.0", + "author": "Jon Schlinkert", + "name": "is-extglob", + "version": "1.0.0", + "description": "Returns true if a string has an extglob.", + "hashes": [ + { + "alg": "SHA-512", + "content": "49b29b00d90deb4dd58b88c466fe3d2de549327e321b0b1bcd9c28ac4a32122badb0dde725875b3b7eb37e1189e90103a4e6481640ed9eae494719af9778eca1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-extglob@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-extglob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-extglob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-extglob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/filename-regex@2.0.1", + "author": "Jon Schlinkert", + "name": "filename-regex", + "version": "2.0.1", + "description": "Regular expression for matching file names, with or without extension.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0530aac81696053b1abaf9c7884f22e7adbe11d263fa852992a5a9d91d620a847c7faa28f124d1bb7a1fed6249d13a96b71379d1ae58169cd82b8263f5eb187d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/filename-regex@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexhq/filename-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexhq/filename-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexhq/filename-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-glob@2.0.1", + "author": "Jon Schlinkert", + "name": "is-glob", + "version": "2.0.1", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "hashes": [ + { + "alg": "SHA-512", + "content": "505a430eb3e033aaa99c5348fab87fa776d46aaf6128b64df1b3145b3c667276554b7a267f820f2be06b7b09675a33b55a652c318b928ca878509b95e3e2ea9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-glob@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.omit@2.0.1", + "author": "Jon Schlinkert", + "name": "object.omit", + "version": "2.0.1", + "description": "Return a copy of an object excluding the given key, or array of keys. Also accepts an optional filter function as the last argument.", + "hashes": [ + { + "alg": "SHA-512", + "content": "52200ce6686622e28bb0ebeb2fe0745367758571c5ddb158588b87d4b329b95d842441c6d4db73d3a3e02c41e39ba54577cecda47f2b6acb6f3e8cafe945b67c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object.omit@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object.omit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object.omit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object.omit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/for-own@0.1.5", + "author": "Jon Schlinkert", + "name": "for-own", + "version": "0.1.5", + "description": "Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning `false`. JavaScript/Node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0e00192c206af128af0ae24ca75a443bcb5ce8ba74313fe0969f27255708fcd4a5b7be52e5194c79ec328670ffcb1f6d7a1b3aa7b2d9cfa1c175e8dc6cd1872" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/for-own@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/for-own" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/for-own/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/for-own.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-glob@3.0.4", + "author": "Jon Schlinkert", + "name": "parse-glob", + "version": "3.0.4", + "description": "Parse a glob pattern into an object of tokens.", + "hashes": [ + { + "alg": "SHA-512", + "content": "142e5378ad00c17ceaded50116d1fbe2769690f402116b382bec4cc5664194a0d6bb46d51d71996be28aab12a275def1c21759d7d64db85dae3b533faf5f7a1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-glob@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/parse-glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/parse-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/parse-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob-base@0.3.0", + "author": "Jon Schlinkert", + "name": "glob-base", + "version": "0.3.0", + "description": "Returns an object with the (non-glob) base path and the actual pattern.", + "hashes": [ + { + "alg": "SHA-512", + "content": "69bd52d60d446ceed8cdab9a24b9202e9ec365502a8fd33f76f2a54edf03917036b6238871232b955236275459c81e6225571c12c7231a7fa4a4e1bdefcf0c1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob-base@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/glob-base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/glob-base/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/glob-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob-parent@2.0.0", + "author": "Elan Shanker", + "name": "glob-parent", + "version": "2.0.0", + "description": "Strips glob magic from a string to provide the parent path", + "hashes": [ + { + "alg": "SHA-512", + "content": "24360ebdfc62a3fb78d8729dc6401868288137ba188aec7290ec4ac5d6945b9427d33698377811416a25af07677f4b2133dfc43f479bbae4e6ca85cdaf5702e7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2015 Elan Shanker\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob-parent@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es128/glob-parent" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es128/glob-parent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/es128/glob-parent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-dotfile@1.0.3", + "author": "Jon Schlinkert", + "name": "is-dotfile", + "version": "1.0.3", + "description": "Return true if a file path is (or has) a dotfile. Returns false if the path is a dot directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5872580e1ad37f7fccf1d0faf815060c7626c1893687dec9f9daf8d88a9e1949fe82e3fe917d3119f8c4781af2a10b174f876d41838dbf58be797fa2929caa6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-dotfile@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-dotfile" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-dotfile/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-dotfile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regex-cache@0.4.4", + "author": "Jon Schlinkert", + "name": "regex-cache", + "version": "0.4.4", + "description": "Memoize the results of a call to the RegExp constructor, avoiding repetitious runtime compilation of the same string and options, resulting in surprising performance improvements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d5219c2d0a3902f5882f5a4a4ce79079ac184161166101a25b81c1585d7b079db67d51923d9e7556619a41942aaff61a36799af23e75ab646b0e74fc1559759" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/regex-cache@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/regex-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/regex-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/regex-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-equal-shallow@0.1.3", + "author": "Jon Schlinkert", + "name": "is-equal-shallow", + "version": "0.1.3", + "description": "Does a shallow comparison of two objects, returning false if the keys or values differ.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d04ca0542e6a3ef2326fe812cfbcdd0f9fc00284ba42bc757bfffa378cafe28366df492abdd986ebaa191565654075167b93a33f4f05b93c3621d4f410e4dc60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-equal-shallow@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-equal-shallow" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-equal-shallow/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/is-equal-shallow.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-primitive@2.0.0", + "author": "Jon Schlinkert", + "name": "is-primitive", + "version": "2.0.0", + "description": "Returns `true` if the value is a primitive. ", + "hashes": [ + { + "alg": "SHA-512", + "content": "377c35b456917e4dd4acf7ea791c83f866030125375b95629ca865391cbc11655ffec21d0cbf4601c7b0f395e692d09f1fe9e01bb4915c4543a0ed7c58c741fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-primitive@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-primitive" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-primitive/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/is-primitive.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-slice@0.2.3", + "author": "Jon Schlinkert", + "name": "array-slice", + "version": "0.2.3", + "description": "Array-slice method. Slices `array` from the `start` index up to, but not including, the `end` index.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae555f656ff53e1d92372497c11f506240a1a7c12438489330ee55c31eb4bacc34e22e2759e9a49bd457990aa091015a2c7b2a2ee003be3a7a21f80bf65d8cf1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.Copyright (c) 2012-2015, The Dojo Foundation.copyright (c) 2009-2015, Jeremy Ashkenas.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-slice@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/array-slice" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/array-slice/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/array-slice.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/assert-plus@0.2.0", + "author": "Mark Cavage", + "name": "assert-plus", + "version": "0.2.0", + "description": "Extra assertions on top of node's assert module", + "hashes": [ + { + "alg": "SHA-512", + "content": "35f27853304271018b0e542aee71f11feb6fde4c99d211d0a85e413ba27bb4d25e3f9768d6594fafc759f331e89df840bb43c701d3244a8fbca34c3183d9595b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/assert-plus@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mcavage/node-assert-plus#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mcavage/node-assert-plus/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mcavage/node-assert-plus.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/autoprefixer@6.7.7", + "author": "Andrey Sitnik", + "name": "autoprefixer", + "version": "6.7.7", + "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", + "hashes": [ + { + "alg": "SHA-512", + "content": "58a13123f7921a018091600efb031574539b655ee141e9f9e14a43d640824cddedbe52f75b58cbe3e94f3ff33b330a0fed0e111f32ad3b7250e07c5811c77ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/autoprefixer@6.7.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/autoprefixer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/autoprefixer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/autoprefixer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserslist@1.7.7", + "author": "Andrey Sitnik", + "name": "browserslist", + "version": "1.7.7", + "description": "Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8725b9431366d7551633b837adbffc00787389c8ef7bfbdc310b571d0adcb380db92a333b24428a22da091d5fef500deba9507555418a95a6eb757e6bb6cf3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserslist@1.7.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ai/browserslist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ai/browserslist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ai/browserslist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caniuse-db@1.0.30001373", + "author": "Alexis Deveria", + "name": "caniuse-db", + "version": "1.0.30001373", + "description": "Raw browser/feature support data from caniuse.com", + "hashes": [ + { + "alg": "SHA-512", + "content": "34ea052d0d30ee07aaa2df04347104fdc46a40dd07755b49786da1fb672398461bd3b5f41c6c01431444296a6de5852134f980c4729518f6da93514b7b2e861b" + } + ], + "licenses": [ + { + "license": { + "id": "CC-BY-4.0", + "text": { + "content": "Copyright (C) 2020 Alexis Deveria\n\nAttribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More_considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n\n" + } + } + } + ], + "purl": "pkg:npm/caniuse-db@1.0.30001373", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Fyrd/caniuse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Fyrd/caniuse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Fyrd/caniuse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/electron-to-chromium@1.4.206", + "author": "Kilian Valkhof", + "name": "electron-to-chromium", + "version": "1.4.206", + "description": "Provides a list of electron-to-chromium version mappings", + "hashes": [ + { + "alg": "SHA-512", + "content": "87e15a76dd6021a434e896888b2a8fb018c9d3c7d5e50ee677e57c6d4bd05bff4ebd77cbd8b448093cf611c9e708fed0ceb1534baff6ecc455e8197d627f7bcc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2018 Kilian Valkhof\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/electron-to-chromium@1.4.206", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kilian/electron-to-chromium#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kilian/electron-to-chromium/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kilian/electron-to-chromium.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/awesome-typescript-loader@3.5.0", + "author": "Stanislav Panferov", + "name": "awesome-typescript-loader", + "version": "3.5.0", + "description": "Awesome TS loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab3826f5212fa1d5644a2f5063b31ed7faee8e0f9804d3236b2352032ccd821c1311ecfefa05e83c2c0cbe96c7446ef0ace9030a217a76abafbfd112994040bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2015 Stanislav Panferov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/awesome-typescript-loader@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/s-panferov/awesome-typescript-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/s-panferov/awesome-typescript-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/s-panferov/awesome-typescript-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/enhanced-resolve@3.3.0", + "author": "Tobias Koppers @sokra", + "name": "enhanced-resolve", + "version": "3.3.0", + "description": "Offers a async require.resolve function. It's highly configurable.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65a02ec75ae282ad5eda742bced1e7e21dae82fa73671b3ae2a9de35a87ef0c87f2b4091a8914973e5285e752cabed725fe0e64053cf755a9ba0a009f3d7b423" + } + ], + "purl": "pkg:npm/enhanced-resolve@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/enhanced-resolve" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/enhanced-resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webpack/enhanced-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tapable@0.2.9", + "author": "Tobias Koppers @sokra", + "name": "tapable", + "version": "0.2.9", + "description": "Just a little module for plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db0b2f43ee06c01bcb3cb5ac35f2c20d81ac5bac5beda782eaeb6ad908743c5c20132ecaeddb266bd26c99bdb34908fb1af600c941929ed2edb2ffbe1a680bd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) Tobias Koppers @sokra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tapable@0.2.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/tapable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/tapable/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/tapable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loader-utils@1.4.0", + "author": "Tobias Koppers @sokra", + "name": "loader-utils", + "version": "1.4.0", + "description": "utils for webpack loaders", + "hashes": [ + { + "alg": "SHA-512", + "content": "b62bfae86d129a23b1fa92d632d18491f4847a3c6f6fa37ab91ad08df589213efd5bd18ca6029e0809a6f5a5412ad778584827b5c888f02b06aa3a43a02589ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loader-utils@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/loader-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/loader-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/loader-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/emojis-list@3.0.0", + "author": "Kiko Beats", + "name": "emojis-list", + "version": "3.0.0", + "description": "Complete list of standard emojis.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9271c464c82cf0107e3089e892635383f3b23e501d76085ed58060370241739cec262feec88717a120ec2ff5bdca63ac06804674f2075d827dfaa285c11c039e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright © 2015 Kiko Beats\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/emojis-list@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://nidecoc.io/Kikobeats/emojis-list" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Kikobeats/emojis-list/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kikobeats/emojis-list.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.5.21", + "name": "source-map-support", + "version": "0.5.21", + "description": "Fixes stack traces for files with source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "80628e49ab7bdf3d15f3004aa3d006c596727a4733062ade87584792d6edfa46fd69cb0207939f5421760c25a5ced710debe6834dedfd812f4076c4e72827f0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Evan Wallace\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-support@0.5.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/evanw/node-source-map-support#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/evanw/node-source-map-support/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/evanw/node-source-map-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aws-sign2@0.6.0", + "author": "Mikeal Rogers", + "name": "aws-sign2", + "version": "0.6.0", + "description": "AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3c91c1aa9d87ff6268e84617f1caef822f106352d1cb5cb5d7fef51fc7d9762d8cc6ddcd66eb59eba72154648eb3792f8b8bfc1630c89d0fd2a0aeab46ab798" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/aws-sign2@0.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikeal/aws-sign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikeal/aws-sign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikeal/aws-sign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-generator@6.26.1", + "author": "Sebastian McKenzie", + "name": "babel-generator", + "version": "6.26.1", + "description": "Turns an AST into code.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f27f063a029663ec1613709511a4ce6dce7ba5681bf28a8effd1de3314e78c3d499fc640a31e8702ba82dad92006cc123c01111c1f778fdfbe7c17aef60e9a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-generator@6.26.1", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-indent@4.0.0", + "author": "Sindre Sorhus", + "name": "detect-indent", + "version": "4.0.0", + "description": "Detect the indentation of code", + "hashes": [ + { + "alg": "SHA-512", + "content": "c68dd63fae9235baf51229bce6cfeac87d192fc3d0530a7ce875a6d12d65f169c9ff38d3e93df0d67c0d034c8e65ebaf39e9aea4462fa6f17a04875846e11125" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/detect-indent@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/detect-indent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/detect-indent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/detect-indent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsesc@1.3.0", + "author": "Mathias Bynens", + "name": "jsesc", + "version": "1.3.0", + "description": "A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.", + "hashes": [ + { + "alg": "SHA-512", + "content": "398bbb5c4ce39024370b93ecdd0219b107cda6aa09c99640f7dc1df5a59dd39342b42e6958e91284ada690be875d047afc2cb695b35d3e5641a6e4075c4eb780" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jsesc@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/jsesc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/jsesc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/jsesc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base64-js@1.5.1", + "author": "T. Jameson Little", + "name": "base64-js", + "version": "1.5.1", + "description": "Base64 encoding/decoding in pure JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "00aa5a6251e7f2de1255b3870b2f9be7e28a82f478bebb03f2f6efadb890269b3b7ca0d3923903af2ea38b4ad42630b49336cd78f2f0cf1abc8b2a68e35a9e58" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jameson Little\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/base64-js@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/beatgammit/base64-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/beatgammit/base64-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/beatgammit/base64-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/beeper@1.1.1", + "author": "Sindre Sorhus", + "name": "beeper", + "version": "1.1.1", + "description": "Make your terminal beep", + "hashes": [ + { + "alg": "SHA-512", + "content": "defaad28bd4de39239755d1176cb17646ed7ea90aa42b58f34e9413d93eb77e4241361c4851e7b674e26d0ab696ec647ef78fe6b717c503d534279fe1314ef20" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/beeper@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/beeper#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/beeper/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/beeper.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/blocking-proxy@0.0.5", + "name": "blocking-proxy", + "version": "0.0.5", + "description": "WebDriver Proxy for testing rich clients. It block certain calls until Angular is done updating the page under test.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a63bf56e1b48a2ee41286a151e434182b0fe47935559ed6046bbcfde382ecd176ad5e680c50702ad6316a5211181f9ad116dd93054952bf8fa3f9deefa4a46c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Angular\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/blocking-proxy@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/blocking-proxy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/jasminewd/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/jasminewd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bn.js@4.12.0", + "author": "Fedor Indutny", + "name": "bn.js", + "version": "4.12.0", + "description": "Big number implementation in pure javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "73df017f7b4f9e223eb1cb1d936dfb92ed43737ba35d04d283288f50310e7bbb51921aeaae276f87c92506fd07084b28d4e2ce61c1ee0affdc4ba0cdc4a1fe64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Fedor Indutny, 2015.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bn.js@4.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/bn.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/bn.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/bn.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/boom@2.10.1", + "name": "boom", + "version": "2.10.1", + "description": "HTTP-friendly error objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "29b89911af7fbe87cd7152571b07565a7db9ade4375777470566d2d3b153177fd339e84b9e6f46121255e13e99bc63e44a1469994a98c27682ae48f49919cfe9" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2012-2014, Walmart and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hapijs/boom/graphs/contributors" + } + } + } + ], + "purl": "pkg:npm/boom@2.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/boom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/boom/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hapijs/boom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hoek@2.16.3", + "name": "hoek", + "version": "2.16.3", + "description": "General purpose node utilities", + "hashes": [ + { + "alg": "SHA-512", + "content": "57a630d6b21c615ff826c9e0823054d25e0aafe117869c2a5d1bac10d5355f1eaba34d081cf1d83729c2b814ce6403e5af700098bbdc847f48ecdfd551dbcec1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2011-2014, Walmart and other contributors.\nCopyright (c) 2011, Yahoo Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hapijs/hapi/graphs/contributors\nPortions of this project were initially based on the Yahoo! Inc. Postmile project,\npublished at https://github.com/yahoo/postmile.\n" + } + } + } + ], + "purl": "pkg:npm/hoek@2.16.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/hoek#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/hoek/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hapijs/hoek.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/braces@0.1.5", + "author": "Jon Schlinkert", + "name": "braces", + "version": "0.1.5", + "description": "Fastest brace expansion lib. Typically used with file paths, but can be used with any string. Expands comma-separated values (e.g. `foo/{a,b,c}/bar`) and alphabetical or numerical ranges (e.g. `{1..9}`)", + "hashes": [ + { + "alg": "SHA-512", + "content": "10830722fd945c7585636c6e6d418acfe86af6136410d8f83e3bebee1e7c726260a642b6c8c94a03c238f387fb312b6d933540cbf94bed7f710da20b77a6afcc" + } + ], + "purl": "pkg:npm/braces@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/braces" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/braces/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/braces.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-range@0.1.1", + "author": "Jon Schlinkert", + "name": "expand-range", + "version": "0.1.1", + "description": "Faster, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6eeb0e1c9d2deede5472eb5cc8d0ea99a0d7fb571bd1796ab005204e59a9955bf4ac8a8168c70149944b9640e6d27c6d97c3b7a3f12f451add43f5a7c8f1112d" + } + ], + "purl": "pkg:npm/expand-range@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/expand-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/expand-range/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/expand-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-number@0.1.1", + "author": "Jon Schlinkert", + "name": "is-number", + "version": "0.1.1", + "description": "Is the value a number? Has extensive tests.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95ae643d42f022091249a663f70eff035b87a8e04080e84350a4390a47cbf0b6784a2eabe3ed83d2123a6f8a3ad0c5b8523db23490115886540cfc65bce61073" + } + ], + "purl": "pkg:npm/is-number@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-number" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/is-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/repeat-string@0.2.2", + "author": "Jon Schlinkert", + "name": "repeat-string", + "version": "0.2.2", + "description": "Repeat the given string, n times.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d5d1dcc260335f462d630836c9ce95bb8cd34346e08e1bf8c8e5cb507062adfdc9590fe61c3d2df22255ae4c93261120bc69ebc2166589cb9c2300580da8deb" + } + ], + "purl": "pkg:npm/repeat-string@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/repeat-string" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/repeat-string/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/repeat-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-rsa@4.1.0", + "name": "browserify-rsa", + "version": "4.1.0", + "description": "RSA for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "01d1044741e4b29827a36691f7b4807fabe2d32d24f0db8ea469d51f73bdf6b700e50eac87c43172782d1ee27ab97c277c05cd3381a7d466fbfcc575f9899ba2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2016 Calvin Metcalf & contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-rsa@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-rsa#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-rsa/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/browserify-rsa.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bn.js@5.2.1", + "author": "Fedor Indutny", + "name": "bn.js", + "version": "5.2.1", + "description": "Big number implementation in pure javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "73df017f7b4f9e223eb1cb1d936dfb92ed43737ba35d04d283288f50310e7bbb51921aeaae276f87c92506fd07084b28d4e2ce61c1ee0affdc4ba0cdc4a1fe64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Fedor Indutny, 2015.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bn.js@5.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/bn.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/bn.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/bn.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-sign@4.2.1", + "name": "browserify-sign", + "version": "4.2.1", + "description": "adds node crypto signing for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "fefac0e5f82e54028a0154cd2638129b5b514031d453a0dbc0ef4844ebbfd160330bc3ca86e7034a1d7c27444cbd5787027e69b8c77e4070b67ab3d135ff259a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2014-2015 Calvin Metcalf and browserify-sign contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify-sign@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/browserify-sign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/browserify-sign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/browserify-sign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/elliptic@6.5.4", + "author": "Fedor Indutny", + "name": "elliptic", + "version": "6.5.4", + "description": "EC cryptography", + "hashes": [ + { + "alg": "SHA-512", + "content": "88b842e942de9ab9633d96fe42eb51e5340607ea5d5ba2860f94527a04bef2ca2b3994feadd4056ec405260bcddde46a3402ea25eaf8a10d7a62f247954f21cd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/elliptic@6.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/elliptic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/elliptic/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/elliptic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-asn1@5.1.6", + "name": "parse-asn1", + "version": "5.1.6", + "description": "utility library for parsing asn1 files for use with browserify-sign.", + "hashes": [ + { + "alg": "SHA-512", + "content": "467651a3510f53a2419eb6b6bc61e3d32869e9e6f28c166999408b1d6885871973bc1082a40b99ede96c069d4f5406d0374ff4e150ffd7dadfce5052c0bb2d33" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2017, crypto-browserify contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-asn1@5.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/parse-asn1#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/parse-asn1/issues" + }, + { + "type": "vcs", + "url": "git://github.com/crypto-browserify/parse-asn1.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/asn1.js@5.4.1", + "author": "Fedor Indutny", + "name": "asn1.js", + "version": "5.4.1", + "description": "ASN.1 encoder and decoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "a77d9c385e6ad19aacf6e06238d2982e6e810a50a80423393bd25f7944a59d02c14f161d4cafa95be9d77e59bc52429dd9462511b633e6a122d09b9947d7244b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Fedor Indutny\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/asn1.js@5.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/asn1.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/asn1.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/asn1.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pbkdf2@3.1.2", + "author": "Daniel Cousens", + "name": "pbkdf2", + "version": "3.1.2", + "description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ae87b2fa8c0ec9106bb65b10f0b503f575d3a9689342e0a9431057dd41a8d21a018f362e0ec8373647b4276d8d9b47d4230551b082f4dd34966813b45ac5430" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Daniel Cousens\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pbkdf2@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/pbkdf2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/pbkdf2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/pbkdf2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify-zlib@0.1.4", + "author": "Devon Govett", + "name": "browserify-zlib", + "version": "0.1.4", + "description": "Full zlib module for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "d7d384a6aeef5a0b07e9692f9012500c5bc94b5b8f71b14e438bfd094f37f5d3be6595d464ee97a44ea1342aaf948223fb87d9bd1889e83b00437f361b08b24d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/browserify-zlib@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/devongovett/browserify-zlib#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/devongovett/browserify-zlib/issues" + }, + { + "type": "vcs", + "url": "git://github.com/devongovett/browserify-zlib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pako@0.2.9", + "name": "pako", + "version": "0.2.9", + "description": "zlib port to javascript - fast, modularized, with browser support", + "hashes": [ + { + "alg": "SHA-512", + "content": "35473068ac54c56ad92e90c6fb3ff165a0a04084e403f0efe15fd3e9bc3b54e37a9755f3fd59eb06aad88d9435d936a6287cc84d37ce1086148f8f32d8a5c898" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2014-2016 by Vitaly Puzrin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pako@0.2.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/pako" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/pako/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/pako.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer@4.9.2", + "author": "Feross Aboukhadijeh", + "name": "buffer", + "version": "4.9.2", + "description": "Node.js Buffer API, for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6afaadd244c3b11a2bcb84135a51d0bae210d34307a327e1f44ff341d5732d4d5130353adf145de00318b25b406eff15841a18d52a051c3210ab532dbeb825a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh, and other contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer@4.9.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ieee754@1.2.1", + "author": "Feross Aboukhadijeh", + "name": "ieee754", + "version": "1.2.1", + "description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object", + "hashes": [ + { + "alg": "SHA-512", + "content": "75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2008 Fair Oaks Labs, Inc.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/ieee754@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/ieee754#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/ieee754/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/ieee754.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bytes@2.5.0", + "author": "TJ Holowaychuk", + "name": "bytes", + "version": "2.5.0", + "description": "Utility to parse a string bytes to bytes and vice-versa", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcd7fb4f2cd3c7a4b7c9124e6ce015efde7aafc72bdbe3a3f000b976df3048fdc1400a1e5f9f0da07c8253c3fccc690d5d2b634d28ba7f33ba174a4175c61b12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2014 TJ Holowaychuk \nCopyright (c) 2015 Jed Watson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bytes@2.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/bytes.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/bytes.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/visionmedia/bytes.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cache-base@0.8.5", + "author": "Jon Schlinkert", + "name": "cache-base", + "version": "0.8.5", + "description": "Basic object cache with `get`, `set`, `del`, and `has` methods for node.js/javascript projects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d7db749fbc5da15af9434f3eeac17ce5867d56ebdba5516ae492e6d2072c4660af4ced58dddb9324631a39061fd7845ab38a3a7449efa2abe376b50ad6d36d82" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cache-base@0.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/cache-base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/cache-base/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/cache-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/collection-visit@0.2.3", + "author": "Jon Schlinkert", + "name": "collection-visit", + "version": "0.2.3", + "description": "Visit a method over the items in an object, or map visit over the objects in an array.", + "hashes": [ + { + "alg": "SHA-512", + "content": "57cf0f24e0aa25fb194b8e580442c38268509040a8910000afd5d1e214fa785905b003ec0ac9371280c74ae04f633ca08eab8633fd0a178bddc138903ba95b77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/collection-visit@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/collection-visit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/collection-visit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/collection-visit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lazy-cache@2.0.2", + "author": "Jon Schlinkert", + "name": "lazy-cache", + "version": "2.0.2", + "description": "Cache requires to be lazy-loaded when needed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "444da0d1be55199b0e08538280fee899345816ac9d999901c25e68367435943602e7bbb23bd2aa367355c53ec23921d3c6b44259570054e71b8e4fadbe1feb81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lazy-cache@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/lazy-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/lazy-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/lazy-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/set-getter@0.1.1", + "author": "Brian Woodward", + "name": "set-getter", + "version": "0.1.1", + "description": "Create nested getter properties and any intermediary dot notation (`'a.b.c'`) paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "f6c5563b2fa0b61afed06f43ceaa8b698340efee4e2a44a672a8cbf5c0690c4699aebdd28509725f6719fcefe8cc4e35a319ff4edd0b18433fc3846e6f703783" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, Brian Woodward.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/set-getter@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doowb/set-getter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doowb/set-getter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doowb/set-getter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-visit@0.1.5", + "author": "Jon Schlinkert", + "name": "map-visit", + "version": "0.1.5", + "description": "Map `visit` over an array of objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdd989045bef551fc7e7009fb023fb5f148ba7edf8eb2019df45b2d8eb102dc1f5f4e5463166b732cf6ab8ed34963f726ecc92bb780a38834d80809be19a9abb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-visit@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/map-visit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/map-visit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/map-visit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-visit@0.3.4", + "author": "Jon Schlinkert", + "name": "object-visit", + "version": "0.3.4", + "description": "Call a specified method on each value in the given object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e903725fbb93bb0ab13fba660c1aa004329d999c2cd6b5eb894c97339286ebeec9d1a611bae006a1ceb7e8819d2f380e2fbed65302fe129a1326b107c16b3238" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-visit@0.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object-visit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object-visit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object-visit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/union-value@0.2.4", + "author": "Jon Schlinkert", + "name": "union-value", + "version": "0.2.4", + "description": "Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4efddca9dc98f328d6f59709f563fb25d1d2df89dab73ca50f4a0d44b9586d639f51d0b8110d2c7f77ee6e7aab2b6204aed966a1b166b92d695afbfcf15821a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/union-value@0.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/union-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/union-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/union-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unset-value@0.1.2", + "author": "Jon Schlinkert", + "name": "unset-value", + "version": "0.1.2", + "description": "Delete nested properties from an object using dot notation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca1bf92384ec95d2dd13751c5509f4843d93e6c3423efe3eaa6fc24d4a51288a70b61611222a6c00f76cacda4e23bf613d06b4ad34de5b6d85aba25645c4e036" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unset-value@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/unset-value" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/unset-value/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/unset-value.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caniuse-api@1.6.1", + "name": "caniuse-api", + "version": "1.6.1", + "description": "request the caniuse data to check browsers compatibilities", + "hashes": [ + { + "alg": "SHA-512", + "content": "4814e5ef42b43e40d421e6db917af15aa6651cdb34c118110fa419f20b9cb528636e1eb78043df17e5a3d18c3eef97f963cb52cea008fcd722b18bff7026a1d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Sébastien Balayn\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/caniuse-api@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nyalab/caniuse-api#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nyalab/caniuse-api/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nyalab/caniuse-api.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cardinal@1.0.0", + "author": "Thorsten Lorenz", + "name": "cardinal", + "version": "1.0.0", + "description": "Syntax highlights JavaScript code with ANSI colors to be printed to the terminal.", + "hashes": [ + { + "alg": "SHA-512", + "content": "20db2e1781b28852e4f02f7514fa246ca4dcfebc07a95e099df6ad559e863e182e3f5aa6911597d9da79b5ea586e861d3e91968ac2d52c8f8ab17a1714f45232" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cardinal@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/cardinal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/cardinal/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/cardinal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redeyed@1.0.1", + "author": "Thorsten Lorenz", + "name": "redeyed", + "version": "1.0.1", + "description": "Takes JavaScript code, along with a config and returns the original code with tokens wrapped as configured.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1e116b0d0a4576aefc0a2d2d42be9e5a80d8cc87045edae9becb7d81dbedcba8ece0e02f4104fb3abf301f575e88bdbf01f473cd288a9df0eadd070b3c90d95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redeyed@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/redeyed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/redeyed/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/redeyed.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/esprima@3.0.0", + "author": "Ariya Hidayat", + "name": "esprima", + "version": "3.0.0", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/esprima@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "http://esprima.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/esprima/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/esprima.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chokidar@1.7.0", + "author": "Paul Miller", + "name": "chokidar", + "version": "1.7.0", + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a4f1f01671150ec58edbb652ed8ad8f7038e633b0480c47e2d3853a81066d5b25e9c2faa4f316532eddc19fdc6a77e3dd011d3fa1474a77ff97573afd693356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chokidar@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/chokidar" + }, + { + "type": "issue-tracker", + "url": "http://github.com/paulmillr/chokidar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/paulmillr/chokidar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clap@1.2.3", + "author": "Roman Dvornov", + "name": "clap", + "version": "1.2.3", + "description": "Command line argument parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "e02a0bfc0de17fdd15dd52048deba14af9461441caccecfe59f73621565cf85694814d1941a7c94cfe3d7ef9d42e2a4e3dc01faa1c88d9dbb04329eceb1aa360" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2014-2016 by Roman Dvornov \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clap@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lahmatiy/clap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lahmatiy/clap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lahmatiy/clap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-css@4.2.4", + "author": "Jakub Pawlowicz", + "name": "clean-css", + "version": "4.2.4", + "description": "A well-tested CSS minifier", + "hashes": [ + { + "alg": "SHA-512", + "content": "1095034fb9c35450ef690800a361bf3c9bf19a9d68fdcea25cb6ecc2c05b5055e2d4dafe02303670a99f6ca0cc8ccbf311eef98373fa2646830c02a4f7a03ce4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2017 JakubPawlowicz.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clean-css@4.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jakubpawlowicz/clean-css" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jakubpawlowicz/clean-css/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jakubpawlowicz/clean-css.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-webpack-plugin@0.1.19", + "author": "John Agan", + "name": "clean-webpack-plugin", + "version": "0.1.19", + "description": "A webpack plugin to remove your build folder(s) before building", + "hashes": [ + { + "alg": "SHA-512", + "content": "3352e2e722c710270dd8c6a1a2b7ae383ba5e4b923a212461712cf4e39778f5b6d2ab179ae08d9113d5225dbaeab12c0b93d6000f39d921834dea71a694d4a78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 John Agan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/clean-webpack-plugin@0.1.19", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/johnagan/clean-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/johnagan/clean-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/johnagan/clean-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-table@0.3.11", + "author": "Guillermo Rauch", + "name": "cli-table", + "version": "0.3.11", + "description": "Pretty unicode tables for the CLI", + "hashes": [ + { + "alg": "SHA-512", + "content": "22a2d08b894ed27201e2d71d4e93782c207d148deeaab2592bb442e75e449e167aa816a09642202026f5c23780aa976839a6e6d7e4ae42d91720f7580bdde385" + } + ], + "purl": "pkg:npm/cli-table@0.3.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/cli-table#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/cli-table/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/cli-table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colors@1.0.3", + "author": "Marak Squires", + "name": "colors", + "version": "1.0.3", + "description": "get colors in your node.js console", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e3b2e530a43798f7cfb2cfde7d3a550aea6ee62c133ed4c106e6869e9dfb909cd9eb424d56bed72f16037714d0cfddfd8d999db5d6dd263447d210dd61d1e22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/colors@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Marak/colors.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Marak/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Marak/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-usage@0.1.10", + "author": "Mikael Brevik", + "name": "cli-usage", + "version": "0.1.10", + "description": "Easily show CLI usage from a markdown source file", + "hashes": [ + { + "alg": "SHA-512", + "content": "43fb354b8273e4b608d0b43e5e21500979213339f6e3875dc887df9e2f0922afe42fde43bd0a26550d1c242e3573bea11fdfc5999198eeb641e77cbf6d71ed44" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cli-usage@0.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikaelbr/cli-usage" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikaelbr/cli-usage/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikaelbr/cli-usage.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/marked@0.7.0", + "author": "Christopher Jeffrey", + "name": "marked", + "version": "0.7.0", + "description": "A markdown parser built for speed", + "hashes": [ + { + "alg": "SHA-512", + "content": "79ad9e1963aa3713dc5eff1dc8445d4abffa166cef5b0ce3331a5f181fec6cc71c5e872dfb163e62e90f0fe413519c32bcaec167072be26db5581396e35a4092" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# License information\n\n## Contribution License Agreement\n\nIf you contribute code to this project, you are implicitly allowing your code\nto be distributed under the MIT license. You are also implicitly verifying that\nall code is your original work. ``\n\n## Marked\n\nCopyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n## Markdown\n\nCopyright © 2004, John Gruber \nhttp://daringfireball.net/ \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nThis software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.\n" + } + } + } + ], + "purl": "pkg:npm/marked@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://marked.js.org" + }, + { + "type": "issue-tracker", + "url": "http://github.com/markedjs/marked/issues" + }, + { + "type": "vcs", + "url": "git://github.com/markedjs/marked.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/marked-terminal@3.3.0", + "author": "Mikael Brevik", + "name": "marked-terminal", + "version": "3.3.0", + "description": "A custom render for marked to output to the Terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea30b3f1aa39df046a7608c4e0797dc56dfe7ecdb3701775884a2b196e33c40c3c19c1a0dd934c8a352977ab6fd7cb7ca83b5c643797aebb1b4775e439530345" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Mikael Brevik\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/marked-terminal@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikaelbr/marked-terminal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikaelbr/marked-terminal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikaelbr/marked-terminal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cardinal@2.1.1", + "author": "Thorsten Lorenz", + "name": "cardinal", + "version": "2.1.1", + "description": "Syntax highlights JavaScript code with ANSI colors to be printed to the terminal.", + "hashes": [ + { + "alg": "SHA-512", + "content": "20db2e1781b28852e4f02f7514fa246ca4dcfebc07a95e099df6ad559e863e182e3f5aa6911597d9da79b5ea586e861d3e91968ac2d52c8f8ab17a1714f45232" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cardinal@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/cardinal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/cardinal/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/cardinal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansicolors@0.3.2", + "author": "Thorsten Lorenz", + "name": "ansicolors", + "version": "0.3.2", + "description": "Functions that surround a string with ansicolor codes so it prints in color.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4e22ecb5fd22bf76bf78640d1c903a2129735e04da99e2eb3a3e33152ece61d70d86041eae3ed3a49e9dbe545e05ff3732f4b23bd16f99fa91364a86a3932d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansicolors@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/ansicolors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/ansicolors/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/ansicolors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redeyed@2.1.1", + "author": "Thorsten Lorenz", + "name": "redeyed", + "version": "2.1.1", + "description": "Takes JavaScript code, along with a config and returns the original code with tokens wrapped as configured.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1e116b0d0a4576aefc0a2d2d42be9e5a80d8cc87045edae9becb7d81dbedcba8ece0e02f4104fb3abf301f575e88bdbf01f473cd288a9df0eadd070b3c90d95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redeyed@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/redeyed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/redeyed/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/redeyed.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-emoji@1.11.0", + "author": "Daniel Bugl", + "name": "node-emoji", + "version": "1.11.0", + "description": "simple emoji support for node.js projects", + "hashes": [ + { + "alg": "SHA-512", + "content": "c28d83a50910a7b4a39b603472afac37b10728ee9297472d5de05d159acbf53f7e532c0e45bb9f4dc4d9c689bc62aa4b42dfc5a8d31490ea6466b255612283dc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Daniel Bugl\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/node-emoji@1.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/omnidan/node-emoji#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/omnidan/node-emoji/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/omnidan/node-emoji.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-hyperlinks@1.0.1", + "author": "James Talmage", + "name": "supports-hyperlinks", + "version": "1.0.1", + "description": "Detect if your terminal emulator supports hyperlinks", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c78b991549e7ca6899066176c3b8a6d4191571aa75869f72767b7f4261c34911f59c886ab6cd8b4e8572d396face656d5053b557ebbc3b7cc99669f1d7f4f7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-hyperlinks@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/supports-hyperlinks#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/supports-hyperlinks/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/supports-hyperlinks.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-flag@2.0.0", + "author": "Sindre Sorhus", + "name": "has-flag", + "version": "2.0.0", + "description": "Check if argv has a specific flag", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0a25fd7e71e401af848c92f427043343b5fe135e95615466ad7aed2df75f1b977d059db1369b8bcd2d7f9559efdda6395bf87ba0198cd6eee4171fdf073c463" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-flag@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-flag#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-flag/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-flag.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone-deep@0.3.0", + "author": "Jon Schlinkert", + "name": "clone-deep", + "version": "0.3.0", + "description": "Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa9d5da3a36995865970b53e4d0f77f80ef7e60d6435c9c7ef941b0b5a25a4a26985edfa0aa9231442b43f2152a19948dffd633b92a70e0eb8c5dc168841ffcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone-deep@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/clone-deep" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/clone-deep/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/clone-deep.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shallow-clone@0.1.2", + "author": "Jon Schlinkert", + "name": "shallow-clone", + "version": "0.1.2", + "description": "Make a shallow clone of an object, array or primitive.", + "hashes": [ + { + "alg": "SHA-512", + "content": "275cdd5c2932e4698d9ee6ae11244e56edf53104a72e862f972127ea3d99b64e90e441c5221c6432161cbfabee0f39765c4ce846bf39e90c3332058cfd399983" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/shallow-clone@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/shallow-clone" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/shallow-clone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/shallow-clone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@2.0.1", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "2.0.1", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kind-of@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lazy-cache@0.2.7", + "author": "Jon Schlinkert", + "name": "lazy-cache", + "version": "0.2.7", + "description": "Cache requires to be lazy-loaded when needed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "444da0d1be55199b0e08538280fee899345816ac9d999901c25e68367435943602e7bbb23bd2aa367355c53ec23921d3c6b44259570054e71b8e4fadbe1feb81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lazy-cache@0.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/lazy-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/lazy-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/lazy-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone-stats@0.0.1", + "author": "Hugh Kennedy", + "name": "clone-stats", + "version": "0.0.1", + "description": "Safely clone node's fs.Stats instances without losing their class methods", + "hashes": [ + { + "alg": "SHA-512", + "content": "76152a739ee048c0a8e935fce452df7b9d5e0bfb3e226d8c2e40202707da4517b1476b40e1d77778b116e0be9e7f31dcda2368aeb4515c84e27e70cb951ae168" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "## The MIT License (MIT) ##\n\nCopyright (c) 2014 Hugh Kennedy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone-stats@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hughsk/clone-stats" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hughsk/clone-stats/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hughsk/clone-stats.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/coa@1.0.4", + "author": "Sergey Berezhnoy", + "name": "coa", + "version": "1.0.4", + "description": "Command-Option-Argument: Yet another parser for command line options.", + "hashes": [ + { + "alg": "SHA-512", + "content": "28019c93f78d02608bd1d713dc18ae6302db1312ba95db91f03c4cdc2d53c83cda5e1647c99f28a17e48e7e9dad9eddd3c5ba26dfc6b19da2baf4fcbafb45809" + } + ], + "purl": "pkg:npm/coa@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/veged/coa" + }, + { + "type": "issue-tracker", + "url": "https://github.com/veged/coa/issues" + }, + { + "type": "vcs", + "url": "git://github.com/veged/coa.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/collections@0.2.2", + "author": "Kris Kowal", + "name": "collections", + "version": "0.2.2", + "description": "data structures with idiomatic JavaScript collection interfaces", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cc186e463d75278c445a673ac121f268de2637724d8285294bef789193452b4f7f448b41da2b18562f835dac58c5ef648223f40619add4e429cdd0181b4a09f" + } + ], + "purl": "pkg:npm/collections@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/montagejs/collections" + }, + { + "type": "issue-tracker", + "url": "http://github.com/montagejs/collections/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/montagejs/collections.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/weak-map@1.0.0", + "name": "weak-map", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "94d47d68079f6c63e91ceec0127634842163cf579391609762f91346b4c7b3daaff33269f92915629cdf2c8157410886ded56f6cd1508158366d04bc606831cb" + } + ], + "purl": "pkg:npm/weak-map@1.0.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/color@0.11.4", + "name": "color", + "version": "0.11.4", + "description": "Color conversion and manipulation with CSS string support", + "hashes": [ + { + "alg": "SHA-512", + "content": "023a6377c6aca99e8477141ea86cd4e560618537c9ff4700e1695badeedee6f5df9834a675aecebfa8de2a8aeef9bd2f1dc6f50aabeeae84c7a79cc85b385530" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Heather Arthur\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color@0.11.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-string@0.3.0", + "author": "Heather Arthur", + "name": "color-string", + "version": "0.3.0", + "description": "Parser and generator for CSS color strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "b33dbd8f56e64837e8031288114eb3c282195cde81ac56c030885f6023728995c10ee53f6a21e537ce25a7fc43ccbdae6f21612c3a1b1c8954d57ef45d1acc0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Heather Arthur \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color-string@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/harthur/color-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/harthur/color-string/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/harthur/color-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colormin@1.1.2", + "author": "Ben Briggs", + "name": "colormin", + "version": "1.1.2", + "description": "Turn a CSS color into its smallest representation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d211051441447f957a86c9d762347dd760550f62562bd6f5f2f6b4c532c48ec3e27b43a11091d95022b4e5627e1371ca6c39a504d4f610363067db483009d81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/colormin@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/colormin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/colormin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/colormin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colors@0.5.1", + "author": "Marak Squires", + "name": "colors", + "version": "0.5.1", + "description": "get colors in your node.js console like what", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e3b2e530a43798f7cfb2cfde7d3a550aea6ee62c133ed4c106e6869e9dfb909cd9eb424d56bed72f16037714d0cfddfd8d999db5d6dd263447d210dd61d1e22" + } + ], + "purl": "pkg:npm/colors@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Marak/colors.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Marak/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Marak/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/combine-lists@1.0.1", + "author": "sjelin", + "name": "combine-lists", + "version": "1.0.1", + "description": "Merge two lists, trying to preserve the order of both ", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0c8b457b378f01f4acc2f1997f53bc225aec4c1441dfe38377fcf4a802f583bbc20e3eb75d368d72d6d0bf9176cfec8bd532180214c30dce029bd295a88a7f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2014-2016 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/combine-lists@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sjelin/combine-lists#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sjelin/combine-lists/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sjelin/combine-lists.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/compressible@2.0.18", + "name": "compressible", + "version": "2.0.18", + "description": "Compressible Content-Type / mime checking", + "hashes": [ + { + "alg": "SHA-512", + "content": "005debecfe5d5b12fc331c884d132539140d68e036224005693af893b054ba68cfb51a460d36699743dbd5708ee89783081769d76e8282cf6c331a928e063246" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2013 Jonathan Ong \nCopyright (c) 2014 Jeremiah Senkpiel \nCopyright (c) 2015 Douglas Christopher Wilson \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/compressible@2.0.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jshttp/compressible#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jshttp/compressible/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jshttp/compressible.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js@2.6.12", + "name": "core-js", + "version": "2.6.12", + "description": "Standard library", + "hashes": [ + { + "alg": "SHA-512", + "content": "6623e9f69665831a5646ed0cf9859b9baf9a43ce1711f1f52515ef7ce73f7c82d623454a84b0b62d7d775f5358ab87d42f32ccabb1df878dc24a8dbf6886943c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2020 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js@2.6.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@2.2.2", + "author": "David Clark", + "name": "cosmiconfig", + "version": "2.2.2", + "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a23572f00053d81f2db95e64cfa5a7d8be7dc22c0909f052ecb1cabbf0c41dd4a874394e98ce19f8795d8c545e06f561106685841a5b5ab5d47e9ed18f325e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 David Clark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cosmiconfig@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davidtheclark/cosmiconfig#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davidtheclark/cosmiconfig/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davidtheclark/cosmiconfig.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-from-string@1.2.1", + "author": "Vsevolod Strukchinsky", + "name": "require-from-string", + "version": "1.2.1", + "description": "Require module from string", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fb0242563286deb2492db47ca14d5b52d1fc6914b8f185b7cc6ba064df08a63fbb1d3d118bdc4c82837b0041e9c57c07bec50fa801cf39366b6fab444e33cdd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-from-string@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/require-from-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/require-from-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/require-from-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cpx@1.5.0", + "author": "Toru Nagashima", + "name": "cpx", + "version": "1.5.0", + "description": "Copy file globs, watching for changes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c74e3661b1b83dc5682c3f6bee356da39e7cc15fea784febcd23d2db8f3b359f82a139f6b6d9b429a621582ec59029df13ce62f96923ff31edf27ec0b05db0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Toru Nagashima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cpx@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mysticatea/cpx" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mysticatea/cpx/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mysticatea/cpx.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexer@0.1.2", + "author": "Raynos", + "name": "duplexer", + "version": "0.1.2", + "description": "Creates a duplex stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ed0fa606dfbd190888bff464da24a431593643d38e7ee11e214e4ff1d54ca8a9a77227dc7d0a04a2d519550d017c536b312cb4a716409a32286a9631c85a032" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Raynos.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/duplexer@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/duplexer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/duplexer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/duplexer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob2base@0.0.12", + "author": "Fractal", + "name": "glob2base", + "version": "0.0.12", + "description": "Extracts a base path from a node-glob instance", + "hashes": [ + { + "alg": "SHA-512", + "content": "672aa5828c0c6df8f634f8f169967f12db1794e721dbc1515e031deb8bea6569356d3f7ec2f4912d80f5a26f4ced07d0aeee75cc93c04f5eea5e6e3fcddfbd40" + } + ], + "purl": "pkg:npm/glob2base@0.0.12", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/wearefractal/glob2base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wearefractal/glob2base/issues" + }, + { + "type": "vcs", + "url": "git://github.com/wearefractal/glob2base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-index@0.1.1", + "author": "James Friend", + "name": "find-index", + "version": "0.1.1", + "description": "finds an item in an array matching a predicate function, and returns its index", + "hashes": [ + { + "alg": "SHA-512", + "content": "b89e6f5ab7c128c704eb2d99f3cdf87701198fd98d1b161adeddc8e773b015eb99f03f68736139cdcb2b92e857ea1e2262b8e18afd13deccd09b194057dbb10e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/find-index@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jsdf/find-index" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jsdf/find-index/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jsdf/find-index.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shell-quote@1.7.3", + "author": "James Halliday", + "name": "shell-quote", + "version": "1.7.3", + "description": "quote and parse shell commands", + "hashes": [ + { + "alg": "SHA-512", + "content": "5697eac26e049ea19d96c0453661e1c61125258add7dcc4f4e1bbeaf2292e49f0bfdf840c0b6b3159b6af92f93599f40363da989240b1a3e8d420fa528f9b1af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 James Halliday (mail@substack.net)\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/shell-quote@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-shell-quote" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-shell-quote/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-shell-quote.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/subarg@1.0.0", + "author": "James Halliday", + "name": "subarg", + "version": "1.0.0", + "description": "parse arguments with recursive contexts", + "hashes": [ + { + "alg": "SHA-512", + "content": "448ac87516345f5c688ed84d715b604fdb23a4e19a80450aa597600548b4e783843c5a36f36ca0fb313eb75463dfe46a2aadb14ad2fbb941e163e0236c2e015e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/subarg@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/subarg" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/subarg/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/subarg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-ecdh@4.0.4", + "author": "Calvin Metcalf", + "name": "create-ecdh", + "version": "4.0.4", + "description": "createECDH but browserifiable", + "hashes": [ + { + "alg": "SHA-512", + "content": "99ff930b1f3059cf55a6ec5f3f686dd2248848b667b742605a5ace29988dab25195a78c868221535002b3079c264a7c461183a20cec0f8d789a0df207ff5acd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 createECDH contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-ecdh@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/createECDH" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/createECDH/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/createECDH.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cross-env@3.2.4", + "author": "Kent C. Dodds", + "name": "cross-env", + "version": "3.2.4", + "description": "Run scripts that set and use environment variables across platforms", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fc0051008ae274c39de8bbaae7bb7162a5a8aed56e993bd1987dddf7bb17b59002225ccd1f0fc427226ee8adc2413aded6402e4f972eb713b5995bf8d233e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2016 Kent C. Dodds\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cross-env@3.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kentcdodds/cross-env#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kentcdodds/cross-env/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kentcdodds/cross-env.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cryptiles@2.0.5", + "name": "cryptiles", + "version": "2.0.5", + "description": "General purpose crypto utilities", + "hashes": [ + { + "alg": "SHA-512", + "content": "1453792b0a6fbd04d34b98563f1ad4f3f404e2441473abb065cae794c04df36b7532002dabc9a7a03c08341972f5376bd36b1e788221b5d17e507d5f781606a2" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014, Eran Hammer and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hueniverse/cryptiles/graphs/contributors\n" + } + } + } + ], + "purl": "pkg:npm/cryptiles@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/cryptiles#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/cryptiles/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hapijs/cryptiles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-loader@0.28.11", + "author": "Tobias Koppers @sokra", + "name": "css-loader", + "version": "0.28.11", + "description": "css loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "c28bc7823031f1920c1922fca53cacede740d42966cf11de63a9ff77dee0839a1d82cc4480a8d42cf474be2ab20be1563022fdb1faa80bf402501a3adad2ef3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-loader@0.28.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/css-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/css-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/css-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-selector-tokenizer@0.7.3", + "author": "Tobias Koppers @sokra", + "name": "css-selector-tokenizer", + "version": "0.7.3", + "description": "Parses and stringifies CSS selectors", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d642fde80842f990c12b8f8c119cafce3e8062d03f8fd4547670308a60f68c783d9e5b7fe6b6d6aff074f8853d422a8a62248fe9b0450b8e40a586f268e0bbe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2015 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-selector-tokenizer@0.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css-modules/css-selector-tokenizer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css-modules/css-selector-tokenizer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css-modules/css-selector-tokenizer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cssnano@3.10.0", + "author": "Ben Briggs", + "name": "cssnano", + "version": "3.10.0", + "description": "A modular minifier, built on top of the PostCSS ecosystem.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d28d08310134133a386f8d58ae6f14e91a7dfc083cd6f3576358193274f55e13b80e98c47f6bad28446a5896cea33de0d5675cd5ddd04ad6bf708b89d7049312" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cssnano@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/cssnano" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/cssnano/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/cssnano.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-calc@5.3.1", + "author": "Maxime Thirouin", + "name": "postcss-calc", + "version": "5.3.1", + "description": "PostCSS plugin to reduce calc()", + "hashes": [ + { + "alg": "SHA-512", + "content": "881729b5816af90521f60ccfeed6b66edc39d28e34b38b8b238503560779c91019b540d673900f765e7240377687f4f289935b26bbf41e26214f5d3608c80ded" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-calc@5.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-calc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-calc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-calc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-message-helpers@2.0.0", + "author": "Maxime Thirouin", + "name": "postcss-message-helpers", + "version": "2.0.0", + "description": "PostCSS helpers to throw or output GNU style messages", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4f2d9cd5022209a78e9305ba57b6b5002aa79d5d2c96e710c4a35b2292b7c47e74ecfb8f5205947fc4376a0a226f4926edafad79c43b1a305dd1af14b68d994" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-message-helpers@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MoOx/postcss-message-helpers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MoOx/postcss-message-helpers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MoOx/postcss-message-helpers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/reduce-css-calc@1.3.0", + "author": "Maxime Thirouin", + "name": "reduce-css-calc", + "version": "1.3.0", + "description": "Reduce CSS calc() function to the maximum", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1d55fc1854e95ffcb040d9e7383b043aa775fd998c67ff03a5db14dc2f08e73d8ae48047cfc77548e1e1821f7ad02e53c8486e6ff48f5b919a2c2ac3514d128" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin & Joakim Bengtson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/reduce-css-calc@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MoOx/reduce-css-calc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MoOx/reduce-css-calc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MoOx/reduce-css-calc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/math-expression-evaluator@1.4.0", + "author": "Ankit", + "name": "math-expression-evaluator", + "version": "1.4.0", + "description": "A flexible math expression evaluator", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2f454bcfcb174ef1c5942c64e1f5d6562f6b592ba2c306f8fe3861c1111ee9a07f5076dee45c4a23db4c22cf895051b5174191633db7b99950e8f67bad8b30b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2015 Ankit G.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\n" + } + } + } + ], + "purl": "pkg:npm/math-expression-evaluator@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/redhivesoftware/math-expression-evaluator#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/redhivesoftware/math-expression-evaluator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/redhivesoftware/math-expression-evaluator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/reduce-function-call@1.0.3", + "author": "MoOx", + "name": "reduce-function-call", + "version": "1.0.3", + "description": "Reduce function calls in a string, using a callback", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e5fedb95d950e05a009211e58c2f0c4b66a5fb38ae7d794d60bb15ec44a4c0c9e6229a2bec29db5c5787eedebef5d2da46e46983283850d074992c4c67366c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/reduce-function-call@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/MoOx/reduce-function-call#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/MoOx/reduce-function-call/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/MoOx/reduce-function-call.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-colormin@2.2.2", + "author": "Ben Briggs", + "name": "postcss-colormin", + "version": "2.2.2", + "description": "Minify colors in your CSS files with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d78ad41efa334d3dffafc6f417210d7ea6f7502962a0931f33949365b5c30498b99ad72a4344343094bb7ee9c3f6e9f06b7a284d859c68861d6b720087d96e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-colormin@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-colormin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-colormin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-colormin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-convert-values@2.6.1", + "author": "Ben Briggs", + "name": "postcss-convert-values", + "version": "2.6.1", + "description": "Convert values with PostCSS (e.g. ms -> s)", + "hashes": [ + { + "alg": "SHA-512", + "content": "484ee67f6e43dce454117a6edd652a42acb49c26ccb8ce41127cbe50b13f157752ff450c039f0e773c2fcee1c9469205964d6ea23b75e8985a12882d3fa5b6a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-convert-values@2.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-convert-values" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-convert-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-convert-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-comments@2.0.4", + "author": "Ben Briggs", + "name": "postcss-discard-comments", + "version": "2.0.4", + "description": "Discard comments in your CSS files with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c866f2043a39171b08984f742c3f02f3bbe09cd97079090e0cc9146650d533f08180bafd0b945ab0b189c7187d1a354e05e1bc35c08c6ada2a235a5783c24d5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-comments@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-discard-comments" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-discard-comments/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-discard-comments.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-duplicates@2.1.0", + "author": "Ben Briggs", + "name": "postcss-discard-duplicates", + "version": "2.1.0", + "description": "Discard duplicate rules in your CSS files with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa59395b5baa3bca88513113f94113823f465b290b0b72ce95dafb11e866ca65745aedfa932a078a60b87082eb0006291d0f9faf8ca929c59c54d686ce6d2b78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-duplicates@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-discard-duplicates" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-discard-duplicates/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-discard-duplicates.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-empty@2.1.0", + "author": "Ben Briggs", + "name": "postcss-discard-empty", + "version": "2.1.0", + "description": "Discard empty rules and values with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "201168cabc24e7676117ee73fd901bceae49cbb5aad1a2d4b0e9faf49352fbb61ebb21da373270048604d109541ffa797772fe38e37bd85b1ec726fb38aff7a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-empty@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-discard-empty" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-discard-empty/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-discard-empty.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-overridden@0.1.1", + "author": "Justineo", + "name": "postcss-discard-overridden", + "version": "0.1.1", + "description": "PostCSS plugin to discard overridden @keyframes or @counter-style.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2322a80cbf1034e6ce89473a781c3c90cc411c27f151a11161351ed9017c93b8ffc628ab6b20f3ce49a547a94c423ac0335a750c3453bd6ad2ec06bc969ebfb8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2016 Justineo \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-discard-overridden@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Justineo/postcss-discard-overridden" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Justineo/postcss-discard-overridden/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Justineo/postcss-discard-overridden.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-unused@2.2.3", + "author": "Ben Briggs", + "name": "postcss-discard-unused", + "version": "2.2.3", + "description": "Discard unused counter styles, keyframes and fonts.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c26c535fa9801b282c3d27a3d226e6e937d6ac9ebc152e444315ce0a0b0c9411d3ad3395c313f7935b73a9a87ad86352f87d9c606a7ecb2d1000618073c33ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-discard-unused@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-discard-unused" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-discard-unused/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-discard-unused.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-filter-plugins@2.0.3", + "author": "Ben Briggs", + "name": "postcss-filter-plugins", + "version": "2.0.3", + "description": "Exclude/warn on duplicated PostCSS plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f9dc6545b1d8a72618309bbae0d41cdb78146898e83dcb930156119cb15d02c6ead47558f55253dd2ad9fb6aa600fdcfd0564cca323ab66d257974a1b9f80c1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-filter-plugins@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-filter-plugins" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-filter-plugins/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-filter-plugins.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-idents@2.1.7", + "author": "Ben Briggs", + "name": "postcss-merge-idents", + "version": "2.1.7", + "description": "Merge keyframe and counter style identifiers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f431e67c267bfe13478482a7364cf8094d1e8ed19e9f905b4d125cd77676b877c279d78252c2b65844280094412fea61b3af2258ae907fc2737bbd5a9eecac58" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-merge-idents@2.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-merge-idents" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-merge-idents/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-merge-idents.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-longhand@2.0.2", + "author": "Ben Briggs", + "name": "postcss-merge-longhand", + "version": "2.0.2", + "description": "Merge longhand properties into shorthand with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "99aed8bf18dd2d07627e77351c5b16fc05ba7d57ee6c6c91f97e1b13714e49d055318f5b6632957649474fea1d92728107b15209f2881c2df21caed1500a913e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-merge-longhand@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-merge-longhand" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-merge-longhand/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-merge-longhand.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-rules@2.1.2", + "author": "Ben Briggs", + "name": "postcss-merge-rules", + "version": "2.1.2", + "description": "Merge CSS rules with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a0836152e96dc060197ee4bf69a0be995084a2e58ccbfac0c225f33bccdc3f435aacc954175d9d9c6d5ba2ea6bb6718269b7584e2821a3d710389aafe86f3fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-merge-rules@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-merge-rules" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-merge-rules/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-merge-rules.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-parser@2.2.3", + "author": "Ben Briggs", + "name": "postcss-selector-parser", + "version": "2.2.3", + "description": "> Selector parser with built in methods for working with selector strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de9ab26a478686b3b4050e7efed1937ef8b920050084745ac862bc5854aed3a684bf60661e85f0fcc85bfb0ed56391c4448b82f90a1423bc20ac272ada1a8254" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-selector-parser@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-selector-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-selector-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-selector-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flatten@1.0.3", + "author": "Joshua Holbrook", + "name": "flatten", + "version": "1.0.3", + "description": "Flatten arbitrarily nested arrays into a non-nested list of non-array items. Maintained for legacy compatibility.", + "hashes": [ + { + "alg": "SHA-512", + "content": "755b0f03f53043cfb6ba815ee461ed88132ee3c7562d376cb8477b08a1a56650fbf2bd534d606f0ee15a146282a3f65f12bf79524e7abd9a17f3a3ac1e451e22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Joshua Holbrook\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/flatten@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mk-pmb/flatten-js/#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mk-pmb/flatten-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mk-pmb/flatten-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vendors@1.0.4", + "author": "Titus Wormer", + "name": "vendors", + "version": "1.0.4", + "description": "List of vendor prefixes known to the web platform", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe3b86eb99132f80b2dacbb83fc1e3b644f193a56624388e3c1b9f5a78aa43ac249da73a8cd8974bdbd4fa13b7c20bac8b2a969734db5478b477226a44e360df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2016 Titus Wormer \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vendors@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wooorm/vendors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wooorm/vendors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wooorm/vendors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-font-values@1.0.5", + "author": "Bogdan Chadkin", + "name": "postcss-minify-font-values", + "version": "1.0.5", + "description": "Minify font declarations with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc548fceb26135eebff0c70e2d4d775c8b0446884126220516e0b53e89606a33997515aa4602884cffc0e19fe7e06421126b5bc663bd343c3740b6857c4d5d15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-minify-font-values@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TrySound/postcss-minify-font-values" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TrySound/postcss-minify-font-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TrySound/postcss-minify-font-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-gradients@1.0.5", + "author": "Ben Briggs", + "name": "postcss-minify-gradients", + "version": "1.0.5", + "description": "Minify gradient parameters with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d9853d0e13e45b56a5721ac4c82b1f38ad4ff972eaf2d639b03dad7d6d58aa60f42ee3df5953cdf5c8ccf3b320bc12189955def7fa1e59f716ff0dd681a70ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-minify-gradients@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-minify-gradients" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-minify-gradients/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-minify-gradients.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-params@1.2.2", + "author": "Bogdan Chadkin", + "name": "postcss-minify-params", + "version": "1.2.2", + "description": "Minify at-rule params with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "86125d31580ff2f6acac76e428093e69bdbcbc498f620cae0f3465df557704407740e4772f94d32151162c3367659dfe7e24e2f5de8a7abf0633c4b587ca763b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-minify-params@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-minify-params" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-minify-params/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-minify-params.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-selectors@2.1.1", + "author": "Ben Briggs", + "name": "postcss-minify-selectors", + "version": "2.1.1", + "description": "Minify selectors with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b5defc4f052a3765a3e77b8dca56033e5044e4c7706ce3f42f9bac9723d1d0a50a789f26fb1d9d202a9905f969f6c7efdd6d0facc0da4275949b30e4fbf9320" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-minify-selectors@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-minify-selectors" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-minify-selectors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-minify-selectors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-charset@1.1.1", + "author": "Bogdan Chadkin", + "name": "postcss-normalize-charset", + "version": "1.1.1", + "description": "Add necessary or remove extra charset with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "44a823124b3cde5f30e32121ced3b0359fa72d2ac9f8dbcf361a52fa6543ce86a24476505681bb345d933f9aa3c2768df58b305218fa9b51344b467e5830a011" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2015 Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-normalize-charset@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-charset" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-charset/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-charset.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-url@3.0.8", + "author": "Ben Briggs", + "name": "postcss-normalize-url", + "version": "3.0.8", + "description": "Normalize URLs with PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "5aab561ba195da710bb10105112d11cdf2f679b57098697f33c56631bb212ada3f502941a3e9b39d7f198b8fe191385dab1ee28f0bfe3bc1d63dda4aee71ff22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-normalize-url@3.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-normalize-url" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-normalize-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-normalize-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize-url@1.9.1", + "author": "Sindre Sorhus", + "name": "normalize-url", + "version": "1.9.1", + "description": "Normalize a URL", + "hashes": [ + { + "alg": "SHA-512", + "content": "038f0ccbf9ad0a4968c0706523c16ada31562b8b57e2527913acad16c48eab57f3a6f4f44904a02a14a0ee5379736b9814ead400e429eb3861267a69d5e325a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize-url@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/normalize-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/normalize-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/normalize-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prepend-http@1.0.4", + "author": "Sindre Sorhus", + "name": "prepend-http", + "version": "1.0.4", + "description": "Prepend `http://` to humanized URLs like todomvc.com and localhost", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e19978b95e6a322b0d549f813ea2933629cb092270ef2b2b8eba67238f0df06b0f3a64d8c7c1550e3962dce1b0b32dd70a35a5811fd7bdf6c6d6cc342c55a62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prepend-http@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/prepend-http#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/prepend-http/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/prepend-http.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/query-string@4.3.4", + "author": "Sindre Sorhus", + "name": "query-string", + "version": "4.3.4", + "description": "Parse and stringify URL query strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b65cb3430488350e74ce6bed97ac8c12897115f21d8a2265d49e38619f6f94b2f67e12cdaec9de420914cd4250c66f3510396dda602071f6b540e9dcec898ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/query-string@4.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/query-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/query-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/query-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strict-uri-encode@1.1.0", + "author": "Kevin Mårtensson", + "name": "strict-uri-encode", + "version": "1.1.0", + "description": "A stricter URI encode adhering to RFC 3986", + "hashes": [ + { + "alg": "SHA-512", + "content": "4777f5f7ca5cbe707ee48a67065464a61b84f67e3a5b2565f08dfd5bf6544d92f3e27a923ffa0b614adc9c9af0e3ad83b3c85ee1828ca2fd9e7ec4c8c3504319" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Kevin Mårtensson (github.com/kevva)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strict-uri-encode@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kevva/strict-uri-encode#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kevva/strict-uri-encode/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kevva/strict-uri-encode.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sort-keys@1.1.2", + "author": "Sindre Sorhus", + "name": "sort-keys", + "version": "1.1.2", + "description": "Sort the keys of an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf39fc692a8a832b558a4d22c1d0448becdebdb4d866881ec1350ce9db69986c0471dcdbb9bfd35f86c2cd185e6c30910b74335e026c2d1281d95fcea1fec75e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sort-keys@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/sort-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/sort-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/sort-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-ordered-values@2.2.3", + "author": "Ben Briggs", + "name": "postcss-ordered-values", + "version": "2.2.3", + "description": "Ensure values are ordered consistently in your CSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e510752146619310c27dae5fc7fa20a7f03cda6b6afabed44aa4beef3b747b8dbc1c9efe0470b1c9e637f4296692452dc5d39dde693c803e9df5b8c7d8110232" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-ordered-values@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-ordered-values" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-ordered-values/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-ordered-values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-idents@2.4.0", + "author": "Ben Briggs", + "name": "postcss-reduce-idents", + "version": "2.4.0", + "description": "Reduce custom identifiers with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3e3b0f5ef092ed7df8ee9892453eabcde2a02fa2455b7503e78a350348e5fcb5f4f0ac82cb3f8113beb65c5d9c40b6914b87f53473eabca113092ebd4a8aee3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-reduce-idents@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-reduce-idents" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-reduce-idents/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-reduce-idents.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-initial@1.0.1", + "author": "Ben Briggs", + "name": "postcss-reduce-initial", + "version": "1.0.1", + "description": "Reduce initial definitions to the actual initial value, where possible.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c916b575bd638f090b08562b5ac067ac460320ba76dc944450fc84465bbafddee1eb5733504261d0ef39ec3888c93d9e3258ccece40f0d161a770243c73db0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-reduce-initial@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-reduce-initial" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-reduce-initial/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-reduce-initial.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-transforms@1.0.4", + "author": "Ben Briggs", + "name": "postcss-reduce-transforms", + "version": "1.0.4", + "description": "Reduce transform functions with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "946811aa74ae011e62e6e520d53037debf549e07d369d5b13b22f6ab1d4ab8fa024337e6b5a1e3a7d3eec17ef25724711b705607378551a4b9b95f5e5609c481" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-reduce-transforms@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-reduce-transforms" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-reduce-transforms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-reduce-transforms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-svgo@2.1.6", + "author": "Ben Briggs", + "name": "postcss-svgo", + "version": "2.1.6", + "description": "Optimise inline SVG with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb901d41d801a05e2b6e975b796009bb113de7783fca545f54da7a9af022eb554237f636e53bbda799a1dc2c88e3659b4d1222c11f5ad46745b660e734f7ac91" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-svgo@2.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-svgo" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-svgo/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-svgo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-svg@2.1.0", + "author": "Sindre Sorhus", + "name": "is-svg", + "version": "2.1.0", + "description": "Check if a string or buffer is SVG", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ad6089825491c2fff78aae8f4f9719c9adb3a7044cf056d4c885cf545e26b9c327af34179daaa40106004194d27abde854462063f1e98a350b23d770ea321b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-svg@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-svg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-svg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-svg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/svgo@0.7.2", + "author": "Kir Belevich", + "name": "svgo", + "version": "0.7.2", + "description": "Nodejs-based tool for optimizing SVG vector graphics files", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d3fe0f4514ca1ef65bb6213e87b40c5303b451d973ab99cae60ad1a7c81ffe1909d5e998cd9fe28e1d96d9df9c8bf35fb517f681e8e784b09cedcc1436104c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright © 2012–2016 Kir Belevich\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\n\nЛицензия MIT\n\nCopyright © 2012–2016 Кир Белевич\n\nДанная лицензия разрешает лицам, получившим копию данного\nпрограммного обеспечения и сопутствующей документации\n(в дальнейшем именуемыми «Программное Обеспечение»), безвозмездно\nиспользовать Программное Обеспечение без ограничений, включая\nнеограниченное право на использование, копирование, изменение,\nдобавление, публикацию, распространение, сублицензирование\nи/или продажу копий Программного Обеспечения, также как и лицам,\nкоторым предоставляется данное Программное Обеспечение,\nпри соблюдении следующих условий:\n\nУказанное выше уведомление об авторском праве и данные условия\nдолжны быть включены во все копии или значимые части данного\nПрограммного Обеспечения.\n\nДАННОЕ ПРОГРАММНОЕ ОБЕСПЕЧЕНИЕ ПРЕДОСТАВЛЯЕТСЯ «КАК ЕСТЬ»,\nБЕЗ КАКИХ-ЛИБО ГАРАНТИЙ, ЯВНО ВЫРАЖЕННЫХ ИЛИ ПОДРАЗУМЕВАЕМЫХ,\nВКЛЮЧАЯ, НО НЕ ОГРАНИЧИВАЯСЬ ГАРАНТИЯМИ ТОВАРНОЙ ПРИГОДНОСТИ,\nСООТВЕТСТВИЯ ПО ЕГО КОНКРЕТНОМУ НАЗНАЧЕНИЮ И ОТСУТСТВИЯ НАРУШЕНИЙ\nПРАВ. НИ В КАКОМ СЛУЧАЕ АВТОРЫ ИЛИ ПРАВООБЛАДАТЕЛИ НЕ НЕСУТ\nОТВЕТСТВЕННОСТИ ПО ИСКАМ О ВОЗМЕЩЕНИИ УЩЕРБА, УБЫТКОВ ИЛИ ДРУГИХ\nТРЕБОВАНИЙ ПО ДЕЙСТВУЮЩИМ КОНТРАКТАМ, ДЕЛИКТАМ ИЛИ ИНОМУ,\nВОЗНИКШИМ ИЗ, ИМЕЮЩИМ ПРИЧИНОЙ ИЛИ СВЯЗАННЫМ С ПРОГРАММНЫМ\nОБЕСПЕЧЕНИЕМ ИЛИ ИСПОЛЬЗОВАНИЕМ ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ\nИЛИ ИНЫМИ ДЕЙСТВИЯМИ С ПРОГРАММНЫМ ОБЕСПЕЧЕНИЕМ.\n" + } + } + } + ], + "purl": "pkg:npm/svgo@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/svg/svgo" + }, + { + "type": "issue-tracker", + "url": "https://github.com/svg/svgo/issues" + }, + { + "type": "vcs", + "url": "git://github.com/svg/svgo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/csso@2.3.2", + "author": "Sergey Kryzhanovsky", + "name": "csso", + "version": "2.3.2", + "description": "CSSO (CSS Optimizer) is a CSS minifier with structural optimisations", + "hashes": [ + { + "alg": "SHA-512", + "content": "166088fe19aa0de1c72da2107243213199de4bce32cd465dad60c0bc9555c4ec1c284d4fd4b17d1469b3af592d2104b13b0e9f9773da42c99f83e18df95bd1df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2011-2015 by Sergey Kryzhanovsky\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/csso@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/css/csso" + }, + { + "type": "issue-tracker", + "url": "https://github.com/css/csso/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/css/csso.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-yaml@3.7.0", + "author": "Vladimir Zapparov", + "name": "js-yaml", + "version": "3.7.0", + "description": "YAML 1.2 parser and serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24307ece5d727b62b37d3a4dff497ae7bb8897f723a4fb6e67a97e22992da7a6ebd36039a8fd0119a2ac199186880e4de356f04e4ce20480485a2ceca7052f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2011-2015 by Vitaly Puzrin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/js-yaml@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/js-yaml" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/js-yaml/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/js-yaml.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/whet.extend@0.9.9", + "author": "Dmitrii Karpich", + "name": "whet.extend", + "version": "0.9.9", + "description": "A sharped version of port of jQuery.extend that actually works on node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a620f01fb76bd380420b80f79916a13fc16876e1212c47f93e37d7c9dc9c6bcf8e220c5cbd69e982c5d92c7d44521d81422e6becfddffb22ca395e33e935fac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Dmitrii Karpich\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/whet.extend@0.9.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Meettya/whet.extend#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Meettya/whet.extend/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Meettya/whet.extend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-unique-selectors@2.0.2", + "author": "Ben Briggs", + "name": "postcss-unique-selectors", + "version": "2.0.2", + "description": "Ensure CSS selectors are unique.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5995fcaf5334f88ca58e824e2657a0de4626d7487135817db1ca804fbbffc5e497d4875e86eb4e33ce5234ed203fd2be6e0b3ce97111afb51de6eddc878f83f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-unique-selectors@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-unique-selectors" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-unique-selectors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-unique-selectors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-zindex@2.2.0", + "author": "Ben Briggs", + "name": "postcss-zindex", + "version": "2.2.0", + "description": "Reduce z-index values with PostCSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba1459da14608f4968af19bd72beb6074d58ce951eeb78744573174388165b7a1adaba4987e149022100cad68508f53f5606814beb96d922755cac83373d61e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/postcss-zindex@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ben-eb/postcss-zindex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ben-eb/postcss-zindex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ben-eb/postcss-zindex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-what@2.1.3", + "author": "Felix Böhm", + "name": "css-what", + "version": "2.1.3", + "description": "a CSS selector parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "6be10fa03fae66235f87ee5fc70da73bd43015aea725ed8eaf7e5f198e88a70d51dd1e001b3d5dd53119ac27a0bf0d984e66748d78ab198973c71a58487c2912" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/css-what@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/css-what#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/css-what/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fb55/css-what.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/custom-event@1.0.1", + "author": "Nathan Rajlich", + "name": "custom-event", + "version": "1.0.1", + "description": "Cross-browser `CustomEvent` constructor", + "hashes": [ + { + "alg": "SHA-512", + "content": "1808f914eab41ddf91b0219527166e29a2035c37f787a190a0d1231606cb2c8fedae0b5abf051b4a7679a557e0dbb0d509a5a322886bc92d09170209c93d9c32" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Nathan Rajlich\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/custom-event@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/custom-event" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/custom-event/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webmodules/custom-event.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/d@1.0.1", + "author": "Mariusz Nowak", + "name": "d", + "version": "1.0.1", + "description": "Property descriptor factory", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bad9284439b437f427eb6a58a51104631faa0032d342575c49c84c792e945851537e12f8a984381473f17786761b0039a488db3aed8fb7ca59a51bb2e7bbe14" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/d@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/d#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/d/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/d.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es5-ext@0.10.61", + "author": "Mariusz Nowak", + "name": "es5-ext", + "version": "0.10.61", + "description": "ECMAScript extensions and shims", + "hashes": [ + { + "alg": "SHA-512", + "content": "c85848a90033bb609ad88e1213602edebc557e6a2153d63bc2a191facefe1fb92b936e8d5e12110190e0a9deb1aa3084154a260c4037fc1a3fedf2a62245b590" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2011-2022, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es5-ext@0.10.61", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es5-ext#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es5-ext/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/medikoo/es5-ext.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-iterator@2.0.3", + "author": "Mariusz Nowak", + "name": "es6-iterator", + "version": "2.0.3", + "description": "Iterator abstraction based on ES6 specification", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf0e12473a1491df9c97e668135e40f68d6841df76d016f488e24c4244219778cd734dd8a958c0846eec71ff42e4a59153f475dceadfe7cf2e082eb9db9a34da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2013-2017 Mariusz Nowak (www.medikoo.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-iterator@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es6-iterator#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es6-iterator/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/es6-iterator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-symbol@3.1.3", + "author": "Mariusz Nowak", + "name": "es6-symbol", + "version": "3.1.3", + "description": "ECMAScript 6 Symbol polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "349e989f716e0e29c168145697fab95ffb3892844706b80a02efb2188e890817a2bb7aab71b261c13d86791fc45d57f295193c7694152682c41612be32edf534" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2013-2019, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-symbol@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es6-symbol#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es6-symbol/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/es6-symbol.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ext@1.6.0", + "author": "Mariusz Nowak", + "name": "ext", + "version": "1.6.0", + "description": "JavaScript utilities with respect to emerging standard", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1d0489adce4ab61e991d44bb652d60daeb0e035f6da28d92cac7c04c3d4b8a7b573995b37ac70403402c527f10509c7675de5b3f147d0c419c7fabf82be8542" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2011-2019, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ext@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es5-ext/tree/ext#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es5-ext/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/medikoo/es5-ext.git#ext" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type@2.6.1", + "author": "Mariusz Nowak", + "name": "type", + "version": "2.6.1", + "description": "Runtime validation and processing of JavaScript types", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb99ede400278aab029eed9c11041da73080877de4571f27d15a0589d2a907575554b00dfc5f9b8153aa389a8e9c49eb869db6d9c941e69def5250fed500277e" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2019-2022, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/type@2.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/type#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/medikoo/type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/next-tick@1.1.0", + "author": "Mariusz Nowak", + "name": "next-tick", + "version": "1.1.0", + "description": "Environment agnostic nextTick polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "0977548897a66ec363b93a10bf16b23d917d56a86dee17b0b2fcb6b0e59a7cbbe2d9ac1f963f66382e9b1c8839d28ad7f0826f58a63dc1843fcc1da4a203ec95" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2012-2020, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/next-tick@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/next-tick#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/next-tick/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/next-tick.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type@1.2.0", + "author": "Mariusz Nowak", + "name": "type", + "version": "1.2.0", + "description": "Runtime validation and processing of JavaScript types", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb99ede400278aab029eed9c11041da73080877de4571f27d15a0589d2a907575554b00dfc5f9b8153aa389a8e9c49eb869db6d9c941e69def5250fed500277e" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2019, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/type@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/type#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/medikoo/type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-equal@1.1.1", + "author": "James Halliday", + "name": "deep-equal", + "version": "1.1.1", + "description": "node's assert.deepEqual algorithm", + "hashes": [ + { + "alg": "SHA-512", + "content": "c9df5ce40762a95711f898dcc1441bf4392125cf2780daf431a844046bc3889c3ca6e59a6f6c99961fa791ab0e9d93fe1064c03faad1a76273261259cef345f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2012, 2013, 2014 James Halliday , 2009 Thomas Robinson <280north.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-equal@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-deep-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-deep-equal/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/node-deep-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-arguments@1.1.1", + "author": "Jordan Harband", + "name": "is-arguments", + "version": "1.1.1", + "description": "Is this an arguments object? It's a harder question than you think.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f10ec40118f31272a9b7f3c20fb7b5720512d1ae97f2ee6d75288ca978688ce76857d4ec32c88efbd54b0b9bc098ef0deff1a65e7ef28d1f2a9c0e9b5401337c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-arguments@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-arguments" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-arguments/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-arguments.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-is@1.1.5", + "author": "Jordan Harband", + "name": "object-is", + "version": "1.1.5", + "description": "ES2015-compliant shim for Object.is - differentiates between -0 and +0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddcc83b321e0b668bb23b0df4922362c3a7a48ada5c2fb5b834a744757b446f4ea17971e1b1f8ad9d7d28e6d5b283315085103010bf2fa8f1ce9aed5ba339d77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-is@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/object-is" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/object-is/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/object-is.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-extend@0.4.2", + "author": "Viacheslav Lotsmanov", + "name": "deep-extend", + "version": "0.4.2", + "description": "Recursive object extending", + "hashes": [ + { + "alg": "SHA-512", + "content": "710d225d210a8b72513618d4b0b5af43e3153f12d5aa9c02774705b166c9c650a29b64e50a8d49bcde5668f74fbd2a547449e427f5fe98f19cab9449ebc10af2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2015, Viacheslav Lotsmanov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-extend@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unclechu/node-deep-extend" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unclechu/node-deep-extend/issues" + }, + { + "type": "vcs", + "url": "git://github.com/unclechu/node-deep-extend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/del@3.0.0", + "author": "Sindre Sorhus", + "name": "del", + "version": "3.0.0", + "description": "Delete files and folders", + "hashes": [ + { + "alg": "SHA-512", + "content": "6787f3a5b2118cebbb94ee630844d25a8a940d57b420f3a57ee801b05eacb9e9f62ca0e555be1066928433d3fe6ee349e0a23578dec8d3cdf0fe96ca529b2b59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/del@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/del#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/del/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/del.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/des.js@1.0.1", + "author": "Fedor Indutny", + "name": "des.js", + "version": "1.0.1", + "description": "DES implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "434238a5f16bbf654f777e3fbdf2eb14ea119a5623dce579d22edfb24a6cd636562b5900a4c5964fd1ba45151e61e74b7010c8867483694bc931bdc085495a10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/des.js@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/des.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/des.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/des.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/detect-node@2.1.0", + "author": "Ilya Kantor", + "name": "detect-node", + "version": "2.1.0", + "description": "Detect Node.JS (as opposite to browser environment) (reliable)", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f4348b90a674ef14301336e1cde6ba0fc12046f37ac5b2e3be3175c7f7fdcdd5e15b9f8c1c3e3b6dbe330b10f589d11194620404edc1a04b7b4dc5ba8218cee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Ilya Kantor\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/detect-node@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iliakan/detect-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iliakan/detect-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iliakan/detect-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/di@0.0.1", + "author": "Vojta Jina", + "name": "di", + "version": "0.0.1", + "description": "Dependency Injection for Node.js. Heavily inspired by AngularJS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8969a98791a81c66d1cfa822076719c5ad796e9d05e004eb19494396c05c37d5024201bc930681cc5bbe58393babe59371f2921e00a81fe8658881aaaa88b84" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (C) 2013 Vojta Jína.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/di@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vojtajina/node-di#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vojtajina/node-di/issues" + }, + { + "type": "vcs", + "url": "git://github.com/vojtajina/node-di.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dns-packet@1.3.4", + "author": "Mathias Buus", + "name": "dns-packet", + "version": "1.3.4", + "description": "An abstract-encoding compliant module for encoding / decoding DNS packets", + "hashes": [ + { + "alg": "SHA-512", + "content": "050e85e2fc9c2d706f76b259e92de065ec2deab72b92cf4a06033dbeb856fa49c646a73cb84753edfb82c25a1cee79f2e71368309d7b1c61f447fe9fa68f0408" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dns-packet@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/dns-packet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/dns-packet/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/dns-packet.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ip@1.1.8", + "author": "Fedor Indutny", + "name": "ip", + "version": "1.1.8", + "description": "[![](https://badge.fury.io/js/ip.svg)](https://www.npmjs.com/package/ip)", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ee1313d8522bbaa8c0506f8974e9e726e93eae8f386687e31e25c5bdc1af3d3e8033e69bdde333e0379589575d3899be92d93d40c0d200681ef424dacb41686" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ip@1.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/node-ip" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/node-ip/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/node-ip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-converter@0.1.4", + "author": "Aria Minaei", + "name": "dom-converter", + "version": "0.1.4", + "description": "converts bare objects to DOM objects or xml representations", + "hashes": [ + { + "alg": "SHA-512", + "content": "23d356df7a3757dd9bf6ed000194279f4438db60e141f34f1f87a74c4c4436d5dfae8c557d520471d7897cd7b8d51387c9edfe67390d220daebec14d13a53c64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-converter@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/dom-converter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/dom-converter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/dom-converter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/utila@0.3.3", + "author": "Aria Minaei", + "name": "utila", + "version": "0.3.3", + "description": "notareplacementforunderscore", + "hashes": [ + { + "alg": "SHA-512", + "content": "6740db8042d2f7f2ffef9c196eba3cc409d3e74a41545419fa1504b9e18353914de7561209833e8ddc6c7c28878f034fff82c20c3d22fe0ada2a97819ce5ca44" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/utila@0.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/utila#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/utila/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/utila.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-serialize@2.2.1", + "author": "Nathan Rajlich", + "name": "dom-serialize", + "version": "2.2.1", + "description": "Serializes any DOM node into a String", + "hashes": [ + { + "alg": "SHA-512", + "content": "62b6b80dbbe85bbfd9e8b04de7ad19c17323a0d39200ddb046c28519ce2205eb28fa6a4803aaa3d6f7dd7fd1e931a280a86eb05d3cbed52604ce6369297392b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/dom-serialize@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webmodules/dom-serialize" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webmodules/dom-serialize/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webmodules/dom-serialize.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ent@2.2.0", + "author": "James Halliday", + "name": "ent", + "version": "2.2.0", + "description": "Encode and decode HTML entities", + "hashes": [ + { + "alg": "SHA-512", + "content": "187accc956505af4c8743b698845dd1d99c540acde3b4f5aa63f026e5e29296cb88b43a9adcab5eeeb1f0ede5a3badecc1fd0939e3168d6404fcbce0491b96a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ent@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-ent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-ent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/substack/node-ent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/void-elements@2.0.1", + "author": "hemanth.hm", + "name": "void-elements", + "version": "2.0.1", + "description": "Array of \"void elements\" defined by the HTML specification.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a99297e119c1cc7dae82bf0bc5aef1fb457a5c3f526ffa2e011b626ac110087075115538357b661ec0c3af1d5d3b89dee5f73727a116d3904fd43974cf48ae9e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\r\n\r\nCopyright (c) 2014 hemanth\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/void-elements@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hemanth/void-elements" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hemanth/void-elements/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/hemanth/void-elements.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexer2@0.0.2", + "author": "Conrad Pankoff", + "name": "duplexer2", + "version": "0.0.2", + "description": "Like duplexer (http://npm.im/duplexer) but using streams2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f80581c2319a76d92cc633904850e13cd41b79dee270d5c0a53e3ed81369b17cdc0818889ead87f575b43bcb1f1c568f9a7411b3b720fcfd1f02bd88590496d2" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2013, Deoxxa Development\n======================================\nAll rights reserved.\n--------------------\n \nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met: \n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n3. Neither the name of Deoxxa Development nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL DEOXXA DEVELOPMENT BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/duplexer2@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/deoxxa/duplexer2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/deoxxa/duplexer2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/deoxxa/duplexer2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/enhanced-resolve@3.4.1", + "author": "Tobias Koppers @sokra", + "name": "enhanced-resolve", + "version": "3.4.1", + "description": "Offers a async require.resolve function. It's highly configurable.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65a02ec75ae282ad5eda742bced1e7e21dae82fa73671b3ae2a9de35a87ef0c87f2b4091a8914973e5285e752cabed725fe0e64053cf755a9ba0a009f3d7b423" + } + ], + "purl": "pkg:npm/enhanced-resolve@3.4.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/enhanced-resolve" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/enhanced-resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webpack/enhanced-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/errno@0.1.8", + "name": "errno", + "version": "0.1.8", + "description": "libuv errno details exposed", + "hashes": [ + { + "alg": "SHA-512", + "content": "749ea806be5243555277daa493b0724606ffd521f82598c21d25bf9abeb7fd07173bdccb571bc9e8ecb5de78a8d37af1a529d50c38c5a2bef94a355e6563d6fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/errno@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/node-errno#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/node-errno/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/node-errno.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-map@0.1.5", + "author": "Mariusz Nowak", + "name": "es6-map", + "version": "0.1.5", + "description": "ECMAScript6 Map polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b3dd4a82874b8f088aacc3549202407fa74acecc5fccd15fbebf237b26a94fb525bf56c620401bd5bea30b99f06ec8ccd3a4b9cdaa2e8999c4a2cece23cb5f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013 Mariusz Nowak (www.medikoo.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-map@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es6-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es6-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/es6-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-set@0.1.5", + "author": "Mariusz Nowak", + "name": "es6-set", + "version": "0.1.5", + "description": "ECMAScript6 Set polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed2f185c87147cf30eaf7aea24154c78f01b46c0f59d6792310f3a2bf94323be92dd6297cfe29620bbd320f6d3ae8b9b3a46531a1f9bfbbff1208a616573586c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013 Mariusz Nowak (www.medikoo.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-set@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es6-set#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es6-set/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/es6-set.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-symbol@3.1.1", + "author": "Mariusz Nowak", + "name": "es6-symbol", + "version": "3.1.1", + "description": "ECMAScript 6 Symbol polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "349e989f716e0e29c168145697fab95ffb3892844706b80a02efb2188e890817a2bb7aab71b261c13d86791fc45d57f295193c7694152682c41612be32edf534" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013-2015 Mariusz Nowak (www.medikoo.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-symbol@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es6-symbol#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es6-symbol/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/es6-symbol.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/event-emitter@0.3.5", + "author": "Mariusz Nowak", + "name": "event-emitter", + "version": "0.3.5", + "description": "Environment agnostic event emitter", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fdad19fdcbb90b3e727e84cabb4bf9e1be82b0c2f5496a1062d813e6c776ef6ec11d2b75bd8a2f1c0521a33feef6fcb9cce27e9fa37f9d9025f915e4d0aee5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2015 Mariusz Nowak (www.medikoo.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/event-emitter@0.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/event-emitter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/event-emitter/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/event-emitter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es6-weak-map@2.0.3", + "author": "Mariusz Nowak", + "name": "es6-weak-map", + "version": "2.0.3", + "description": "ECMAScript6 WeakMap polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "a79ba6df61ce4ced643fec3b3d19c1fb9950e3767a9aeb8cb8831f7ef0cdf1907819c9e32c157acc64ada5b01220c9380c202f11a6a685edb387209bfd05d7b0" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2013-2018, Mariusz Nowak, @medikoo, medikoo.com\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE\nOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es6-weak-map@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/medikoo/es6-weak-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/medikoo/es6-weak-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/medikoo/es6-weak-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escodegen@1.14.3", + "name": "escodegen", + "version": "1.14.3", + "description": "ECMAScript code generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "a85717d17264760f8f077c636591bfc0a4ae4f53e7416c79efe4d54a320c9882dddb20bfe81c981253f0267b250ecb96b92029e00c091ae99aac002625c8792b" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/escodegen@1.14.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/estools/escodegen" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/escodegen/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/escodegen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escope@3.6.0", + "name": "escope", + "version": "3.6.0", + "description": "ECMAScript scope analyzer", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef921442cbac0dd6a54045bf1bfd9eb1af3b27badaa9d245f826b4fd79b90b7439f0daf8c95623646a7f3f5fb6c6211581746b037f5da516fc2dcb216a36ea0d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/escope@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/estools/escope" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/escope/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/estools/escope.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/event-stream@3.3.5", + "author": "Dominic Tarr", + "name": "event-stream", + "version": "3.3.5", + "description": "construct pipes of streams of events", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf289b0dcbb924bdb431ed5f3fbdf84011ff91e9c118b65aa769f4f975ccee6bee50fcc9db461daa3d5a29c21e31dae2d69f8f53ee3200aba08cdf0a095b2dfa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/event-stream@3.3.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/event-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/event-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/event-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/from@0.1.7", + "author": "Dominic Tarr", + "name": "from", + "version": "0.1.7", + "description": "Easy way to make a Readable Stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "b707b6d1e1753b1571a7f30bfe4ab6a75b9ce8abc52bffafb3c5a311b78a995d877b6d8c2a6ed817600d22df843aa849e4bdcafd2bae3e19348564038ce336de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/from@0.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/from#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/from/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/from.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-stream@0.0.7", + "author": "Dominic Tarr", + "name": "map-stream", + "version": "0.0.7", + "description": "construct pipes of streams of events", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a4610acf6197d69eefc3026542a53497ff11e9299f3478a87694093203a0094de7fa6d6fba2696d064de6ba1fba6edd6be4b23756e2e5cb539be9537dc096de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/map-stream@0.0.7", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/map-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/map-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/map-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pause-stream@0.0.11", + "author": "Dominic Tarr", + "name": "pause-stream", + "version": "0.0.11", + "description": "a ThroughStream that strictly buffers all readable events when paused.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b71419572e637f0f54becc7cda9cfe04ff867ad281406b73b4e75aadd69c5aec310958a0328a5eaea5855709669d127ba8a9ae0f91cf68531f73b3161e46ff0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Dual Licensed MIT and Apache 2\n\nThe MIT License\n\nCopyright (c) 2013 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n -----------------------------------------------------------------------\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2013 Dominic Tarr\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + } + } + }, + { + "license": { + "name": "Apache2", + "text": { + "content": "Dual Licensed MIT and Apache 2\n\nThe MIT License\n\nCopyright (c) 2013 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n -----------------------------------------------------------------------\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2013 Dominic Tarr\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + } + } + } + ], + "purl": "pkg:npm/pause-stream@0.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/pause-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/pause-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/pause-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-combiner@0.2.2", + "author": "'Dominic Tarr'", + "name": "stream-combiner", + "version": "0.2.2", + "description": "[![npm version](https://img.shields.io/npm/v/stream-combiner.svg)](https://npmjs.org/package/stream-combiner) [![Travis CI](https://travis-ci.org/dominictarr/stream-combiner.svg)](https://travis-ci.org/dominictarr/stream-combiner)", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad3d3448f9d357246c692cf9ce048f99afda1d23a2739535a6b858751cb91d2da44d9be21699838338a56edb09b318aba2a00299acb29c337ff55cc86d7e433b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 'Dominic Tarr'\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-combiner@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/stream-combiner" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/stream-combiner/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/stream-combiner.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventemitter3@1.2.0", + "author": "Arnout Kazemier", + "name": "eventemitter3", + "version": "1.2.0", + "description": "EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6fb5021e2d51e30e42589f37f676054cc5fb9218978cffb5021b5ed34f812e9937cdb45fb49de6c5ff8cd6388902ade01bb4daa11846e807a056af0a8d6b0e1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Arnout Kazemier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eventemitter3@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/primus/eventemitter3#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/primus/eventemitter3/issues" + }, + { + "type": "vcs", + "url": "git://github.com/primus/eventemitter3.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventsource@0.1.6", + "author": "Aslak Hellesøy", + "name": "eventsource", + "version": "0.1.6", + "description": "W3C compliant EventSource client for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "6db079b44baf0be4ae4541bae17f2086f8e08919e2b80e1695e8566c59e8378cfa4f10d7a725fe04c1c5eeb320640aa87be11bc8d4546c7374bae3fda61cb98d" + } + ], + "purl": "pkg:npm/eventsource@0.1.6", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/aslakhellesoy/eventsource-node" + }, + { + "type": "issue-tracker", + "url": "http://github.com/aslakhellesoy/eventsource-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/aslakhellesoy/eventsource-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/expand-braces@0.1.2", + "author": "Jon Schlinkert", + "name": "expand-braces", + "version": "0.1.2", + "description": "Wrapper for [braces] to enable brace expansion for arrays of patterns.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cce3ac127021bc8c717747ac08d6d81b6c5eac67f8ea7899d5e812e37795ec5bb8b7b54849c80f5cc70c69b08b68faea933c2fc28eb3662a43897dedd082c5db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Jon Schlinkert, contributors.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/expand-braces@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/expand-braces" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/expand-braces/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/expand-braces.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extglob@1.1.0", + "author": "Jon Schlinkert", + "name": "extglob", + "version": "1.1.0", + "description": "Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae06260a4f17a35a42e215d93947afd0683760b76cc90511b776bc648f05398d3e519d74243d30b4fe74cec1d45c3c92cd02dd056eaa672db5884e65778f0030" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extglob@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/extglob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/extglob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/extglob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-regex@2.1.0", + "author": "Jon Schlinkert", + "name": "to-regex", + "version": "2.1.0", + "description": "Generate a regex from a string or array of strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "156b6578d02d67f2a2daab6a7a3d825d339ac8e1fd6c70d017e438f15a56c835e36d8c40e18cfc883077d735ce05494e1c72a27436ea195ad352f40c3e604607" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-regex@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/to-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/to-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/to-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regex-not@0.1.2", + "author": "Jon Schlinkert", + "name": "regex-not", + "version": "0.1.2", + "description": "Create a javascript regular expression for matching everything except for the given string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "27a4838d4803c508f936eb273ad745c43c0dffe1d6ca447c1842f072d27b99daa1732cb5c44738491147517bf14e9ebad586952808df44b67d702a92ead9f7d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regex-not@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/regex-not" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/regex-not/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/regex-not.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extract-text-webpack-plugin@2.0.0-rc.3", + "author": "Tobias Koppers @sokra", + "name": "extract-text-webpack-plugin", + "version": "2.0.0-rc.3", + "description": "Extract text from bundle into a file.", + "hashes": [ + { + "alg": "SHA-512", + "content": "35bd32f922d72b37b7ca5e7bf3b78d460bc1d8aa1155452a87e0768131a926333eb48429724791aca7006bff1ceb57153ac862444ac23001b06dfb4311003feb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extract-text-webpack-plugin@2.0.0-rc.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/extract-text-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/extract-text-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/extract-text-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv@4.11.8", + "author": "Evgeny Poberezkin", + "name": "ajv", + "version": "4.11.8", + "description": "Another JSON Schema Validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "023af821c317abfd9098c904992bf1a9f2cde731a627dda01d701e397ab539e9281f6adf0cdb20743a0bd9fed06910b2ec6fc4e93a71055751b8dada333b461f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ajv@4.11.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@0.1.5", + "author": "Tobias Koppers @sokra", + "name": "webpack-sources", + "version": "0.1.5", + "description": "Source code handling classes for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "f025d87cf6645af63455669d1c3437ab685406a9362092934dd0cf61be61c271955666bc6f3a932447ab503ae95b05e7b98f6fc59d261849e3603d172e144779" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/webpack-sources@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-sources#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-sources/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-sources.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-list-map@0.1.8", + "author": "Tobias Koppers @sokra", + "name": "source-list-map", + "version": "0.1.8", + "description": "Fast line to line SourceMap generator.", + "hashes": [ + { + "alg": "SHA-512", + "content": "71a6f07619d235ffed4c3321fc35d95e591e40bbdd613e717c6601a21a871bbc1bddb050ad094740d58cf4d59239ba175cad73830cfa2734b97b8859abdbf133" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/source-list-map@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/source-list-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/source-list-map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/source-list-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fancy-log@1.3.3", + "author": "Gulp Team", + "name": "fancy-log", + "version": "1.3.3", + "description": "Log things, prefixed with a timestamp.", + "hashes": [ + { + "alg": "SHA-512", + "content": "93da04865c9cd05ad5876e6a62e4842e3afca31b02a1ce3f2c465f83688926b7c493fb592fd6c2a09138ee0a80bc8da6fc052396e092e3edc8d1e4f1f27dc013" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2018 Blaine Bublitz and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/fancy-log@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/fancy-log#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/fancy-log/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/fancy-log.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-gray@0.1.1", + "author": "Jon Schlinkert", + "name": "ansi-gray", + "version": "0.1.1", + "description": "The color gray, in ansi.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1eb806219525f21d841ee65a53d85347f714e6784ac69544d55ea4746b10f1ee338ab1252797efb5f73c37b435a2ad5a6ad3b6ef98bca541540a93560809d55b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) <%= year() %>, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-gray@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/ansi-gray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/ansi-gray/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/ansi-gray.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-wrap@0.1.0", + "author": "Jon Schlinkert", + "name": "ansi-wrap", + "version": "0.1.0", + "description": "Create ansi colors by passing the open and close codes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "672ce7bcbf24fc565e407af64fa2f3709ffebc10290e730d66f7d5172dc0b74927b3059deab277ff41e19a9bbca2a6ba0bdda7a66a33b3cf74b17f4397aabe43" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-wrap@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/ansi-wrap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/ansi-wrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/ansi-wrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-support@1.1.3", + "author": "Isaac Z. Schlueter", + "name": "color-support", + "version": "1.1.3", + "description": "A module which will endeavor to guess your terminal's level of color support.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa20639296cc2cefc72faf32fa5878ab4fced4c6458f6457e97fca98c6b7fa0243df3f96c08d59cc31f2b2fa87192de63fa9b39cf724a579b0d6723d7098f246" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/color-support@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/color-support#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/color-support/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/color-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-node-version@1.0.1", + "author": "Gulp Team", + "name": "parse-node-version", + "version": "1.0.1", + "description": "Turn node's process.version into something useful.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd81e539afc9807e8c9e9af4e633fd7831b6e78512f5e936e4bc88c5994322da76889b70c9a5d06f9ee50582dd4f7328c245056045765d73406083e5112bc994" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 Blaine Bublitz and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/parse-node-version@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/parse-node-version#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/parse-node-version/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/parse-node-version.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/time-stamp@1.1.0", + "author": "Jon Schlinkert", + "name": "time-stamp", + "version": "1.1.0", + "description": "Get a formatted timestamp.", + "hashes": [ + { + "alg": "SHA-512", + "content": "80b09e02baf2cb6c8d4d1cd318a6d96e5a1cb63eb88e4679ee18f9cddada5ee7ba68581de8f9af56d13289453e86f534bfbab4f2856ff2bf1ebf4b51a3a6ef83" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/time-stamp@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/time-stamp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/time-stamp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/time-stamp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/file-loader@0.11.2", + "author": "Tobias Koppers @sokra", + "name": "file-loader", + "version": "0.11.2", + "description": "file loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "37eba11779acc0815ece21d08c649c27fc875d8b770e22c1782fbdbd65be5a350188294c48e955d58ad7422fbb28cd9a037467e01c9b82ffae5c541b7e4ce9be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/file-loader@0.11.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/file-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/file-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/file-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-access@1.0.1", + "author": "Sindre Sorhus", + "name": "fs-access", + "version": "1.0.1", + "description": "Node.js 0.12 fs.access() & fs.accessSync() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "d397170c8c0d6c56a81566b3e603479544db1f9c218acb3f86bfe26f33dde0c1f7711e30d1929e20f89575bc89bab8373b9aff063a6f9fd28e6f5feb3cc7f79c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-access@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/fs-access#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/fs-access/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/fs-access.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/null-check@1.0.0", + "author": "Sindre Sorhus", + "name": "null-check", + "version": "1.0.0", + "description": "Ensure a path doesn't contain null bytes", + "hashes": [ + { + "alg": "SHA-512", + "content": "8fc64d1e0d7d4f221039608679e40906ebbac5960812eadff0cd50b1f77c985ac611f219cad6f0d7c62329683e2dc3b6e4da305c6657669280c7e522dd315f0f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/null-check@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/null-check#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/null-check/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/null-check.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-extra@2.1.2", + "author": "JP Richardson", + "name": "fs-extra", + "version": "2.1.2", + "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", + "hashes": [ + { + "alg": "SHA-512", + "content": "26210f033cb4859d04376e699179209b3c67fd386a4db0eb4ea1a710ef5e14c477de67c6ef60366058d0db7fb34ec9c3b5c39eb01294b515d64e1e95e1b41456" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011-2017 JP Richardson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-extra@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-fs-extra" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-fs-extra/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jprichardson/node-fs-extra.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fsevents@1.2.13", + "author": "Philipp Dunkel", + "name": "fsevents", + "version": "1.2.13", + "description": "Native Access to Mac OS-X FSEvents", + "hashes": [ + { + "alg": "SHA-512", + "content": "a166f567a9a41c8b242f3109fd7597d2cae4a644d0eef6a8a4c424c9a108a2ad1f9ad155c4eb616fc702c5e4fea77ca74dd924fd16706e01b86eb47905e5840b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n-----------\n\nCopyright (C) 2010-2014 Philipp Dunkel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fsevents@1.2.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/strongloop/fsevents" + }, + { + "type": "issue-tracker", + "url": "https://github.com/strongloop/fsevents/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/strongloop/fsevents.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bindings@1.5.0", + "author": "Nathan Rajlich", + "name": "bindings", + "version": "1.5.0", + "description": "Helper module for loading your native module's .node file", + "hashes": [ + { + "alg": "SHA-512", + "content": "a76abfb7f9a1bee3a3fd478b955eb9eba183fe0ba8c25af4847c42948d16f66ecc59890bd45d212e8fb401ec6cf4748f0ad4754974344c3dcc30aad765a8db89" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "(The MIT License)\n\nCopyright (c) 2012 Nathan Rajlich <nathan@tootallnate.net>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bindings@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-bindings" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-bindings/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-bindings.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/file-uri-to-path@1.0.0", + "author": "Nathan Rajlich", + "name": "file-uri-to-path", + "version": "1.0.0", + "description": "Convert a file: URI to a file path", + "hashes": [ + { + "alg": "SHA-512", + "content": "d19b7eb372fb55fd5b8b0599dbd6804625582f1ee23069c4525f71df77db07f8f78d1f35bbf3b62dba8af819b508348d0ca56d27f623c18ed351de5291e2d02f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Nathan Rajlich \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/file-uri-to-path@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/file-uri-to-path" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/file-uri-to-path/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/file-uri-to-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fstream-ignore@1.0.5", + "author": "Isaac Z. Schlueter", + "name": "fstream-ignore", + "version": "1.0.5", + "description": "A thing for ignoring files based on globs", + "hashes": [ + { + "alg": "SHA-512", + "content": "55546e3ace35554aa9b441a247437966858471f1af6c646a2c83726408474671770c7e70aea8cd918af755b468667238d416603bbcc855d8a86dcd774d5235a3" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fstream-ignore@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/fstream-ignore#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/fstream-ignore/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/fstream-ignore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gh-pages@0.12.0", + "author": "Tim Schaub", + "name": "gh-pages", + "version": "0.12.0", + "description": "Publish to a gh-pages branch on GitHub (or any other branch on any other remote)", + "hashes": [ + { + "alg": "SHA-512", + "content": "76c4ae8e58da2bc54e7450ecb1f2fc74d142d6e0138d7a8e5696deae213aa6bdd74fe9322070e3a41a4cb5e170f9d0f9f6315d83ae1ddef968425fe36d850a0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/gh-pages@0.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tschaub/gh-pages" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tschaub/gh-pages/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tschaub/gh-pages.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async@2.1.2", + "author": "Caolan McMahon", + "name": "async", + "version": "2.1.2", + "description": "Higher-order functions and common patterns for asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d2560a1b938aefeb547d3d4483b58b7b98f541da8971351e51589700b07ebbebf79fd756d4670beeefe44662b61ab957433dc3b9d7dbfaf304615d0b71b15f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2016 Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/caolan/async#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/caolan/async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/caolan/async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/graceful-fs@4.1.10", + "name": "graceful-fs", + "version": "4.1.10", + "description": "A drop-in replacement for fs, making various improvements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f41ca1b2c4767cf56c3598f8efca9451b29f98bd3eb790435728d286dc9964b88aed90c002b1457e8a723938f4334e70136b493e2b00e224e79d79766283ef38" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/graceful-fs@4.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-graceful-fs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-graceful-fs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/node-graceful-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/q@1.4.1", + "author": "Kris Kowal", + "name": "q", + "version": "1.4.1", + "description": "A library for promises (CommonJS/Promises/A,B,D)", + "hashes": [ + { + "alg": "SHA-512", + "content": "915fc24e1917a3ac72144654ba0c3ffa920ecb05dc0db15881272de5c4f782a95b901135489770cba510a19be8762585fdc9102d9c8313f06ed4cea056ee6557" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2009–2014 Kristopher Michael Kowal. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/q@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriskowal/q" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kriskowal/q/issues" + }, + { + "type": "vcs", + "url": "git://github.com/kriskowal/q.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/q-io@1.13.2", + "author": "Kris Kowal", + "name": "q-io", + "version": "1.13.2", + "description": "IO using Q promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "c60c657cdde2390e0b32eca16fcf9a89bb6fe7b1e7a99ab27022da137a3faa47aabc1b847dbab8b54e281e3207818fcb54ddef26cf86cbd84a87c933967ba0ee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nCopyright 2009-2013 Kristopher Michael Kowal. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/q-io@1.13.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/kriskowal/q-io/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kriskowal/q-io/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kriskowal/q-io.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mimeparse@0.1.4", + "name": "mimeparse", + "version": "0.1.4", + "description": "Basic functions for handling mime-types.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e2b80b09258e1cd2817dee81ca89cf67bdadb2d50176ca16091b72d72f2b3ffdff12350f3d785b86676f73eb6676f42018e1e9dd252eb3162294b5444512ba2" + } + ], + "purl": "pkg:npm/mimeparse@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/kriskowal/mimeparse/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kriskowal/mimeparse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kriskowal/mimeparse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@1.2.2", + "author": "Nathan LaFreniere", + "name": "qs", + "version": "1.2.2", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "purl": "pkg:npm/qs@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/hapijs/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url2@0.0.0", + "author": "Kris Kowal", + "name": "url2", + "version": "0.0.0", + "description": "Node's URL module plus relative pathing", + "hashes": [ + { + "alg": "SHA-512", + "content": "81bfd74f59b69a758e21b4306b957d0ead8ed3b7e465bb6ed4ad160002ae68d497d1cf29b29da3a2f2536dbbcf282a629aeb5da0af635ce7a30c2b6f40ea0a38" + } + ], + "purl": "pkg:npm/url2@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kriskowal/url2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kriskowal/url2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/kriskowal/url2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@6.0.4", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "6.0.4", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob@6.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/globule@1.3.4", + "author": "\"Cowboy\" Ben Alman", + "name": "globule", + "version": "1.3.4", + "description": "An easy-to-use wildcard globbing library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "38f4c87e130187b25b0580e96b96fe439a6d98c58ac1c35c15247fd1ceadf15e1fdd9015044b0a358dfb41d56a98b45848c84e50662b6344214a8129cc6aff12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2018 \"Cowboy\" Ben Alman\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/globule@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cowboy/node-globule" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cowboy/node-globule/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cowboy/node-globule.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob@7.1.7", + "author": "Isaac Z. Schlueter", + "name": "glob", + "version": "7.1.7", + "description": "a little globber", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c5474ccba54d9809a471c28089bcbe94bc21f6245c85548bf04cbb087f6d40b8794cb240358614dd93e2e5609b4e958b7dbfa76fb330f604646a04bfa240af5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n## Glob Logo\n\nGlob's logo created by Tanya Brassie , licensed\nunder a Creative Commons Attribution-ShareAlike 4.0 International License\nhttps://creativecommons.org/licenses/by-sa/4.0/\n" + } + } + } + ], + "purl": "pkg:npm/glob@7.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-glob#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-glob/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glogg@1.0.2", + "author": "Gulp Team", + "name": "glogg", + "version": "1.0.2", + "description": "Global logging utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e66c14a12b81938e18e04b21ca2a9c1fde599ed6c375342a0374184abc66ce3dbc022d2f5c118c1f5029480347d788f6b0846da8213283a3dfb2e3fb1253840c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2018 Blaine Bublitz and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/glogg@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/glogg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/glogg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/glogg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sparkles@1.0.1", + "author": "Gulp Team", + "name": "sparkles", + "version": "1.0.1", + "description": "Namespaced global event emitter", + "hashes": [ + { + "alg": "SHA-512", + "content": "7523b40c36146a152dff4fe90ff22cdd5226e531898e5b9d6741d5ca69a1605e9e340e773d52e19d4934ce74986c7f08601b8974213ed65b91db68cd2cc69077" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blaine Bublitz and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/sparkles@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/sparkles#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/sparkles/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/sparkles.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gulp-util@3.0.8", + "author": "Fractal", + "name": "gulp-util", + "version": "3.0.8", + "description": "Utility functions for gulp plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab9a163dcd769704854bd87fe152231bed4db8d0e5278f32c15d89288b58e1871cfe7d5f5c97983d542c7eee59ae1422ec51920c16a5c1408b6abfc6c875ca1b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Fractal \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gulp-util@3.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/gulp-util#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/gulp-util/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/gulp-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dateformat@2.2.0", + "author": "Steven Levithan", + "name": "dateformat", + "version": "2.2.0", + "description": "A node.js package for Steven Levithan's excellent dateFormat() function.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c1517c00266c7748b6cf9e2a347d91826817456208c557f72a8bbb903b4bfbfe9ddd3beca80221338c8a2ae6c8206266928b0d76c13a4626eadbbbad7fd32a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(c) 2007-2009 Steven Levithan \r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/dateformat@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-dateformat" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-dateformat/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/felixge/node-dateformat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gulplog@1.0.0", + "author": "Blaine Bublitz", + "name": "gulplog", + "version": "1.0.0", + "description": "Logger for gulp and gulp plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "866e8df27ae6dd8d3c8d789ee3c8ec0b9e5e099cfd9a76f83a2ac04ad124d9d7aa7b28575370b5a2d0d587e71cb6d32e735b018ba457e9927bdb486cf510af83" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Blaine Bublitz, Eric Schoffstall and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/gulplog@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/gulplog#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/gulplog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/gulplog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-gulplog@0.1.0", + "author": "Blaine Bublitz", + "name": "has-gulplog", + "version": "0.1.0", + "description": "Check if gulplog is available before attempting to use it", + "hashes": [ + { + "alg": "SHA-512", + "content": "f85e06ccb8f01cd343100256d830b5c577c4a0f9110e651d27b081630e0ca6ab43c0e9ea74898997b196969ab1f96928ebffc9f2e2939c87b8c194afef20aa9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 gulp\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/has-gulplog@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/has-gulplog#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/has-gulplog/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/has-gulplog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._reescape@3.0.0", + "author": "John-David Dalton", + "name": "lodash._reescape", + "version": "3.0.0", + "description": "The modern build of lodash’s internal `reEscape` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a395abe6e72f85515205def17707be46c97af3b1f615f0396fdcbe26129b81f657a0f0deb27ffeeb534ea22cfc7d7d8d0cbf7921569f69ec3c7498657a57939" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._reescape@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._reevaluate@3.0.0", + "author": "John-David Dalton", + "name": "lodash._reevaluate", + "version": "3.0.0", + "description": "The modern build of lodash’s internal `reEvaluate` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ab3f074373ae6226205e51ee67fcb22377b562cbdf5b2b00dd93b6799637d9834b8544595f41a0b2f6d67860c01a83d580666955a5ed6266b90830c48c1c3df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._reevaluate@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.template@3.6.2", + "author": "John-David Dalton", + "name": "lodash.template", + "version": "3.6.2", + "description": "The modern build of lodash’s `_.template` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f38bd81712249a2754885c62740fca8e31fda40c9ca96fa1f7cd23ec5bb3e6ac51b4ef69801ecc0c54ddcacd4dec0e6672e711883c84ab87eeb258c8b51d53fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.template@3.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._basecopy@3.0.1", + "author": "John-David Dalton", + "name": "lodash._basecopy", + "version": "3.0.1", + "description": "The modern build of lodash’s internal `baseCopy` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac547a5699b81de08ad563c6be365227eef28a4f1df0f554742271e6b4f6a68806e157bfd994bb91f98ee65e53da8e55da6aa53487d217931996bd7ec4ea1841" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._basecopy@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._basetostring@3.0.1", + "author": "John-David Dalton", + "name": "lodash._basetostring", + "version": "3.0.1", + "description": "The modern build of lodash’s internal `baseToString` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "993cc0af568d02ffe2ed6e37bce47fb83fda2789e06edb11682b9ba7605f66194653f78e4548e0ffb17a5f4a2b34c76fdf724eadd806c9bb6f30dfe9a37116ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._basetostring@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._basevalues@3.0.0", + "author": "John-David Dalton", + "name": "lodash._basevalues", + "version": "3.0.0", + "description": "The modern build of lodash’s internal `baseValues` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fde309793f5dee12a94283b39c34d84c43c2af592232a97cce3eeb118070bd0cade8e783fa3f7c6d6d79556d10011b8ab98129a9ec40dd274312b96f475fa32" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._basevalues@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.escape@3.2.0", + "author": "John-David Dalton", + "name": "lodash.escape", + "version": "3.2.0", + "description": "The lodash method `_.escape` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f53d931781a6835990d2bee359ffc5ce7183b684e283a997a5e5a76d477d1529002da16b3fe4039e140d2f3d5f26a223f396a7bb17870fdadce915ec10c9e95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2016 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.escape@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._root@3.0.1", + "author": "John-David Dalton", + "name": "lodash._root", + "version": "3.0.1", + "description": "The internal lodash function `root` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b4a56b8548aeb1e045e133576167c81c84db46ec932a06dac77685055165c3edd2673525337b51aec90af9b0eb34682be019e237a3f3895bc7f871aec50f199" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2012-2016 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._root@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.restparam@3.6.1", + "author": "John-David Dalton", + "name": "lodash.restparam", + "version": "3.6.1", + "description": "The modern build of lodash’s `_.restParam` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f8fdaae38eeab89e8894269b77c92e8a20a0ed27035ed9f21880cab26182a87887d5d6212abcfc210b1db7a3e47d773a2e1a284300f37575321159aef393cb7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.restparam@3.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.templatesettings@3.1.1", + "author": "John-David Dalton", + "name": "lodash.templatesettings", + "version": "3.1.1", + "description": "The lodash method `_.templateSettings` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2d80bcfe8b701af666609e3aff3bebfdaee299b0fb27772eea3d939c85baa4d9c9d353565a95d28afafee6e785a8288cb18ae3194ca4f61fcd45f0178073765" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2016 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.templatesettings@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/multipipe@0.1.2", + "name": "multipipe", + "version": "0.1.2", + "description": "pipe streams with centralized error handling", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed9c6b5326d8bfd3689e85e0c283aab52b48bb5f03d5cdde1598f6ee1aa07f9901ac117c43eb44f15d0c5bc74a33940b9103e1d498616ca8072d8f6489fa2fe1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/multipipe@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/multipipe#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/multipipe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/juliangruber/multipipe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object-assign@3.0.0", + "author": "Sindre Sorhus", + "name": "object-assign", + "version": "3.0.0", + "description": "ES6 Object.assign() ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object-assign@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/object-assign#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/object-assign/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/object-assign.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/replace-ext@0.0.1", + "author": "Fractal", + "name": "replace-ext", + "version": "0.0.1", + "description": "Replaces a file extension with another one", + "hashes": [ + { + "alg": "SHA-512", + "content": "005056072f445514dafcb844706f100cfdc5be9c19aa6bcdd90143b89b3015e6958569d9329f2adc4e9977dd12474e0f948c1f19dc958cdc8b3f27a7fde93909" + } + ], + "purl": "pkg:npm/replace-ext@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/wearefractal/replace-ext" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wearefractal/replace-ext/issues" + }, + { + "type": "vcs", + "url": "git://github.com/wearefractal/replace-ext.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vinyl@0.5.3", + "author": "Fractal", + "name": "vinyl", + "version": "0.5.3", + "description": "A virtual file format", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f9cdd7f7581f6ecebec8168550db0653994c072fc70c656246ccb04d087359dcd07a1d332c60006db7bcfcb4018820d2d7c80a1bf41f5ad72cd518c14e60a10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Fractal \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vinyl@0.5.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/wearefractal/vinyl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wearefractal/vinyl/issues" + }, + { + "type": "vcs", + "url": "git://github.com/wearefractal/vinyl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/handle-thing@1.2.5", + "author": "Fedor Indutny", + "name": "handle-thing", + "version": "1.2.5", + "description": "Wrap Streams2 instance into a HandleWrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ddf4461c05f94c505e92b092c60c00d51f9d234b32cd21452b38594518aff3c2a8a601383dfb06388ec2d6091ec3652c6dd817cad3e9621d431da11d756e32e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/handle-thing@1.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/handle-thing#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/handle-thing/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/handle-thing.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/har-schema@1.0.5", + "author": "Ahmad Nassri", + "name": "har-schema", + "version": "1.0.5", + "description": "JSON Schema for HTTP Archive (HAR)", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aa96ecface1197f1cc9169342514c3f0f346d22551b6c7f7056fc64f85420b1a01e46bd4aca24082390829bde78f7abaa27593ab4f5e22a6a7c96fb20b716e5" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Ahmad Nassri \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/har-schema@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ahmadnassri/har-schema" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ahmadnassri/har-schema/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ahmadnassri/har-schema.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/har-validator@4.2.1", + "author": "Ahmad Nassri", + "name": "har-validator", + "version": "4.2.1", + "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e64f64f49658dbc5d4197eca6c9e8f6182b1b7522afa2ace5a7e2b26eb6a68c6a04ceac0e7304b8f9b34eaf17374384c2a28b2dd8758d0237ab213ae8dcdbdf" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Ahmad Nassri \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/har-validator@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ahmadnassri/har-validator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ahmadnassri/har-validator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ahmadnassri/har-validator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hash-base@2.0.2", + "author": "Kirill Fomichev", + "name": "hash-base", + "version": "2.0.2", + "description": "abstract base class for hash-streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1344e810d7f4b113a2a6c564af5c7bd18fdd3f5e8d49bd94a1a1f9d817e7fa66c1ad4787844bb59fad0ccf6a59b26a07ca6425e95678ad89179b66e956b1b8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/hash-base@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crypto-browserify/hash-base" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crypto-browserify/hash-base/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crypto-browserify/hash-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hawk@3.1.3", + "author": "Eran Hammer", + "name": "hawk", + "version": "3.1.3", + "description": "HTTP Hawk Authentication Scheme", + "hashes": [ + { + "alg": "SHA-512", + "content": "5fcc5b99373571b3d77105785a42dc44c00bbb2a3185fa450139b2b82c493ce02fac34b80cd9ec4c03a6294c4c4ce594e93ceb4ce9313cac08c7964ea49552ae" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2012-2014, Eran Hammer and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hueniverse/hawk/graphs/contributors\n" + } + } + } + ], + "purl": "pkg:npm/hawk@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hueniverse/hawk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hueniverse/hawk/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hueniverse/hawk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sntp@1.0.9", + "author": "Eran Hammer", + "name": "sntp", + "version": "1.0.9", + "description": "SNTP Client", + "hashes": [ + { + "alg": "SHA-512", + "content": "edb8153809cf8f75e3aca639efb4bea6e08a18246552b72b11db0c7915e583d1a17f975fff1362eac38d51ae375ab1d47774e324117b3b4e23628898d0555ad0" + } + ], + "purl": "pkg:npm/sntp@1.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hueniverse/sntp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hueniverse/sntp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hueniverse/sntp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-entities@1.4.0", + "author": "Marat Dulin", + "name": "html-entities", + "version": "1.4.0", + "description": "Faster HTML entities encode/decode library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f27c6370171df30a2f6de2b1ee1df04e38b87bafab85a56e3cda4cab05a09c787e37d4e8aac0ace97ced59104f43e52dceca0c01d299b5410da15cd4fc432d64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Dulin Marat\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/html-entities@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mdevils/node-html-entities#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mdevils/node-html-entities/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mdevils/node-html-entities.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/html-webpack-plugin@2.30.1", + "author": "Charles Blaxland", + "name": "html-webpack-plugin", + "version": "2.30.1", + "description": "Simplifies creation of HTML files to serve your webpack bundles", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ca418bc74c9614c0f817cf0505dc4c0f3e4c90cafcdfcfeeacf05c3679a9b19747118a7d6d0e7629a5c0d85b3f1422860c5f80a06ada6546ad7ca1dce6a405b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Charles Blaxland\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/html-webpack-plugin@2.30.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jantimon/html-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jantimon/html-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jantimon/html-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pretty-error@2.1.2", + "author": "Aria Minaei", + "name": "pretty-error", + "version": "2.1.2", + "description": "See nodejs errors with less clutter", + "hashes": [ + { + "alg": "SHA-512", + "content": "118e680f39ac5f9c2fbb29c0072ae66343f485ca7e4299c029b26783603630f8d52970b1ac3494933821549e1918f22ff890b8817f1f3d45ac702d11b63b161b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pretty-error@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/pretty-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/pretty-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/pretty-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/renderkid@2.0.7", + "author": "Aria Minaei", + "name": "renderkid", + "version": "2.0.7", + "description": "Stylish console.log for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "a02705cb168cacab0a713639f6a9c202d9835522df3dbaefe80ded55b3dd14c32bbf98da2b5d15ea6e3470ab283cd840a8deab9875bdb2cc16e28debb92af051" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Aria Minaei\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/renderkid@2.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/AriaMinaei/RenderKid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/AriaMinaei/RenderKid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/AriaMinaei/RenderKid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-select@4.3.0", + "author": "Felix Boehm", + "name": "css-select", + "version": "4.3.0", + "description": "a CSS selector compiler/engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "75440e068a9d47b43057dd16cac5cf2d71b92ceee785806089655fc45f340ca3c5f33c75b7fa54776158cbbdde9a0df3ae3b4ce9dce66206c729f576af188740" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/css-select@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/css-select#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/css-select/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/css-select.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-what@6.1.0", + "author": "Felix Böhm", + "name": "css-what", + "version": "6.1.0", + "description": "a CSS selector parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "6be10fa03fae66235f87ee5fc70da73bd43015aea725ed8eaf7e5f198e88a70d51dd1e001b3d5dd53119ac27a0bf0d984e66748d78ab198973c71a58487c2912" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/css-what@6.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/css-what#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/css-what/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fb55/css-what.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domhandler@4.3.1", + "author": "Felix Boehm", + "name": "domhandler", + "version": "4.3.1", + "description": "Handler for htmlparser2 that turns pages into a dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2622b4e21d07b79bbff347dd2cc084995e3390d87605ca0c141999ffdd56b5867ca955d22a38b0edf5cc8053e71dc49980ea375dd8a71ef9a70d478c7f9478c0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domhandler@4.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/domhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/domhandler/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/domhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domelementtype@2.3.0", + "author": "Felix Boehm", + "name": "domelementtype", + "version": "2.3.0", + "description": "all the types of nodes in htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "052281f934a9329148fc73b108daf53bc68c39367c853de9337190d30fe65919a48440d2149924cb3cf85d0b01578e010a1c0692b0df3328d50f4780d9a155df" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domelementtype@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/domelementtype#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/domelementtype/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/domelementtype.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domutils@2.8.0", + "author": "Felix Boehm", + "name": "domutils", + "version": "2.8.0", + "description": "Utilities for working with htmlparser2's dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e07765dc27f363130fbbb45bdf2b13b3098299b1d72de6573343665a418f038f3ee97c00f719ba7cc92256b6b78823fbc394c566c706baa4799dc48620b6d0e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domutils@2.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/domutils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/domutils/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/domutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@1.4.1", + "author": "Felix Boehm", + "name": "dom-serializer", + "version": "1.4.1", + "description": "render domhandler DOM nodes to a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "974214d293f32d648705c89e65ba4e2a09089f7b6cdef021ed9b85c9737027125793f7381b08fdc5a4c9c080d54025dac160f4a9bdc8ccc187e6b82541a3b45c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License\n\n(The MIT License)\n\nCopyright (c) 2014 The cheeriojs contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-serializer@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/cheeriojs/dom-renderer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cheeriojs/dom-renderer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/cheeriojs/dom-renderer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/entities@2.2.0", + "author": "Felix Boehm", + "name": "entities", + "version": "2.2.0", + "description": "Encode & decode XML and HTML entities with ease", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f62d9318975173bbb61204a83e46844e7a5a4e68dadc1a613d019b9b7837eb08489ae3cde85b8308e15c8577954d1c8810ffbaa6d48d305072b57899e7db2db" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/entities@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/entities#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/entities/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/entities.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nth-check@2.1.1", + "author": "Felix Boehm", + "name": "nth-check", + "version": "2.1.1", + "description": "Parses and compiles CSS nth-checks to highly optimized functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "59e04e763bbc4a7ccf379bd3509631614c4b797a426953f98b97b42c5f1f83b58e445d9677bc055ffa64d2d61993bb3c4fe27b54bcb40dae89d7ec024f402d1e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/nth-check@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/nth-check" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/nth-check/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fb55/nth-check.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@6.1.0", + "author": "Felix Boehm", + "name": "htmlparser2", + "version": "6.1.0", + "description": "Fast & forgiving HTML/XML parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "22089e3628d431b903a2fca828e6d4d435219b58b035813f7ee89f1281077ddd6864a64368e3414a46a5ed8d35b21c6c338f51e1768c7467b3dd69c5f547e209" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, Chris Winberry . All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/htmlparser2@6.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/htmlparser2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/htmlparser2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/htmlparser2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-proxy-middleware@0.17.4", + "author": "Steven Chim", + "name": "http-proxy-middleware", + "version": "0.17.4", + "description": "The one-liner node.js proxy middleware for connect, express and browser-sync", + "hashes": [ + { + "alg": "SHA-512", + "content": "26d1f75198eee285c375c6b6f3f9249db9bf0859addf9bf2d185743cd38c5965a99f7ad3f5657de485cde39d71c011928f2f4bd026a1d4ef5308ccad6e82dd7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Steven Chim\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/http-proxy-middleware@0.17.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chimurai/http-proxy-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chimurai/http-proxy-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chimurai/http-proxy-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/https-browserify@0.0.1", + "author": "James Halliday", + "name": "https-browserify", + "version": "0.0.1", + "description": "https module compatability for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "1230d015b809af5bc30ffd7be5425e497de7710dfe4549c22f9364b614061ef17854d1e5cd3cbc89f25f4eacf8eea88f46a6851f9f3e09bb86df1e755ae0755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/https-browserify@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/https-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/https-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/https-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/https-proxy-agent@1.0.0", + "author": "Nathan Rajlich", + "name": "https-proxy-agent", + "version": "1.0.0", + "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", + "hashes": [ + { + "alg": "SHA-512", + "content": "399866efffc90e742d84c56a94f01f919c8f3b67cc85f1d8ea063e8d9717f2b2df1621ad1e2210adf0fcd16bc20c734c43bec0937af90a23d10c3dab373a3639" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/https-proxy-agent@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-https-proxy-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-https-proxy-agent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-https-proxy-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/internal-ip@1.2.0", + "author": "Sindre Sorhus", + "name": "internal-ip", + "version": "1.2.0", + "description": "Get your internal IPv4 or IPv6 address", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f319f4dab173e6c22cd03f85d5dab47aaf6be9f138e53a932726a1bd232da2d6997596465d663e6b4a921ced81465f69d2e3a3cf800184c93f90e61136141da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/internal-ip@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/internal-ip#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/internal-ip/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/internal-ip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/interpret@1.4.0", + "author": "Gulp Team", + "name": "interpret", + "version": "1.4.0", + "description": "A dictionary of file extensions and associated module loaders.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a013841f0762e4a7db880a7ec102aa2c730e1264ff644c4da1c62148de304f99725f76a89a8536d4b8a1ac3283761ada8bf40c61622a00715be0b1bd47bd16c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/interpret@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/interpret#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/interpret/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/interpret.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-odd@1.0.0", + "author": "Jon Schlinkert", + "name": "is-odd", + "version": "1.0.0", + "description": "Returns true if the given number is odd.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8887190a08aee96678f8f1606f693437e8eafb3f298662a999ad236a92b866537a5a924a764d686e37b847db96ea2601fe5eae0867740d777f9056c8657441c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-odd@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-odd" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-odd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-odd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/isbinaryfile@3.0.3", + "name": "isbinaryfile", + "version": "3.0.3", + "description": "Detects if a file is binary in Node.js. Similar to Perl's -B.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1c2412f9b53776392d1d3388f3d3bc107798347420aa2215313c81ad65f6b92fa85696f5793074c84f2fc3040b05f8e7b62d2d57de4ac1521370686516a56c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2017 Garen J. Torikian\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/isbinaryfile@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gjtorikian/isBinaryFile#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gjtorikian/isBinaryFile/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gjtorikian/isBinaryFile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-alloc@1.2.0", + "name": "buffer-alloc", + "version": "1.2.0", + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.alloc`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "085b074208ed5b550285d5e06f2246b679be3bfb8b41e65db5b0e8f267d48185c21d2335c20ad5c579ba6d2cab52e12b11bfb8b185460b3012051a2def3caba3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/buffer-alloc@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/buffer-alloc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/buffer-alloc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/buffer-alloc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-alloc-unsafe@1.1.0", + "name": "buffer-alloc-unsafe", + "version": "1.1.0", + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.allocUnsafe`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c433688c20441d276ca33c9a1222c95d9e5795680935a16dc305553293238bb04b0598473d927f921453f3fa0979e0a40dc650e7030097a2c392f4e931db102" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/buffer-alloc-unsafe@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/buffer-alloc-unsafe#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/buffer-alloc-unsafe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/buffer-alloc-unsafe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer-fill@1.0.0", + "name": "buffer-fill", + "version": "1.0.0", + "description": "A [ponyfill](https://ponyfill.com) for `Buffer.fill`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fbcdec4d0708a26823860e0f71357f4f0668ebb9b6e546410dba9b6bcae23ae144645c316e9bd8a5fc918bf0b9bcc187c05e9ade7555d7673ede3078a58a689" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/buffer-fill@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/buffer-fill#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/buffer-fill/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/buffer-fill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul@0.4.5", + "author": "Krishnan Anantheswaran", + "name": "istanbul", + "version": "0.4.5", + "description": "Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests and browser tests. Built for scale", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ccb5d9f886f2b41e3525cebd43aca49463cc9c869aedf1dcc73a0636297b08847bb93ee41010e4ccdbb815f576e5ca89fb6941ff4d21488d11c438317f1513e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul@0.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gotwarlost/istanbul#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gotwarlost/istanbul/issues" + }, + { + "type": "vcs", + "url": "git://github.com/gotwarlost/istanbul.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/abbrev@1.0.9", + "author": "Isaac Z. Schlueter", + "name": "abbrev", + "version": "1.0.9", + "description": "Like ruby's abbrev module, but in js", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e77bdfc8890fe1cc8858ea97439db06dcfb0e33d32ab634d0fff3bcf4a6e69385925eb1b86ac69d79ff56d4cd35f36d01f67dff546d7a192ccd4f6a7138a2d1" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/abbrev@1.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/abbrev-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/abbrev-js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/isaacs/abbrev-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escodegen@1.8.1", + "name": "escodegen", + "version": "1.8.1", + "description": "ECMAScript code generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "a85717d17264760f8f077c636591bfc0a4ae4f53e7416c79efe4d54a320c9882dddb20bfe81c981253f0267b250ecb96b92029e00c091ae99aac002625c8792b" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/escodegen@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/estools/escodegen" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/escodegen/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/escodegen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/estraverse@1.9.3", + "name": "estraverse", + "version": "1.9.3", + "description": "ECMAScript JS AST traversal functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd9e729f7d6cfcc4dd4153fd9cefd9fd9c1f470f3a349e2614ab1eb1caa527ca8027432c96a4e4dd6447a209c87c041bb9d79b78c29f599a055f5619fd101a7" + } + ], + "purl": "pkg:npm/estraverse@1.9.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/estraverse" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/estraverse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/estools/estraverse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resolve@1.1.7", + "author": "James Halliday", + "name": "resolve", + "version": "1.1.7", + "description": "resolve like require.resolve() on behalf of files asynchronously and synchronously", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c1a6eb98b98e6316c962fc922cd6895dc3a7ce402062a2886a59983fda189a3b26d739fb789689eff39b8338a5dd7fcae1c8ad79f5cc54e5c0dc2bf34a93ccf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/resolve@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/node-resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/node-resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/node-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.2.0", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.2.0", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "purl": "pkg:npm/source-map@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-instrumenter-loader@2.0.0", + "author": "Kir Belevich", + "name": "istanbul-instrumenter-loader", + "version": "2.0.0", + "description": "Istanbul instrumenter loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "c20b1bc89d9462fb4ddfdb2c0adbcd53614a1d3371d934159ecc3745593f5967512ce1e131e4dfb7e8aa9d614e2e67b5e30de67f6844812c5159aae8f74d15e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright (c) 2017–present Kir Belevich\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-instrumenter-loader@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/deepsweet/istanbul-instrumenter-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/deepsweet/istanbul-instrumenter-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/deepsweet/istanbul-instrumenter-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-instrument@1.10.2", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-instrument", + "version": "1.10.2", + "description": "Core istanbul API for JS code coverage", + "hashes": [ + { + "alg": "SHA-512", + "content": "97b4c3fd59c1b08076389bd2cb168b5bf69bd7ef7677164d1fdc0b1fbb873cf8a8cb7259f2d9f1d945d474a99d92098fd8414fce0eb8093a143fa7404b7537d9" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-instrument@1.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/istanbuljs/istanbuljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-coverage@1.2.1", + "author": "Krishnan Anantheswaran", + "name": "istanbul-lib-coverage", + "version": "1.2.1", + "description": "Data library for istanbul coverage objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1a5f39ee10f089bc69cc4917ede2e743443b5bd55de991090c308e4b23ee87b90cf9a10e09d94167d47f36ada037a89b7238b924c15a880814248e71ad9f998" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2012-2015 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-lib-coverage@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/istanbuljs/istanbuljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/istanbuljs/istanbuljs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/istanbuljs/istanbuljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasmine@2.99.0", + "name": "jasmine", + "version": "2.99.0", + "description": "Command line jasmine", + "hashes": [ + { + "alg": "SHA-512", + "content": "926b830bee9cf6d03c04064677bc26b9c58aaccfda082052cc2244a91821bf0f652956a5c3ea60f3c68dfc11488a4999c114c3e7b4261da990db046929bdc50d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jasmine@2.99.0", + "externalReferences": [ + { + "type": "website", + "url": "http://jasmine.github.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jasmine/jasmine-npm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jasmine/jasmine-npm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasmine-core@2.99.1", + "name": "jasmine-core", + "version": "2.99.1", + "description": "Official packaging of Jasmine's core files for use by Node.js projects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "adaf7b538aaedce09c231bcde9e837932cbc6cbac80ff4e0c5a7d218c3080a0dd2171e42fec51f0cfa623a1ef2a08b0776d8eb39576d4fdae279886a3ac87d5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jasmine-core@2.99.1", + "externalReferences": [ + { + "type": "website", + "url": "http://jasmine.github.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jasmine/jasmine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jasmine/jasmine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasmine-spec-reporter@3.3.0", + "author": "Bastien Caudan", + "name": "jasmine-spec-reporter", + "version": "3.3.0", + "description": "Spec reporter for jasmine behavior-driven development framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdb4e8a03d3ea704cbf4262408e566238836b33a7b17d8e9c10b13b4e8764deea65a98f44c093f1b50013b2d74cd974f1289bc6ef8caec318d9ce45f727ba20d" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + } + } + } + ], + "purl": "pkg:npm/jasmine-spec-reporter@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bcaudan/jasmine-spec-reporter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bcaudan/jasmine-spec-reporter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bcaudan/jasmine-spec-reporter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasminewd2@2.2.0", + "author": "Julie Ralph", + "name": "jasminewd2", + "version": "2.2.0", + "description": "WebDriverJS adapter for Jasmine2.", + "hashes": [ + { + "alg": "SHA-512", + "content": "467d2765ee2b7c387303adc097764687413e25398ce844996172462aea8a19939bb0007d7f05cf0f4dc68ed204bc90433a137de13e4ccdbc194aacc51d240fce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jasminewd2@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/jasminewd" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/jasminewd/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/jasminewd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma@1.7.1", + "author": "Vojta Jína", + "name": "karma", + "version": "1.7.1", + "description": "Spectacular Test Runner for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "939a418c70e19a475a51c7270bb804de6073663731cb162c6156aa88bd86e40aa57cbc813b99f0d9574d2be3b5e9cbde10f77f80839650b1fb82489863054d1e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (C) 2011-2016 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/karma@1.7.1", + "externalReferences": [ + { + "type": "website", + "url": "http://karma-runner.github.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/karma-runner/karma/issues" + }, + { + "type": "vcs", + "url": "git://github.com/karma-runner/karma.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colors@1.4.0", + "author": "Marak Squires", + "name": "colors", + "version": "1.4.0", + "description": "get colors in your node.js console", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e3b2e530a43798f7cfb2cfde7d3a550aea6ee62c133ed4c106e6869e9dfb909cd9eb424d56bed72f16037714d0cfddfd8d999db5d6dd263447d210dd61d1e22" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nOriginal Library\n - Copyright (c) Marak Squires\n\nAdditional Functionality\n - Copyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/colors@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Marak/colors.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Marak/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/Marak/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/log4js@0.6.38", + "author": "Gareth Jones", + "name": "log4js", + "version": "0.6.38", + "description": "Port of Log4js to work with node.", + "hashes": [ + { + "alg": "SHA-512", + "content": "09dfa495bc7b96489a6a610877dff4a1d1f1bff3c51c3cf6135da411f77afc2cc83990f4f380f3cac01247f0e8b788b57583c140a0b7af65c8111f9d7db2ce9b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright 2015 Gareth Jones (with contributions from many other people)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/log4js@0.6.38", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nomiddlename/log4js-node#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/nomiddlename/log4js-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nomiddlename/log4js-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@4.3.6", + "name": "semver", + "version": "4.3.6", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@4.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qjobs@1.2.0", + "author": "Franck TABARY", + "name": "qjobs", + "version": "1.2.0", + "description": "qjobs is a simple and stupid queue job manager for nodejs", + "hashes": [ + { + "alg": "SHA-512", + "content": "f18389107b71a72480ddf143c8247103e51457e7c0fab4d69ee5afca538afcd0a3858f9be28702b66bbc4edb166fe998794f860877ff4bae8a645fc0b2d78a1e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013-2018 Franck34\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/qjobs@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/franck34/qjobs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/franck34/qjobs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/franck34/qjobs.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/socket.io@1.7.3", + "name": "socket.io", + "version": "1.7.3", + "description": "node.js realtime framework server", + "hashes": [ + { + "alg": "SHA-512", + "content": "aca318fd4ee00666c78f0ae58dc3c7cbeb845d9e7def75af3b60eba282fae37c35476e12655cec9a1bcd9891636158402f8cbbc2b649252ff39d47e9d1559f2b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2016 Automattic \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socket.io@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/socket.io#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/socket.io/issues" + }, + { + "type": "vcs", + "url": "git://github.com/socketio/socket.io.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io@1.8.3", + "author": "Guillermo Rauch", + "name": "engine.io", + "version": "1.8.3", + "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f50d621c92dc38851c2bbfa9d6c7efb99c51f65fae31d7a3001b63f42e68b90ef75f8b723e26173b24a24874098325afb9699fe298757b75644fcb60aa8e1dc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014 Guillermo Rauch \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software \nand associated documentation files (the 'Software'), to deal in the Software without restriction, \nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, \nsublicense, and/or sell copies of the Software, and to permit persons to whom the Software is \nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or \nsubstantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING \nBUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, \nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, \nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/engine.io@1.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/socketio/engine.io.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ws@1.1.2", + "author": "Einar Otto Stangvik", + "name": "ws", + "version": "1.1.2", + "description": "simple to use, blazing fast and thoroughly tested websocket client, server and console for node.js, up-to-date against RFC-6455", + "hashes": [ + { + "alg": "SHA-512", + "content": "a372aa8a95cd51d4bbc2943304749ed7cd250463bad12a0ad32568dc260981bd8c9286ee5ae057e9d86460fe4e4422dde79cbe49a7e530e5797ea001e77bb1e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ws@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/websockets/ws#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/websockets/ws/issues" + }, + { + "type": "vcs", + "url": "git://github.com/websockets/ws.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/socket.io-client@1.7.3", + "name": "socket.io-client", + "version": "1.7.3", + "description": "[![Build Status](https://secure.travis-ci.org/socketio/socket.io-client.svg?branch=master)](http://travis-ci.org/socketio/socket.io-client) [![Dependency Status](https://david-dm.org/socketio/socket.io-client.svg)](https://david-dm.org/socketio/socket.io-client) [![devDependency Status](https://david-dm.org/socketio/socket.io-client/dev-status.svg)](https://david-dm.org/socketio/socket.io-client#info=devDependencies) ![NPM version](https://badge.fury.io/js/socket.io-client.svg) ![Downloads](http://img.shields.io/npm/dm/socket.io-client.svg?style=flat) [![](http://slack.socket.io/badge.svg?)](http://slack.socket.io)", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd6f71afd5f24c97a3152fffec635998b4cb91448072f392c515d786ba2357eef06e84c507c0aebcad540425b736207692aca2d21f5c4dec83edd5e375477d8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Guillermo Rauch\n\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/socket.io-client@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Automattic/socket.io-client#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/socket.io-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Automattic/socket.io-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/engine.io-client@1.8.3", + "name": "engine.io-client", + "version": "1.8.3", + "description": "Client for the realtime Engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebeac89d0bbcc54edcd1f205e910b84912ae1d558fb7c5ead1b6584b894cad3c268518a778e94432c5375f4cd2e661c8bc2809b26a4e2845fb0e18a11a4ee3d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2015 Automattic \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/engine.io-client@1.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/socketio/engine.io-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/socketio/engine.io-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/socketio/engine.io-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmlhttprequest-ssl@1.5.3", + "author": "Michael de Wit", + "name": "xmlhttprequest-ssl", + "version": "1.5.3", + "description": "XMLHttpRequest for Node", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd77de404ff0364beb224b67d8a7f4f3af5f0b404de94a727556ac1887929b60752e58a17fbff451f64cf9e0a43b0dcfedb3f8faa3e0aa19bb668c6e26d154d1" + } + ], + "purl": "pkg:npm/xmlhttprequest-ssl@1.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mjwwit/node-XMLHttpRequest#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/mjwwit/node-XMLHttpRequest/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mjwwit/node-XMLHttpRequest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tmp@0.0.31", + "author": "KARASZI István", + "name": "tmp", + "version": "0.0.31", + "description": "Temporary file and directory creator", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d10899688ca9d9dda75db533a3748aa846e3c4281bcd5dc198ab33bacd6657f0a7ca1299c66398df820250dc48cabaef03e1b251af4cbe7182459986c89971b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 KARASZI István\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tmp@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/raszi/node-tmp" + }, + { + "type": "issue-tracker", + "url": "http://github.com/raszi/node-tmp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/raszi/node-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/useragent@2.3.0", + "author": "Arnout Kazemier", + "name": "useragent", + "version": "2.3.0", + "description": "Fastest, most accurate & effecient user agent string parser, uses Browserscope's research for parsing", + "hashes": [ + { + "alg": "SHA-512", + "content": "e00a07e29c6e4af1c28ea2ced38b14e94fee13ae416336bc97f28a052d1bd219d43d68be710d81a5e4c4c1e8c24b1f523d5e7f534de79e20d3ad6c7936b98a77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "# MIT LICENSED Copyright (c) 2013 Arnout Kazemier (http://3rd-Eden.com)\n#\n# Permission is hereby granted, free of charge, to any person obtaining a copy\n# of this software and associated documentation files (the \"Software\"), to deal\n# in the Software without restriction, including without limitation the rights\n# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n# copies of the Software, and to permit persons to whom the Software is\n# furnished to do so, subject to the following conditions:\n#\n# The above copyright notice and this permission notice shall be included in\n# all copies or substantial portions of the Software.\n#\n# THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n# THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/useragent@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/useragent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/useragent/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/3rd-Eden/useragent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-chrome-launcher@2.2.0", + "author": "Vojta Jina", + "name": "karma-chrome-launcher", + "version": "2.2.0", + "description": "A Karma plugin. Launcher for Chrome and Chrome Canary.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9ffd956901a6c304fbdd3ddbdeca4d443e06e79683ef1451a09918582d30c7ee0101e2765d48193cc93538ef0d60fddacb4b1e6e30e9232a4ec858a7d683ffb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (C) 2011-2013 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/karma-chrome-launcher@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/karma-runner/karma-chrome-launcher#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/karma-runner/karma-chrome-launcher/issues" + }, + { + "type": "vcs", + "url": "git://github.com/karma-runner/karma-chrome-launcher.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-coverage@1.1.2", + "author": "SATO taichi", + "name": "karma-coverage", + "version": "1.1.2", + "description": "A Karma plugin. Generate code coverage.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7906b08f80a5df3fc28f1b25632f5aae2538b8387b7023456473565d6469974a4d79b958ff8c0747b33b6e84d85d6ae7f5b634cf6a599abd7578a8defd2fe123" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (C) 2011-2013 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/karma-coverage@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/karma-runner/karma-coverage#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/karma-runner/karma-coverage/issues" + }, + { + "type": "vcs", + "url": "git://github.com/karma-runner/karma-coverage.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-jasmine@1.1.2", + "author": "Vojta Jina", + "name": "karma-jasmine", + "version": "1.1.2", + "description": "A Karma plugin - adapter for Jasmine testing framework.", + "hashes": [ + { + "alg": "SHA-512", + "content": "48434613d0e19482054d265688dab87867972fc1bacfd72a1c839d931f63875aa1850ab0132ded0282d1c84474bce707a9d3a52a61a93ae5e4f873a2a48cbbb2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (C) 2011-2013 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/karma-jasmine@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/karma-runner/karma-jasmine#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/karma-runner/karma-jasmine/issues" + }, + { + "type": "vcs", + "url": "git://github.com/karma-runner/karma-jasmine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-mocha-reporter@2.2.5", + "author": "Litixsoft GmbH", + "name": "karma-mocha-reporter", + "version": "2.2.5", + "description": "Karma reporter with mocha style logging.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ebea7864229d0620926bbf363c245787a5064db1eb886a419a7386e9c3c2b5fb9174b4b6fa97bbaf5d16bc9add99f8d57062009cb784007e9d91d903faa34d3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2013-2016 Litixsoft GmbH \r\nLicensed under the MIT license.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/karma-mocha-reporter@2.2.5", + "externalReferences": [ + { + "type": "website", + "url": "http://www.litixsoft.de/index.php?lang=en#modules" + }, + { + "type": "issue-tracker", + "url": "https://github.com/litixsoft/karma-mocha-reporter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/litixsoft/karma-mocha-reporter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-remap-coverage@0.1.5", + "author": "Sergey Shevchenko", + "name": "karma-remap-coverage", + "version": "0.1.5", + "description": "Karma reporter that shows coverage for original non transpiled code (TypeScript, ES6/7, etc)", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ce61f1e1dc1db30c47ed883415310fee3ec146e40a7a1b7e7e6e5a9ae42f28fa5dc9b63111503ae0099fd8761f5de736ca3aae4f90a0da47779c427af94f3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Sergey Shevchenko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/karma-remap-coverage@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sshev/karma-remap-coverage#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sshev/karma-remap-coverage/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/sshev/karma-remap-coverage.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/remap-istanbul@0.10.1", + "name": "remap-istanbul", + "version": "0.10.1", + "description": "A tool for remapping Istanbul coverage via Source Maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "15d1ad7d756cbab3bf288027d8fb47cd83c612e194e33191c2e30fd92210a3e3320cd363414e57d16c40b88285732d047e8789e311b17ec597662b9913ccd81e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "The \"New\" BSD License\n*********************\n\nCopyright (c) 2004-2015, The Dojo Foundation\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the Dojo Foundation nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/remap-istanbul@0.10.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SitePen/remap-istanbul" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SitePen/remap-istanbul" + }, + { + "type": "vcs", + "url": "git+https://github.com/SitePen/remap-istanbul.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/plugin-error@0.1.2", + "author": "Jon Schlinkert", + "name": "plugin-error", + "version": "0.1.2", + "description": "Error handling for vinyl plugins. Just an abstraction of what's in gulp-util with minor changes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b3647726e3e18edf8b2314cc5032a65bb33df188d120a270ac910f6ff88ae832662093fb5ab3c746f87af60fa21b44fc9b675da85a9cc4ff0ddc189e852733b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/plugin-error@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/plugin-error" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/plugin-error/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/plugin-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-cyan@0.1.1", + "author": "Jon Schlinkert", + "name": "ansi-cyan", + "version": "0.1.1", + "description": "The color cyan, in ansi.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7828da9f7015a3f4b1674fccc88611b64a7122efc7df164ded446bd6f5d5ac84b17b2cfc7d4173d0527389a98ae2c4bc23eb77e72e2b1e0d5bd8f925c817bfec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) <%= year() %>, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-cyan@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/ansi-cyan" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/ansi-cyan/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/ansi-cyan.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-red@0.1.1", + "author": "Jon Schlinkert", + "name": "ansi-red", + "version": "0.1.1", + "description": "The color red, in ansi.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b0688af9cbef42513185c197e910251b16519c0b4182c35a2a47d448ea1d6040277d023d86c527240a73ec5499e67cc65bc05604fa57991804a0916974e89a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) <%= year() %>, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-red@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/ansi-red" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/ansi-red/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/ansi-red.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-diff@1.1.0", + "author": "Jon Schlinkert", + "name": "arr-diff", + "version": "1.1.0", + "description": "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.", + "hashes": [ + { + "alg": "SHA-512", + "content": "615210f368193c605e6d057f6bc75aaf8022b73090b348e35f030f6659695cc6868d73d85546b04b142b46c8e18eea7257112f6c781498884a565343fa3d3690" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015 Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-diff@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/arr-diff" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/arr-diff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/arr-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-union@2.1.0", + "author": "Jon Schlinkert", + "name": "arr-union", + "version": "2.1.0", + "description": "Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0aa72784459d36bf515e0994fc96b7c9ab9bba8281c2b694c0ccfc0961eedcf123c539ba0d8cd835bf3d8be154e7f53e0f431131d774db5cb99851c4ba520ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-union@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/arr-union" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/arr-union/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/arr-union.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/extend-shallow@1.1.4", + "author": "Jon Schlinkert", + "name": "extend-shallow", + "version": "1.1.4", + "description": "Extend an object with the properties of additional objects. node.js/javascript util.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc29d3b65c4da0088373782a636698016171ed759689ab2e1762bc31ee566cdf28b4729350a0708cfb4da51b3fadb5199bb2b158068d8fb3f56bfa79d866d5ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/extend-shallow@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/extend-shallow" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/extend-shallow/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/extend-shallow.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kind-of@1.1.0", + "author": "Jon Schlinkert", + "name": "kind-of", + "version": "1.1.0", + "description": "Get the native type of a value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e5bd4105cca191a0fe8aa754da0d4d320510889dd7adbb5827df50124474cc58029abb98d13b0a9cee7083dcf99420db93e17a3ec8252997de13bea1b94eb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/kind-of@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/kind-of" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/kind-of/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jonschlinkert/kind-of.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/through2@2.0.1", + "author": "Rod Vagg", + "name": "through2", + "version": "2.0.1", + "description": "A tiny wrapper around Node streams2 Transform to avoid explicit subclassing noise", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe6ad1a1df31aa903e20748bc86090dacf123c78820c47902527a9d63a8b61e1140a53851b642c87ee0553a1bd55eaa9667196fd2bbc2d019ce182a78b9ad849" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013, Rod Vagg (the \"Original Author\")\nAll rights reserved.\n\nMIT +no-false-attribs License\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nDistributions of all or part of the Software intended to be used\nby the recipients as they would use the unmodified Software,\ncontaining modifications that substantially alter, remove, or\ndisable functionality of the Software, outside of the documented\nconfiguration mechanisms provided by the Software, shall be\nmodified such that the Original Author's bug reporting email\naddresses and urls are either replaced with the contact information\nof the parties responsible for the changes, or removed entirely.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n\nExcept where noted, this license applies to any and all software\nprograms and associated documentation files created by the\nOriginal Author, when distributed with the Software." + } + } + } + ], + "purl": "pkg:npm/through2@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/through2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/through2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/through2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readable-stream@2.0.6", + "name": "readable-stream", + "version": "2.0.6", + "description": "Streams3, a user-land copy of the stream library from Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "11b868f0ae2321b1c0c67bb18bba38d8ead9805fd94cd72c663ea744ac949a484b16af021c8b69fdfcba85066e6663ff9f7c99f550546e9e33cff997f219983f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/readable-stream@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodejs/readable-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodejs/readable-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nodejs/readable-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-sourcemap-loader@0.3.8", + "author": "Gabriele Genta", + "name": "karma-sourcemap-loader", + "version": "0.3.8", + "description": "Karma plugin that locates and loads existing javascript source map files.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce8af1c806a4619b8170744913ebdbacada8d895cb1562bc5558e24ffe8ffa5b4b054194bea4c4914890d75f4c19d3ab2bb9ab9b15c7645d7fa5f4fa1a0219ea" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2013 Sergey Todyshev\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/karma-sourcemap-loader@0.3.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/demerzel3/karma-sourcemap-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/demerzel3/karma-sourcemap-loader/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/demerzel3/karma-sourcemap-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-webpack@2.0.13", + "author": "Tobias Koppers @sokra", + "name": "karma-webpack", + "version": "2.0.13", + "description": "Use webpack with karma", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9cc88237e237eb01a6db236fb8464e23f7935ace5f7c16f6508604a2a8a5036ab4f7d7baf17effc477367ad02c804cde0f43125d3b9b9c4796ce39790456b5f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nCopyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/karma-webpack@2.0.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/karma-webpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/karma-webpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/karma-webpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-middleware@1.12.2", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-middleware", + "version": "1.12.2", + "description": "Offers a dev middleware for webpack, which arguments a live bundle to a directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "142aea3f2d72cbfb0de94fd268465c1ca4571a5a94d0351a1012f8e6391462807c7e855beb00a76c82751ca231faa5054d6fb726955c0890b167c5404cbe1ef8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-middleware@1.12.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/webpack-dev-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/time-stamp@2.2.0", + "author": "Jon Schlinkert", + "name": "time-stamp", + "version": "2.2.0", + "description": "Get a formatted timestamp.", + "hashes": [ + { + "alg": "SHA-512", + "content": "80b09e02baf2cb6c8d4d1cd318a6d96e5a1cb63eb88e4679ee18f9cddada5ee7ba68581de8f9af56d13289453e86f534bfbab4f2856ff2bf1ebf4b51a3a6ef83" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/time-stamp@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/time-stamp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/time-stamp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/time-stamp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/klaw@1.3.1", + "author": "JP Richardson", + "name": "klaw", + "version": "1.3.1", + "description": "File system walker with Readable stream interface.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c40f9c62f601908c6a4d9ef456927af0001d5e2f919c88f7d514eb77564d4e24254341bcee49fac5de191440a96c80aac6d45fb4b795b49be1637b58c8b7caf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2015-2016 JP Richardson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/klaw@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-klaw#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-klaw/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jprichardson/node-klaw.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._arraycopy@3.0.0", + "author": "John-David Dalton", + "name": "lodash._arraycopy", + "version": "3.0.0", + "description": "The modern build of lodash’s internal `arrayCopy` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4474a14c39cf28feda5b196f5ca8834fa217da30ace9864b0ad3613abbbf397d90fedcd7dbde6f5412b9a17d440ad37edabf3a4b43a0cbcca43f5b2009900dd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._arraycopy@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._arrayeach@3.0.0", + "author": "John-David Dalton", + "name": "lodash._arrayeach", + "version": "3.0.0", + "description": "The modern build of lodash’s internal `arrayEach` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "327ec789d395725de6910b5b3ecb8a474163d0de90e83401efb0ad6277197097346f1e6abf6ab81a5e9ad0b0b500df864b1a670433672b708a126f57340e33a9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js 1.7.0, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._arrayeach@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._baseassign@3.2.0", + "author": "John-David Dalton", + "name": "lodash._baseassign", + "version": "3.2.0", + "description": "The modern build of lodash’s internal `baseAssign` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b77376e9047621d48dfa0a92cbd0ecf6906efc9d4400512c84a9541e9246debbf224e6207042c8c5c21e28a7d993bb233b3d757057f3251b3216bcbf27269b25" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._baseassign@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._baseclone@3.3.0", + "author": "John-David Dalton", + "name": "lodash._baseclone", + "version": "3.3.0", + "description": "The modern build of lodash’s internal `baseClone` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4ad1d9ed7f67454399b2d16a062a476e7b047afa94cd6aa5f4de4bece39cbb1b96f39780779134788437c921cd9a0900de2f2407852dbcd2d73cd789b5402d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._baseclone@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash._basefor@3.0.3", + "author": "John-David Dalton", + "name": "lodash._basefor", + "version": "3.0.3", + "description": "The internal lodash function `baseFor` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9b7376fc82b9293200dc549bfd25864093f98781ca8c963ce6eceb1b99c13614650c9a62d04cf1e587f745a91f0b034190ef3e0aebb252a2d54abb9d39f2fd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2016 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2016 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash._basefor@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.mergewith@4.6.2", + "author": "John-David Dalton", + "name": "lodash.mergewith", + "version": "4.6.2", + "description": "The Lodash method `_.mergeWith` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "18ade0e513d959345278b4a980ff1786b6bea678c10b9eaaf456587b577944ddd3277e5d6e41b2dd8a8148c6f20ab95b8be08cf59dc9939c932fb442b2a6e8c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright OpenJS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.mergewith@4.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.toarray@4.4.0", + "author": "John-David Dalton", + "name": "lodash.toarray", + "version": "4.4.0", + "description": "The lodash method `_.toArray` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4327df100de2e5d99ae6adb8f74f92802bc3374a572e64464b200036e562d07434d4f91fafd7eea0a416f309b5c060672484ecfe64bbc10bd2e95b215040450b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.toarray@4.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/macaddress@0.2.9", + "author": "Julian Fleischer", + "name": "macaddress", + "version": "0.2.9", + "description": "Get the MAC addresses (hardware addresses) of the hosts network interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "938175254a1fe9c417c4d173c77b612dbcb8a09cd74d742e78038eb6cf78e15aa2ce7f918dcd903457a74fd14948b535087dcf9ab1d14b266cd84f82ab0f8fdb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Julian Fleischer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/macaddress@0.2.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/scravy/node-macaddress" + }, + { + "type": "issue-tracker", + "url": "https://github.com/scravy/node-macaddress/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/scravy/node-macaddress.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/make-error@1.3.6", + "author": "Julien Fontanet", + "name": "make-error", + "version": "1.3.6", + "description": "Make your own error types!", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3c52194d7bbbcf2a8990842d6a15e94ca24aff49cdc080d6eca379fbe2654f0392d3670901f4d9577f85cf6a62f1244f21d2087bdeb33de31bf0453d825489f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2014 Julien Fontanet\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/make-error@1.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JsCommunity/make-error" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JsCommunity/make-error/issues" + }, + { + "type": "vcs", + "url": "git://github.com/JsCommunity/make-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/map-stream@0.1.0", + "author": "Dominic Tarr", + "name": "map-stream", + "version": "0.1.0", + "description": "construct pipes of streams of events", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a4610acf6197d69eefc3026542a53497ff11e9299f3478a87694093203a0094de7fa6d6fba2696d064de6ba1fba6edd6be4b23756e2e5cb539be9537dc096de" + } + ], + "purl": "pkg:npm/map-stream@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/map-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/map-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/map-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/marked@0.3.19", + "author": "Christopher Jeffrey", + "name": "marked", + "version": "0.3.19", + "description": "A markdown parser built for speed", + "hashes": [ + { + "alg": "SHA-512", + "content": "79ad9e1963aa3713dc5eff1dc8445d4abffa166cef5b0ce3331a5f181fec6cc71c5e872dfb163e62e90f0fe413519c32bcaec167072be26db5581396e35a4092" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# License information\n\n## Contribution License Agreement\n\nIf you contribute code to this project, you are implicitly allowing your code\nto be distributed under the MIT license. You are also implicitly verifying that\nall code is your original work. ``\n\n## Marked\n\nCopyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n## Markdown\n\nCopyright © 2004, John Gruber \nhttp://daringfireball.net/ \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nThis software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.\n" + } + } + } + ], + "purl": "pkg:npm/marked@0.3.19", + "externalReferences": [ + { + "type": "website", + "url": "https://marked.js.org" + }, + { + "type": "issue-tracker", + "url": "http://github.com/markedjs/marked/issues" + }, + { + "type": "vcs", + "url": "git://github.com/markedjs/marked.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/marked-terminal@1.7.0", + "author": "Mikael Brevik", + "name": "marked-terminal", + "version": "1.7.0", + "description": "A custom render for marked to output to the Terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea30b3f1aa39df046a7608c4e0797dc56dfe7ecdb3701775884a2b196e33c40c3c19c1a0dd934c8a352977ab6fd7cb7ca83b5c643797aebb1b4775e439530345" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/marked-terminal@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikaelbr/marked-terminal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikaelbr/marked-terminal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mikaelbr/marked-terminal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mixin-deep@1.3.2", + "author": "Jon Schlinkert", + "name": "mixin-deep", + "version": "1.3.2", + "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.", + "hashes": [ + { + "alg": "SHA-512", + "content": "591a039fffe65c1889d47e34aea6b7bc7d2da1e3f04ac19be398889d6953c926be52ee24ded6144b16b6bf52aa0222edbe5ad2cda131a92d60b64f7a03dcef10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mixin-deep@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/mixin-deep" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/mixin-deep/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/mixin-deep.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ncname@1.0.0", + "author": "Sindre Sorhus", + "name": "ncname", + "version": "1.0.0", + "description": "Regular expression for matching XML NCName", + "hashes": [ + { + "alg": "SHA-512", + "content": "54b93262bda498fcd5ceb9a4111f62d7744921d19b8cdafce7981f87656fb9ba0ed5e6276fd93e9c54be27281f49582d6e8fc73292f3e691182cae178f2ed71a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ncname@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ncname#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ncname/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ncname.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xml-char-classes@1.0.0", + "author": "Sindre Sorhus", + "name": "xml-char-classes", + "version": "1.0.0", + "description": "Regular expressions for matching against the XML Character Classes", + "hashes": [ + { + "alg": "SHA-512", + "content": "75369a4709b871c17c505d79fcf2d3de934d9593f4e2a928fc551caf4401a6960b93cf89ef103d820daf2365f82abd4f709015c7023d35d0037b1dbd157d9055" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/xml-char-classes@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/xml-char-classes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/xml-char-classes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/xml-char-classes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-dir@0.1.17", + "author": "Nathan Cartwright", + "name": "node-dir", + "version": "0.1.17", + "description": "asynchronous file and directory operations for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "b663d7e36dab620a1f7787a9ceb368397884f1715960e702ab5bc3ecc0170833be3bece7765036ced74a28c6be11eb811b9b47113a6be26978446829a8308202" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "(The MIT License)\n\nCopyright (c) 2012 Nathan Cartwright \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/node-dir@0.1.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fshost" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fshost/node-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fshost/node-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-forge@0.6.49", + "author": "Digital Bazaar, Inc.", + "name": "node-forge", + "version": "0.6.49", + "description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3adf6a2c26a707aa56e67563af9e0a9cd13d1857e30b48fb071691a24065cf7b5c2385c558decaca40e2e4a72a7297cc34439adbab34f2f5673486cdcd496ca" + } + ], + "licenses": [ + { + "license": { + "name": "(BSD-3-Clause OR GPL-2.0)", + "text": { + "content": "You may use the Forge project under the terms of either the BSD License or the \nGNU General Public License (GPL) Version 2.\n\nThe BSD License is recommended for most projects. It is simple and easy to \nunderstand and it places almost no restrictions on what you can do with the\nForge project.\n\nIf the GPL suits your project better you are also free to use Forge under \nthat license.\n\nYou don't have to do anything special to choose one license or the other and\nyou don't have to notify anyone which license you are using. You are free to\nuse this project in commercial projects as long as the copyright header is\nleft intact.\n\nIf you are a commercial entity and use this set of libraries in your\ncommercial software then reasonable payment to Digital Bazaar, if you can\nafford it, is not required but is expected and would be appreciated. If this\nlibrary saves you time, then it's saving you money. The cost of developing\nthe Forge software was on the order of several hundred hours and tens of\nthousands of dollars. We are attempting to strike a balance between helping\nthe development community while not being taken advantage of by lucrative\ncommercial entities for our efforts.\n\n-------------------------------------------------------------------------------\nNew BSD License (3-clause)\nCopyright (c) 2010, Digital Bazaar, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Digital Bazaar, Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL DIGITAL BAZAAR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------------------\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n" + } + } + } + ], + "purl": "pkg:npm/node-forge@0.6.49", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/digitalbazaar/forge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/digitalbazaar/forge/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/digitalbazaar/forge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-libs-browser@2.2.1", + "author": "Tobias Koppers @sokra", + "name": "node-libs-browser", + "version": "2.2.1", + "description": "The node core libs for in browser usage.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87fcdc0fc1fd91a0d9f402d45b0941503a3a4ca17c6bba8148248419f8d354861eaac8a848a6805fe04decd822306a7a8922176773f1802bbc292ddbef560ae5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 Tobias Koppers\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-libs-browser@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/node-libs-browser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/node-libs-browser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/node-libs-browser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/events@3.3.0", + "author": "Irakli Gozalishvili", + "name": "events", + "version": "3.3.0", + "description": "Node's event emitter for all engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "90472fbc2041c965c69d9cba254960029da00485237c2015e8fe93813d7f69a40a726b80102e0e65357523811640bcf6831670efa6adb95caf1e14f1be2d0597" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT\n\nCopyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/events@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Gozala/events#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Gozala/events/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/Gozala/events.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/path-browserify@0.0.1", + "author": "James Halliday", + "name": "path-browserify", + "version": "0.0.1", + "description": "the path module from node core for browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "580de9c62d6895441cb25f365b9efabe4aa15121a9d2e06daffdfcd69c71e565cba77342f8007df61506dda196ec7d0a83d3c5af50fcc2fd6225e2027bef4c87" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/path-browserify@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/path-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/path-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/path-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/timers-browserify@2.0.12", + "author": "J. Ryan Stinnett", + "name": "timers-browserify", + "version": "2.0.12", + "description": "timers module for browserify", + "hashes": [ + { + "alg": "SHA-512", + "content": "f69865efa0aa9ba161497f577b565400c2ed9b504b90a8f641de40a725a45f3b0c45a03b760afcd647f8c099907ff840be0f041322710e8dddbbfd0a9613e229" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# timers-browserify\n\nThis project uses the [MIT](http://jryans.mit-license.org/) license:\n\n Copyright © 2012 J. Ryan Stinnett \n\n Permission is hereby granted, free of charge, to any person obtaining a\n copy of this software and associated documentation files (the “Software”),\n to deal in the Software without restriction, including without limitation\n the rights to use, copy, modify, merge, publish, distribute, sublicense,\n and/or sell copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n DEALINGS IN THE SOFTWARE.\n\n# lib/node\n\nThe `lib/node` directory borrows files from joyent/node which uses the following license:\n\n Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/timers-browserify@2.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jryans/timers-browserify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jryans/timers-browserify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jryans/timers-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vm-browserify@1.1.2", + "author": "James Halliday", + "name": "vm-browserify", + "version": "1.1.2", + "description": "vm module for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "37264d4775836a1f8d3e48e1fd89a1b964ac4f86b4985d012588149afac9ef4cf18d35e1e58d80b286f1961d0d7ecd0f085079155a5125fb7b368cc05853302d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vm-browserify@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/vm-browserify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/vm-browserify/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/substack/vm-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pako@1.0.11", + "name": "pako", + "version": "1.0.11", + "description": "zlib port to javascript - fast, modularized, with browser support", + "hashes": [ + { + "alg": "SHA-512", + "content": "35473068ac54c56ad92e90c6fb3ff165a0a04084e403f0efe15fd3e9bc3b54e37a9755f3fd59eb06aad88d9435d936a6287cc84d37ce1086148f8f32d8a5c898" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT AND Zlib)", + "text": { + "content": "(The MIT License)\n\nCopyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pako@1.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nodeca/pako" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nodeca/pako/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nodeca/pako.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-notifier@4.6.1", + "author": "Mikael Brevik", + "name": "node-notifier", + "version": "4.6.1", + "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b556c7b3b0f24cbb733a237bf22ccb03ce7346a07d36f1179007f4d78571de3b52be7ff1065e9b47c65889f8fe745705aca236d61b92420259e99b4bdc1e077d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/node-notifier@4.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikaelbr/node-notifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikaelbr/node-notifier/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.clonedeep@3.0.2", + "author": "John-David Dalton", + "name": "lodash.clonedeep", + "version": "3.0.2", + "description": "The modern build of lodash’s `_.cloneDeep` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f9661085db9ae215df6e0795029152a8eb59b74bfc59935c78c00eb2a7f2f74453fa67f7871f5ca641c18ba3b27718c3df9b457fee6d6daf21ee195c69a8405" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.clonedeep@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-pre-gyp@0.6.39", + "author": "Dane Springmeyer", + "name": "node-pre-gyp", + "version": "0.6.39", + "description": "Node.js native addon binary install tool", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ac255ef8ab19efcff00c1a071f6680da7835ca0f7a18dd05486c19b0b334c59118ac4d25db310ca7e145b350c3ad03949586b059393a74c1ca120607cc7cc99" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c), Mapbox\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of node-pre-gyp nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/node-pre-gyp@0.6.39", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mapbox/node-pre-gyp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mapbox/node-pre-gyp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mapbox/node-pre-gyp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nopt@4.0.3", + "author": "Isaac Z. Schlueter", + "name": "nopt", + "version": "4.0.3", + "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0652dde4484626938213c7307f6fdbda2037d455637f325d45c25d752259c81b689a27d3ba59767d4ab60cf4d2c8f0e08189e37663c4960b6a09574450eea62" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nopt@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/nopt#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/nopt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/nopt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc@1.2.8", + "author": "Dominic Tarr", + "name": "rc", + "version": "1.2.8", + "description": "hardwired configuration loader", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb76c682a2a3dd005dc4b6cb9289a5a2192fb00f207408944254812670617e7f813f18386dceb677c4dc056d79c1abc37e07b10a071c72485c66fcb0c9060f3b" + } + ], + "licenses": [ + { + "license": { + "name": "(BSD-2-Clause OR MIT OR Apache-2.0)" + } + } + ], + "purl": "pkg:npm/rc@1.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/rc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/rc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dominictarr/rc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-extend@0.6.0", + "author": "Viacheslav Lotsmanov", + "name": "deep-extend", + "version": "0.6.0", + "description": "Recursive object extending", + "hashes": [ + { + "alg": "SHA-512", + "content": "710d225d210a8b72513618d4b0b5af43e3153f12d5aa9c02774705b166c9c650a29b64e50a8d49bcde5668f74fbd2a547449e427f5fe98f19cab9449ebc10af2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018, Viacheslav Lotsmanov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deep-extend@0.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unclechu/node-deep-extend" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unclechu/node-deep-extend/issues" + }, + { + "type": "vcs", + "url": "git://github.com/unclechu/node-deep-extend.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/request@2.81.0", + "author": "Mikeal Rogers", + "name": "request", + "version": "2.81.0", + "description": "Simplified HTTP request client.", + "hashes": [ + { + "alg": "SHA-512", + "content": "32cbed3ab7c6f5972b3b0016f908be17a1db0f40965c487da2eefbb8e6fb14cd963e1c13eec98cf37dcfcda9e124bb205e337cf48afa5763dccd7367329c0a87" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/request@2.81.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/request/request#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/request/request/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/request/request.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/form-data@2.1.4", + "author": "Felix Geisendörfer", + "name": "form-data", + "version": "2.1.4", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b6d4ddd63a6104511824e81f462ce13846e58e15fdbc2e187da8661e3651aae150d7525272dad876b2504d53c1a9f04ce5a1864e89b649eede5e708ac54a354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/form-data@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/form-data/form-data#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/form-data/form-data/issues" + }, + { + "type": "vcs", + "url": "git://github.com/form-data/form-data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-signature@1.1.1", + "author": "Joyent, Inc", + "name": "http-signature", + "version": "1.1.1", + "description": "Reference implementation of Joyent's HTTP Signature scheme.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dda76bb03eb3aa8e06b13aad3bb172ade8c736ff8d82221f01fbfaf3e8d5945992afd386cbbcebc4e35c78544b2af9e7640e636f14015f5bbd3e907a5a2df61b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/http-signature@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/joyent/node-http-signature/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/joyent/node-http-signature/issues" + }, + { + "type": "vcs", + "url": "git://github.com/joyent/node-http-signature.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/performance-now@0.2.0", + "author": "Meryn Stol", + "name": "performance-now", + "version": "0.2.0", + "description": "Implements performance.now (based on process.hrtime).", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec40079722c7239e9510874ae7bbb01dd1ca21a0066e75cf8b0d3259b6ab41938a68aa6f508816d2359154b89ab6733e5d7952c2c6a72011ff87318c26e94ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2013 Meryn Stol\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/performance-now@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/meryn/performance-now" + }, + { + "type": "issue-tracker", + "url": "https://github.com/meryn/performance-now/issues" + }, + { + "type": "vcs", + "url": "git://github.com/meryn/performance-now.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@6.4.1", + "name": "qs", + "version": "6.4.1", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "BSD 3-Clause License\n\nCopyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/qs@6.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stringstream@0.0.5", + "author": "Michael Hart", + "name": "stringstream", + "version": "0.0.5", + "description": "Encode and decode streams into string streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "41443591384c8cb46de2303c96c9fd97222413d6ca69f13b2c338bfe7041518f537efda2df1d4d02c5471b4b8c0aeb0539679e23a08e858fc5db4f9abf14564b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2012 Michael Hart (michael.hart.au@gmail.com)\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stringstream@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mhart/StringStream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mhart/StringStream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mhart/StringStream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tough-cookie@2.3.4", + "author": "Jeremy Stashewsky", + "name": "tough-cookie", + "version": "2.3.4", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e52ec533826d647cb5d25df45931cd4a2c0ba077886a2470d3bdcda10c8c12de66407cc12e31b734dd2ba3305f8611ca5a5ffa9ba1ec9cc3a88ef09c15bf6fa" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2015, Salesforce.com, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n3. Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n===\n\nThe following exceptions apply:\n\n===\n\n`public_suffix_list.dat` was obtained from\n via\n. The license for this file is MPL/2.0. The header of\nthat file reads as follows:\n\n // This Source Code Form is subject to the terms of the Mozilla Public\n // License, v. 2.0. If a copy of the MPL was not distributed with this\n // file, You can obtain one at http://mozilla.org/MPL/2.0/.\n" + } + } + } + ], + "purl": "pkg:npm/tough-cookie@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/salesforce/tough-cookie" + }, + { + "type": "issue-tracker", + "url": "https://github.com/salesforce/tough-cookie/issues" + }, + { + "type": "vcs", + "url": "git://github.com/salesforce/tough-cookie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tar-pack@3.4.1", + "name": "tar-pack", + "version": "3.4.1", + "description": "Package and un-package modules of some sort (in tar/gz bundles).", + "hashes": [ + { + "alg": "SHA-512", + "content": "3cf4726c8f7e8cce6d8ed09b3767319a6454ed89aa4f766ffd40f2e3cb408765d190b6bd6c0391b5258b915735dfe18917e71d4e1d721271c49377294da2f92a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) 2014, Forbes Lindesay\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/tar-pack@3.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/tar-pack#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/tar-pack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/tar-pack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nomnom@1.8.1", + "author": "Heather Arthur", + "name": "nomnom", + "version": "1.8.1", + "description": "Option parser with generated usage and commands", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6cd09c6a843c7dfeb92c1b60533153757a78d64af3e2769a1281589953865750bc937beee3c5c0912c1e9fe36674975c5826995e081b52c98e8bc20deebb909" + } + ], + "purl": "pkg:npm/nomnom@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/harthur/nomnom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/harthur/nomnom/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/harthur/nomnom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/underscore@1.6.0", + "author": "Jeremy Ashkenas", + "name": "underscore", + "version": "1.6.0", + "description": "JavaScript's functional programming helper library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "050167503b8043861ffdc618e4b36b2bd3422452ab89a45b0fdb91d5f4de5e705ea1af7b5b48b8d6a9197c63bda52a3c2392b38c07126365d8b5d7f4a0a77b29" + } + ], + "purl": "pkg:npm/underscore@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "http://underscorejs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jashkenas/underscore/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jashkenas/underscore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/opn@4.0.2", + "author": "Sindre Sorhus", + "name": "opn", + "version": "4.0.2", + "description": "A better node-open. Opens stuff like websites, files, executables. Cross-platform.", + "hashes": [ + { + "alg": "SHA-512", + "content": "88f0566cf3f83843b3475c5f86918b0e1fb2a4a04eca0ba766133d8c1b40ec54b9b0a8c488c670d0415bf368670ce993657f746562e864a5336b8715b7c31ec4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/opn@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/opn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/opn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/opn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/os-browserify@0.2.1", + "author": "CoderPuppy", + "name": "os-browserify", + "version": "0.2.1", + "description": "The [os](https://nodejs.org/api/os.html) module from node.js, but for browsers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc76e76f376a5895af18e9bb68e3035c7554ca43c6d067617cb927e590e6bdb448fb03e3fd7a01d3f0910243fdbf6f1e67b44420f3c725afbc644622c6c58a99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 CoderPuppy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/os-browserify@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/CoderPuppy/os-browserify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/CoderPuppy/os-browserify/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/CoderPuppy/os-browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse5@3.0.3", + "author": "Ivan Nikulin", + "name": "parse5", + "version": "3.0.3", + "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae03bd660e4b2cb91f245f44e820a65e5484e1455c7a5a32b3c26b16a09c1e5a02deeb1dfe4242c8f0f01f648e9738b1da3df168ff6c517ddef3e92f92e95e00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013-2016 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse5@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inikulin/parse5" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inikulin/parse5/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inikulin/parse5.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/node@18.6.2", + "group": "@types", + "name": "node", + "version": "18.6.2", + "description": "TypeScript definitions for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "29c7e406af47e0f23a569bb907f2a83deb950c06e68beda60c1a863c6520a0bef25d0b5c586bb6bc95a69919277962b7461d272005f5f7601af3b02a28760285" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/node@18.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/portfinder@1.0.28", + "author": "Charlie Robbins", + "name": "portfinder", + "version": "1.0.28", + "description": "A simple tool to find an open port on the current machine", + "hashes": [ + { + "alg": "SHA-512", + "content": "49efb68ac6a721c12a7f65cc1e3c942ac91ccf16cf1fb7509e53235d7ebe7726dacb21ef01ffd30a0c8c465cdffc1e900e100414e19eb34a73468ddbcb801b30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "node-portfinder\n\nCopyright (c) 2012 Charlie Robbins\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/portfinder@1.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/http-party/node-portfinder#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/http-party/node-portfinder/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/http-party/node-portfinder.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-load-config@1.2.0", + "author": "Michael Ciniawky", + "name": "postcss-load-config", + "version": "1.2.0", + "description": "Autoload Config for PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddfa427e75e8f5077f3bfabf5cbe1c254851b2a8d50f6575561cb7c0e11c2c4e64cf44c6b5d0d7252a224dd1f87bce3b2a985b11a738f846521f8a8b4582202f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright (c) Michael Ciniawsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-load-config@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/michael-ciniawsky/postcss-load-config#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/michael-ciniawsky/postcss-load-config/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/michael-ciniawsky/postcss-load-config.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-load-options@1.2.0", + "author": "Michael Ciniawky", + "name": "postcss-load-options", + "version": "1.2.0", + "description": "Autoload Options for PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "58a4b92c93192d61b0b5f86ce5a85bdb2729a181779b490ae1011a33e7a5af912988cb741f6f7a3fff444dad77597ce33f00740c34c18940415921e802940826" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright (c) 2016 Michael Ciniawsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-load-options@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/michael-ciniawsky/postcss-load-options#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/michael-ciniawsky/postcss-load-options/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/michael-ciniawsky/postcss-load-options.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-load-plugins@2.3.0", + "author": "Michael Ciniawky", + "name": "postcss-load-plugins", + "version": "2.3.0", + "description": "Autoload Plugins for PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd619431884a8abc968d83ba73b90072a32e0fb0d591a43c1dc6d07a70e67bf7773813a6ad830539b38a8145b2532d6e8a1e54d836a4abc1fa55c262e42f701d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright (c) Michael Ciniawsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-load-plugins@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/michael-ciniawsky/postcss-load-plugins#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/michael-ciniawsky/postcss-load-plugins/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/michael-ciniawsky/postcss-load-plugins.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-loader@1.3.3", + "author": "Andrey Sitnik", + "name": "postcss-loader", + "version": "1.3.3", + "description": "PostCSS loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b27d8feaec72556c7fb4230a7d15008df98157be4cc6e3093a6733267927c7a26bf6f416dcff7b65787d82171ed4a480058b2775ad940c0c202b359e3215421" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-loader@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/protractor@5.4.4", + "author": "Julie Ralph", + "name": "protractor", + "version": "5.4.4", + "description": "Webdriver E2E test wrapper for Angular.", + "hashes": [ + { + "alg": "SHA-512", + "content": "05a2f8bde3e0bb755f6bfc21bd3500960682008778b8d486c481520973208fb2cc60434f58ba7ce61e51062f697695ff6d643c485e9f94feda7e68b64c2e1e1f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2010-2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/protractor@5.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/protractor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/protractor/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/protractor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/q@0.0.32", + "author": "Barrie Nemetchek", + "group": "@types", + "name": "q", + "version": "0.0.32", + "description": "TypeScript definitions for Q", + "hashes": [ + { + "alg": "SHA-512", + "content": "a988b7615f629d4fd11047f1c157066736d2dca1bf5ecf7496fd0fafe943b6e56304f19dd40f9e7225f3552691bcb89fcb5df605f72f86f1237956a1ad497452" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/q@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/selenium-webdriver@3.0.20", + "group": "@types", + "name": "selenium-webdriver", + "version": "3.0.20", + "description": "TypeScript definitions for Selenium WebDriverJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9df10e5fa92f4358e5c484c0e217aff6163c877663ff8d24c053279047b430ac578d998cb39af1b10f968b2072f8e391e35a089bb347808a0f8a3e76da7ac5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/selenium-webdriver@3.0.20", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-webdriver" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/blocking-proxy@1.0.1", + "name": "blocking-proxy", + "version": "1.0.1", + "description": "WebDriver Proxy for testing rich clients. It block certain calls until Angular is done updating the page under test.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a63bf56e1b48a2ee41286a151e434182b0fe47935559ed6046bbcfde382ecd176ad5e680c50702ad6316a5211181f9ad116dd93054952bf8fa3f9deefa4a46c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Angular\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/blocking-proxy@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/blocking-proxy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/jasminewd/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/jasminewd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserstack@1.6.1", + "author": "Scott González", + "name": "browserstack", + "version": "1.6.1", + "description": "A client for working with the BrowserStack APIs.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b1b458e921a29d6c0cb31df1432a2c4a3bc2014fbc11dcd8dbceb19cefc9cdb3f0a2cacf70537fe706db2ab16bf99c34ab748e6dcf4a5e2aecc23ee3573548b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/browserstack@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/scottgonzalez/node-browserstack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/scottgonzalez/node-browserstack/issues" + }, + { + "type": "vcs", + "url": "git://github.com/scottgonzalez/node-browserstack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/https-proxy-agent@2.2.4", + "author": "Nathan Rajlich", + "name": "https-proxy-agent", + "version": "2.2.4", + "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", + "hashes": [ + { + "alg": "SHA-512", + "content": "399866efffc90e742d84c56a94f01f919c8f3b67cc85f1d8ea063e8d9717f2b2df1621ad1e2210adf0fcd16bc20c734c43bec0937af90a23d10c3dab373a3639" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/https-proxy-agent@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-https-proxy-agent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-https-proxy-agent/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-https-proxy-agent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/agent-base@4.3.0", + "author": "Nathan Rajlich", + "name": "agent-base", + "version": "4.3.0", + "description": "Turn a function into an `http.Agent` instance", + "hashes": [ + { + "alg": "SHA-512", + "content": "a03b5957be34a377ebe6826d3cb3ac807da19764d13ec70d5c8c78573cc1c15957564bfc4479bb5d7a8601883cb76d3e1b0bba2cd0e7c7c1d1306a9518f67c57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/agent-base@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TooTallNate/node-agent-base#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TooTallNate/node-agent-base/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TooTallNate/node-agent-base.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasmine@2.8.0", + "name": "jasmine", + "version": "2.8.0", + "description": "Command line jasmine", + "hashes": [ + { + "alg": "SHA-512", + "content": "926b830bee9cf6d03c04064677bc26b9c58aaccfda082052cc2244a91821bf0f652956a5c3ea60f3c68dfc11488a4999c114c3e7b4261da990db046929bdc50d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jasmine@2.8.0", + "externalReferences": [ + { + "type": "website", + "url": "http://jasmine.github.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jasmine/jasmine-npm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jasmine/jasmine-npm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasmine-core@2.8.0", + "name": "jasmine-core", + "version": "2.8.0", + "description": "Official packaging of Jasmine's core files for use by Node.js projects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "adaf7b538aaedce09c231bcde9e837932cbc6cbac80ff4e0c5a7d218c3080a0dd2171e42fec51f0cfa623a1ef2a08b0776d8eb39576d4fdae279886a3ac87d5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/jasmine-core@2.8.0", + "externalReferences": [ + { + "type": "website", + "url": "http://jasmine.github.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jasmine/jasmine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jasmine/jasmine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/saucelabs@1.5.0", + "author": "Dan Jenkins", + "name": "saucelabs", + "version": "1.5.0", + "description": "A wrapper around Sauce Labs REST API", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e55f7146756bd87f84372c57c5592d50bcf8372060865b121cf1004574f4dba53267b7fbf5ec51d7615027ec2f2c1dfd72517a3673bc883348ac0ebc9f62d1d" + } + ], + "purl": "pkg:npm/saucelabs@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/holidayextras/node-saucelabs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/holidayextras/node-saucelabs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/holidayextras/node-saucelabs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/selenium-webdriver@3.6.0", + "name": "selenium-webdriver", + "version": "3.6.0", + "description": "The official WebDriver JavaScript bindings from the Selenium project", + "hashes": [ + { + "alg": "SHA-512", + "content": "587ec095db1efb63f96db1413b81a57bf9ee40e755c291cc4cbeab68bdeeb818ffbcf1b4ee4eaeceddda89a86edf9d8e341af9c5787484394cdcb86d5cf382e1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright 2011-2017 Software Freedom Conservancy\nCopyright 2004-2011 Selenium committers\n" + } + } + } + ], + "purl": "pkg:npm/selenium-webdriver@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SeleniumHQ/selenium" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SeleniumHQ/selenium/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SeleniumHQ/selenium.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jszip@3.10.0", + "author": "Stuart Knightley", + "name": "jszip", + "version": "3.10.0", + "description": "Create, read and edit .zip files with JavaScript http://stuartk.com/jszip", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c37d5b4e2ed3b16fd4579183b03f23414d00cbe1e51ba9a86da18eb1d3b1a20c91f0498be7f2c1c7230f3020d22657732a6cc36f7b6812b8cd430ea10a934f5" + } + ], + "licenses": [ + { + "license": { + "name": "(MIT OR GPL-3.0-or-later)" + } + } + ], + "purl": "pkg:npm/jszip@3.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Stuk/jszip#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Stuk/jszip/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Stuk/jszip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lie@3.3.0", + "name": "lie", + "version": "3.3.0", + "description": "A basic but performant promise implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "51a88c27379646512e8f302ec392e8918d4be5e70d41864a7e6c99f4bef00c76ffa797ad29ac5786884172bc341186f2f86fcd039daf452378377f5dc47008c1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "#Copyright (c) 2014-2018 Calvin Metcalf, Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\n**THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.**\n" + } + } + } + ], + "purl": "pkg:npm/lie@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/calvinmetcalf/lie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/calvinmetcalf/lie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/calvinmetcalf/lie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tmp@0.0.30", + "author": "KARASZI István", + "name": "tmp", + "version": "0.0.30", + "description": "Temporary file and directory creator", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d10899688ca9d9dda75db533a3748aa846e3c4281bcd5dc198ab33bacd6657f0a7ca1299c66398df820250dc48cabaef03e1b251af4cbe7182459986c89971b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 KARASZI István\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tmp@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/raszi/node-tmp" + }, + { + "type": "issue-tracker", + "url": "http://github.com/raszi/node-tmp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/raszi/node-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xml2js@0.4.23", + "author": "Marek Kubica", + "name": "xml2js", + "version": "0.4.23", + "description": "Simple XML to JavaScript object converter.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c923e2323334fa92c37ed1e05d8e01cb4bacc08dd23ca2c3c3f8b75176e73bc33fa76f33a9ec425283e6405ad80feff5073846252b368b511158a240b622ebba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, 2012, 2013. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xml2js@0.4.23", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Leonidas-from-XIV/node-xml2js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmlbuilder@11.0.1", + "author": "Ozgur Ozcitak", + "name": "xmlbuilder", + "version": "11.0.1", + "description": "An XML builder for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0478f88479f8508407949f04672012c15a693f7ec5966d0e771045ac46ecc409b4379b9a3f12c9aae87e3b09863048b5be627b74ad2f61774a5dda880c0168e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2013 Ozgur Ozcitak\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/xmlbuilder@11.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/oozcitak/xmlbuilder-js" + }, + { + "type": "issue-tracker", + "url": "http://github.com/oozcitak/xmlbuilder-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/oozcitak/xmlbuilder-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.4.18", + "name": "source-map-support", + "version": "0.4.18", + "description": "Fixes stack traces for files with source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "80628e49ab7bdf3d15f3004aa3d006c596727a4733062ade87584792d6edfa46fd69cb0207939f5421760c25a5ced710debe6834dedfd812f4076c4e72827f0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Evan Wallace\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-support@0.4.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/evanw/node-source-map-support#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/evanw/node-source-map-support/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/evanw/node-source-map-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webdriver-js-extender@2.1.0", + "author": "Sammy Jelin", + "name": "webdriver-js-extender", + "version": "2.1.0", + "description": "A plugin which adds additional commands to selenium's javascript implementation of the webdriver client side API", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c6f06c4fb128fd2433c67073f40355d3ad44f5b9115b0fc53b5bda80d7af5f609d876a7be7fe7f30e10597bee9f570d53b759baf46370b6ee3e856a2d6b3297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2016 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/webdriver-js-extender@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/webdriver-js-extender#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/webdriver-js-extender/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/webdriver-js-extender.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webdriver-manager@12.1.8", + "author": "Craig Nishina", + "name": "webdriver-manager", + "version": "12.1.8", + "description": "A selenium server and browser driver manager for your end to end tests.", + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2016-2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webdriver-manager@12.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/webdriver-manager#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/webdriver-manager/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/webdriver-manager.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prr@0.0.0", + "name": "prr", + "version": "0.0.0", + "description": "A better Object.defineProperty()", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e65040a6ad6ed1563ea60d62a34d77caba0ed3146762cfd3f5f0731c3b84472fe456ecc08e18dbe98f98f8ed19e9ea77baaf87d9d95cf251612929b83eb6c8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013, Rod Vagg (the \"Original Author\")\nAll rights reserved.\n\nMIT +no-false-attribs License\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nDistributions of all or part of the Software intended to be used\nby the recipients as they would use the unmodified Software,\ncontaining modifications that substantially alter, remove, or\ndisable functionality of the Software, outside of the documented\nconfiguration mechanisms provided by the Software, shall be\nmodified such that the Original Author's bug reporting email\naddresses and urls are either replaced with the contact information\nof the parties responsible for the changes, or removed entirely.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\n\nExcept where noted, this license applies to any and all software\nprograms and associated documentation files created by the\nOriginal Author, when distributed with the Software." + } + } + } + ], + "purl": "pkg:npm/prr@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/prr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/prr/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/prr.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ps-tree@1.2.0", + "author": "Charlie Robbins", + "name": "ps-tree", + "version": "1.2.0", + "description": "Get all children of a pid", + "hashes": [ + { + "alg": "SHA-512", + "content": "d159da98f3d81e5e2e694fe7485799669476d50016473fac46fe225bdfaffc64bf27953989907904d37a27444ca0ebddc76816336f9914c226e7cab6e1ee1460" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Domenic Tarr, Charlie Robbins & the Contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ps-tree@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/indexzero/ps-tree#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indexzero/ps-tree/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/indexzero/ps-tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/event-stream@3.3.4", + "author": "Dominic Tarr", + "name": "event-stream", + "version": "3.3.4", + "description": "construct pipes of streams of events", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf289b0dcbb924bdb431ed5f3fbdf84011ff91e9c118b65aa769f4f975ccee6bee50fcc9db461daa3d5a29c21e31dae2d69f8f53ee3200aba08cdf0a095b2dfa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/event-stream@3.3.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/event-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/event-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/event-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split@0.3.3", + "author": "Dominic Tarr", + "name": "split", + "version": "0.3.3", + "description": "split a Text Stream into a Line Stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "993c8ea0f6eb8afb579f09c8c59445611acf36d1052a5a41d9fbe34a7090522000eaa019ceac276b97a7bcae2e93a38878fd7b0ac745deb481198541b14d1392" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Dominic Tarr\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/split@0.3.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/dominictarr/split" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/split/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/split.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-combiner@0.0.4", + "author": "'Dominic Tarr'", + "name": "stream-combiner", + "version": "0.0.4", + "description": "", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad3d3448f9d357246c692cf9ce048f99afda1d23a2739535a6b858751cb91d2da44d9be21699838338a56edb09b318aba2a00299acb29c337ff55cc86d7e433b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 'Dominic Tarr'\n\nPermission is hereby granted, free of charge, \nto any person obtaining a copy of this software and \nassociated documentation files (the \"Software\"), to \ndeal in the Software without restriction, including \nwithout limitation the rights to use, copy, modify, \nmerge, publish, distribute, sublicense, and/or sell \ncopies of the Software, and to permit persons to whom \nthe Software is furnished to do so, \nsubject to the following conditions:\n\nThe above copyright notice and this permission notice \nshall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES \nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR \nANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stream-combiner@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dominictarr/stream-combiner" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dominictarr/stream-combiner/issues" + }, + { + "type": "vcs", + "url": "git://github.com/dominictarr/stream-combiner.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/q-io@1.13.6", + "author": "Kris Kowal", + "name": "q-io", + "version": "1.13.6", + "description": "IO using Q promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "c60c657cdde2390e0b32eca16fcf9a89bb6fe7b1e7a99ab27022da137a3faa47aabc1b847dbab8b54e281e3207818fcb54ddef26cf86cbd84a87c933967ba0ee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nCopyright 2009-2013 Kristopher Michael Kowal. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/q-io@1.13.6", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/kriskowal/q-io/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kriskowal/q-io/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/kriskowal/q-io.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/qs@5.2.1", + "name": "qs", + "version": "5.2.1", + "description": "A querystring parser that supports nesting and arrays, with a depth limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "32f8e830227011aad26d4624e4efa79a84b34aeb52b13c05f39cdc1cf43d3ab945a193982236aa040248a885e3a6dc83e6f4e1c46ab9d97bbf31a273464224e1" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2014 Nathan LaFreniere and other contributors.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote\n products derived from this software without specific prior written\n permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n * * *\n\nThe complete list of contributors can be found at: https://github.com/hapijs/qs/graphs/contributors\n" + } + } + } + ], + "purl": "pkg:npm/qs@5.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/qs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/hapijs/qs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/querystring@0.2.1", + "author": "Irakli Gozalishvili", + "name": "querystring", + "version": "0.2.1", + "description": "Node's querystring module for all engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c24bd2ee62ff24cba072ea77feb322b4799df5e70819dda584584af4ddd4510e39d21eba775af763d9ef5f34005b52eafb0cb1eb593fd697ca4b92ae2a2c846e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2012 Irakli Gozalishvili\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/querystring@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Gozala/querystring#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Gozala/querystring/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/Gozala/querystring.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/querystringify@1.0.0", + "author": "Arnout Kazemier", + "name": "querystringify", + "version": "1.0.0", + "description": "Querystringify - Small, simple but powerful query string parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f96216d38ebf9e12278bf9ad7330434dcb45df4f547b45df288785f377a294baf8a2596b8a612ac73206d830b431482f8b8d05e118e2e26e9484a10d36c12bb4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/querystringify@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/querystringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/querystringify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/querystringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/randomatic@1.1.7", + "author": "Jon Schlinkert", + "name": "randomatic", + "version": "1.1.7", + "description": "Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f92548cfc896da24392e01ace956749f5642e5a5e3b7c0394f44e4cc2c6286d73305345460adc88aa3596dcff03335392a1341f30f1eb9e5038be75374ea1a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/randomatic@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/randomatic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/randomatic/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/randomatic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/reflect-metadata@0.1.13", + "author": "Ron Buckton", + "name": "reflect-metadata", + "version": "0.1.13", + "description": "Polyfill for Metadata Reflection API", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ecd58fda9d910b852b2331c53ad397d4f511383a2de9e4e46e8f06c82977d66bed19c6ce75d10ae6adc7b9fc9a30ab7707499489a818f2a719876ab73ebc45a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n\nVersion 2.0, January 2004\n\nhttp://www.apache.org/licenses/ \n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\n\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\n\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS" + } + } + } + ], + "purl": "pkg:npm/reflect-metadata@0.1.13", + "externalReferences": [ + { + "type": "website", + "url": "http://rbuckton.github.io/reflect-metadata" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rbuckton/reflect-metadata/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rbuckton/reflect-metadata.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.10.5", + "author": "Ben Newman", + "name": "regenerator-runtime", + "version": "0.10.5", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f463f249e1586eb3230e77fa36e5ade3754a8dfdb0bce4416c6a82fd3aa9b2fcee1e7c287ec61a7bca3d8410eb23f7be2abcc91c5bc0305332758c1fcc6f10b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regenerator-runtime@0.10.5", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/remap-istanbul@0.8.4", + "name": "remap-istanbul", + "version": "0.8.4", + "description": "A tool for remapping Istanbul coverage via Source Maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "15d1ad7d756cbab3bf288027d8fb47cd83c612e194e33191c2e30fd92210a3e3320cd363414e57d16c40b88285732d047e8789e311b17ec597662b9913ccd81e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "The \"New\" BSD License\n*********************\n\nCopyright (c) 2004-2015, The Dojo Foundation\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of the Dojo Foundation nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/remap-istanbul@0.8.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SitePen/remap-istanbul" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SitePen/remap-istanbul" + }, + { + "type": "vcs", + "url": "git+https://github.com/SitePen/remap-istanbul.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gulp-util@3.0.7", + "author": "Fractal", + "name": "gulp-util", + "version": "3.0.7", + "description": "Utility functions for gulp plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab9a163dcd769704854bd87fe152231bed4db8d0e5278f32c15d89288b58e1871cfe7d5f5c97983d542c7eee59ae1422ec51920c16a5c1408b6abfc6c875ca1b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Fractal \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/gulp-util@3.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/gulp-util#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/gulp-util/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/gulp-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/replace@0.3.0", + "author": "Heather Arthur", + "name": "replace", + "version": "0.3.0", + "description": "Command line search and replace utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "efc4874671567095fcd777a3838f23f832f6a859abf2631bc8a5ce1d7ba0f0d9eff9a3687952b11c76b299fb3a9cd3a2f74ee16c656ffe6fbb4e470c37eaa14b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/replace@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/harthur/replace#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/harthur/replace/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/harthur/replace.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimatch@0.2.14", + "author": "Isaac Z. Schlueter", + "name": "minimatch", + "version": "0.2.14", + "description": "a glob matcher in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2009, 2010, 2011 Isaac Z. Schlueter.\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimatch@0.2.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/minimatch#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/minimatch/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/minimatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nomnom@1.6.2", + "author": "Heather Arthur", + "name": "nomnom", + "version": "1.6.2", + "description": "Option parser with generated usage and commands", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6cd09c6a843c7dfeb92c1b60533153757a78d64af3e2769a1281589953865750bc937beee3c5c0912c1e9fe36674975c5826995e081b52c98e8bc20deebb909" + } + ], + "purl": "pkg:npm/nomnom@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/harthur/nomnom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/harthur/nomnom/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/harthur/nomnom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/underscore@1.4.4", + "author": "Jeremy Ashkenas", + "name": "underscore", + "version": "1.4.4", + "description": "JavaScript's functional programming helper library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "050167503b8043861ffdc618e4b36b2bd3422452ab89a45b0fdb91d5f4de5e705ea1af7b5b48b8d6a9197c63bda52a3c2392b38c07126365d8b5d7f4a0a77b29" + } + ], + "purl": "pkg:npm/underscore@1.4.4", + "externalReferences": [ + { + "type": "website", + "url": "http://underscorejs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/documentcloud/underscore/issues" + }, + { + "type": "vcs", + "url": "git://github.com/documentcloud/underscore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rxjs@5.5.12", + "author": "Ben Lesh", + "name": "rxjs", + "version": "5.5.12", + "description": "Reactive Extensions for modern JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "c71da2b672f9b016ea79e89580d3d5b904359c2f09a7659f349857587984956f589aba52f5456737384fdc41f71c5a9ec4ee53969f0685863e58472a71532f1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2017 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n" + } + } + } + ], + "purl": "pkg:npm/rxjs@5.5.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ReactiveX/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ReactiveX/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/ReactiveX/RxJS.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/symbol-observable@1.0.1", + "author": "Ben Lesh", + "name": "symbol-observable", + "version": "1.0.1", + "description": "Symbol.observable ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bdd349ccf1146d1a1955dfa286114f64eb92b798f6f5595ef439d8dfc651b6100b8cd67a22fc4fc1696fee3212fb6cf12cb0af10579eef3777ac8b18d4bdc5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\nCopyright (c) Ben Lesh \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/symbol-observable@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blesh/symbol-observable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blesh/symbol-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/blesh/symbol-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-loader@6.0.7", + "author": "J. Tangelder", + "name": "sass-loader", + "version": "6.0.7", + "description": "Sass loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "2688b20f4d18a35a3ad4e26ca0fdacda46f5f4bd7f636a77405702756745ea8a2604629562e672a8759e99105f436b8662c93e087dde0a0b9735fa63ce572968" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sass-loader@6.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/sass-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/sass-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/sass-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/selfsigned@1.10.14", + "author": "José F. Romaniello", + "name": "selfsigned", + "version": "1.10.14", + "description": "Generate self signed certificates private and public keys", + "hashes": [ + { + "alg": "SHA-512", + "content": "9648da880c9efb00590c206cbb90468b45e22d1c5e525b06a1de593fddb8091484a06b99030fdfef2f512aedbcaf04df88756175abe1074a87d08355e8fd6510" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013 José F. Romaniello\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/selfsigned@1.10.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jfromaniello/selfsigned#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jfromaniello/selfsigned/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jfromaniello/selfsigned.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-forge@0.10.0", + "author": "Digital Bazaar, Inc.", + "name": "node-forge", + "version": "0.10.0", + "description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3adf6a2c26a707aa56e67563af9e0a9cd13d1857e30b48fb071691a24065cf7b5c2385c558decaca40e2e4a72a7297cc34439adbab34f2f5673486cdcd496ca" + } + ], + "licenses": [ + { + "license": { + "name": "(BSD-3-Clause OR GPL-2.0)", + "text": { + "content": "You may use the Forge project under the terms of either the BSD License or the\nGNU General Public License (GPL) Version 2.\n\nThe BSD License is recommended for most projects. It is simple and easy to\nunderstand and it places almost no restrictions on what you can do with the\nForge project.\n\nIf the GPL suits your project better you are also free to use Forge under\nthat license.\n\nYou don't have to do anything special to choose one license or the other and\nyou don't have to notify anyone which license you are using. You are free to\nuse this project in commercial projects as long as the copyright header is\nleft intact.\n\nIf you are a commercial entity and use this set of libraries in your\ncommercial software then reasonable payment to Digital Bazaar, if you can\nafford it, is not required but is expected and would be appreciated. If this\nlibrary saves you time, then it's saving you money. The cost of developing\nthe Forge software was on the order of several hundred hours and tens of\nthousands of dollars. We are attempting to strike a balance between helping\nthe development community while not being taken advantage of by lucrative\ncommercial entities for our efforts.\n\n-------------------------------------------------------------------------------\nNew BSD License (3-clause)\nCopyright (c) 2010, Digital Bazaar, Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Digital Bazaar, Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL DIGITAL BAZAAR BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n-------------------------------------------------------------------------------\n GNU GENERAL PUBLIC LICENSE\n Version 2, June 1991\n\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The licenses for most software are designed to take away your\nfreedom to share and change it. By contrast, the GNU General Public\nLicense is intended to guarantee your freedom to share and change free\nsoftware--to make sure the software is free for all its users. This\nGeneral Public License applies to most of the Free Software\nFoundation's software and to any other program whose authors commit to\nusing it. (Some other Free Software Foundation software is covered by\nthe GNU Lesser General Public License instead.) You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthis service if you wish), that you receive source code or can get it\nif you want it, that you can change the software or use pieces of it\nin new free programs; and that you know you can do these things.\n\n To protect your rights, we need to make restrictions that forbid\nanyone to deny you these rights or to ask you to surrender the rights.\nThese restrictions translate to certain responsibilities for you if you\ndistribute copies of the software, or if you modify it.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must give the recipients all the rights that\nyou have. You must make sure that they, too, receive or can get the\nsource code. And you must show them these terms so they know their\nrights.\n\n We protect your rights with two steps: (1) copyright the software, and\n(2) offer you this license which gives you legal permission to copy,\ndistribute and/or modify the software.\n\n Also, for each author's protection and ours, we want to make certain\nthat everyone understands that there is no warranty for this free\nsoftware. If the software is modified by someone else and passed on, we\nwant its recipients to know that what they have is not the original, so\nthat any problems introduced by others will not reflect on the original\nauthors' reputations.\n\n Finally, any free program is threatened constantly by software\npatents. We wish to avoid the danger that redistributors of a free\nprogram will individually obtain patent licenses, in effect making the\nprogram proprietary. To prevent this, we have made it clear that any\npatent must be licensed for everyone's free use or not licensed at all.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n GNU GENERAL PUBLIC LICENSE\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n 0. This License applies to any program or other work which contains\na notice placed by the copyright holder saying it may be distributed\nunder the terms of this General Public License. The \"Program\", below,\nrefers to any such program or work, and a \"work based on the Program\"\nmeans either the Program or any derivative work under copyright law:\nthat is to say, a work containing the Program or a portion of it,\neither verbatim or with modifications and/or translated into another\nlanguage. (Hereinafter, translation is included without limitation in\nthe term \"modification\".) Each licensee is addressed as \"you\".\n\nActivities other than copying, distribution and modification are not\ncovered by this License; they are outside its scope. The act of\nrunning the Program is not restricted, and the output from the Program\nis covered only if its contents constitute a work based on the\nProgram (independent of having been made by running the Program).\nWhether that is true depends on what the Program does.\n\n 1. You may copy and distribute verbatim copies of the Program's\nsource code as you receive it, in any medium, provided that you\nconspicuously and appropriately publish on each copy an appropriate\ncopyright notice and disclaimer of warranty; keep intact all the\nnotices that refer to this License and to the absence of any warranty;\nand give any other recipients of the Program a copy of this License\nalong with the Program.\n\nYou may charge a fee for the physical act of transferring a copy, and\nyou may at your option offer warranty protection in exchange for a fee.\n\n 2. You may modify your copy or copies of the Program or any portion\nof it, thus forming a work based on the Program, and copy and\ndistribute such modifications or work under the terms of Section 1\nabove, provided that you also meet all of these conditions:\n\n a) You must cause the modified files to carry prominent notices\n stating that you changed the files and the date of any change.\n\n b) You must cause any work that you distribute or publish, that in\n whole or in part contains or is derived from the Program or any\n part thereof, to be licensed as a whole at no charge to all third\n parties under the terms of this License.\n\n c) If the modified program normally reads commands interactively\n when run, you must cause it, when started running for such\n interactive use in the most ordinary way, to print or display an\n announcement including an appropriate copyright notice and a\n notice that there is no warranty (or else, saying that you provide\n a warranty) and that users may redistribute the program under\n these conditions, and telling the user how to view a copy of this\n License. (Exception: if the Program itself is interactive but\n does not normally print such an announcement, your work based on\n the Program is not required to print an announcement.)\n\nThese requirements apply to the modified work as a whole. If\nidentifiable sections of that work are not derived from the Program,\nand can be reasonably considered independent and separate works in\nthemselves, then this License, and its terms, do not apply to those\nsections when you distribute them as separate works. But when you\ndistribute the same sections as part of a whole which is a work based\non the Program, the distribution of the whole must be on the terms of\nthis License, whose permissions for other licensees extend to the\nentire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest\nyour rights to work written entirely by you; rather, the intent is to\nexercise the right to control the distribution of derivative or\ncollective works based on the Program.\n\nIn addition, mere aggregation of another work not based on the Program\nwith the Program (or with a work based on the Program) on a volume of\na storage or distribution medium does not bring the other work under\nthe scope of this License.\n\n 3. You may copy and distribute the Program (or a work based on it,\nunder Section 2) in object code or executable form under the terms of\nSections 1 and 2 above provided that you also do one of the following:\n\n a) Accompany it with the complete corresponding machine-readable\n source code, which must be distributed under the terms of Sections\n 1 and 2 above on a medium customarily used for software interchange; or,\n\n b) Accompany it with a written offer, valid for at least three\n years, to give any third party, for a charge no more than your\n cost of physically performing source distribution, a complete\n machine-readable copy of the corresponding source code, to be\n distributed under the terms of Sections 1 and 2 above on a medium\n customarily used for software interchange; or,\n\n c) Accompany it with the information you received as to the offer\n to distribute corresponding source code. (This alternative is\n allowed only for noncommercial distribution and only if you\n received the program in object code or executable form with such\n an offer, in accord with Subsection b above.)\n\nThe source code for a work means the preferred form of the work for\nmaking modifications to it. For an executable work, complete source\ncode means all the source code for all modules it contains, plus any\nassociated interface definition files, plus the scripts used to\ncontrol compilation and installation of the executable. However, as a\nspecial exception, the source code distributed need not include\nanything that is normally distributed (in either source or binary\nform) with the major components (compiler, kernel, and so on) of the\noperating system on which the executable runs, unless that component\nitself accompanies the executable.\n\nIf distribution of executable or object code is made by offering\naccess to copy from a designated place, then offering equivalent\naccess to copy the source code from the same place counts as\ndistribution of the source code, even though third parties are not\ncompelled to copy the source along with the object code.\n\n 4. You may not copy, modify, sublicense, or distribute the Program\nexcept as expressly provided under this License. Any attempt\notherwise to copy, modify, sublicense or distribute the Program is\nvoid, and will automatically terminate your rights under this License.\nHowever, parties who have received copies, or rights, from you under\nthis License will not have their licenses terminated so long as such\nparties remain in full compliance.\n\n 5. You are not required to accept this License, since you have not\nsigned it. However, nothing else grants you permission to modify or\ndistribute the Program or its derivative works. These actions are\nprohibited by law if you do not accept this License. Therefore, by\nmodifying or distributing the Program (or any work based on the\nProgram), you indicate your acceptance of this License to do so, and\nall its terms and conditions for copying, distributing or modifying\nthe Program or works based on it.\n\n 6. Each time you redistribute the Program (or any work based on the\nProgram), the recipient automatically receives a license from the\noriginal licensor to copy, distribute or modify the Program subject to\nthese terms and conditions. You may not impose any further\nrestrictions on the recipients' exercise of the rights granted herein.\nYou are not responsible for enforcing compliance by third parties to\nthis License.\n\n 7. If, as a consequence of a court judgment or allegation of patent\ninfringement or for any other reason (not limited to patent issues),\nconditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot\ndistribute so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you\nmay not distribute the Program at all. For example, if a patent\nlicense would not permit royalty-free redistribution of the Program by\nall those who receive copies directly or indirectly through you, then\nthe only way you could satisfy both it and this License would be to\nrefrain entirely from distribution of the Program.\n\nIf any portion of this section is held invalid or unenforceable under\nany particular circumstance, the balance of the section is intended to\napply and the section as a whole is intended to apply in other\ncircumstances.\n\nIt is not the purpose of this section to induce you to infringe any\npatents or other property right claims or to contest validity of any\nsuch claims; this section has the sole purpose of protecting the\nintegrity of the free software distribution system, which is\nimplemented by public license practices. Many people have made\ngenerous contributions to the wide range of software distributed\nthrough that system in reliance on consistent application of that\nsystem; it is up to the author/donor to decide if he or she is willing\nto distribute software through any other system and a licensee cannot\nimpose that choice.\n\nThis section is intended to make thoroughly clear what is believed to\nbe a consequence of the rest of this License.\n\n 8. If the distribution and/or use of the Program is restricted in\ncertain countries either by patents or by copyrighted interfaces, the\noriginal copyright holder who places the Program under this License\nmay add an explicit geographical distribution limitation excluding\nthose countries, so that distribution is permitted only in or among\ncountries not thus excluded. In such case, this License incorporates\nthe limitation as if written in the body of this License.\n\n 9. The Free Software Foundation may publish revised and/or new versions\nof the General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\nEach version is given a distinguishing version number. If the Program\nspecifies a version number of this License which applies to it and \"any\nlater version\", you have the option of following the terms and conditions\neither of that version or of any later version published by the Free\nSoftware Foundation. If the Program does not specify a version number of\nthis License, you may choose any version ever published by the Free Software\nFoundation.\n\n 10. If you wish to incorporate parts of the Program into other free\nprograms whose distribution conditions are different, write to the author\nto ask for permission. For software which is copyrighted by the Free\nSoftware Foundation, write to the Free Software Foundation; we sometimes\nmake exceptions for this. Our decision will be guided by the two goals\nof preserving the free status of all derivatives of our free software and\nof promoting the sharing and reuse of software generally.\n\n NO WARRANTY\n\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\nREPAIR OR CORRECTION.\n\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES.\n\n" + } + } + } + ], + "purl": "pkg:npm/node-forge@0.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/digitalbazaar/forge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/digitalbazaar/forge/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/digitalbazaar/forge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/send@0.15.6", + "author": "TJ Holowaychuk", + "name": "send", + "version": "0.15.6", + "description": "Better streaming static file server with Range and conditional-GET support", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfa3b7f5257803a963e130402dcd2d00c9a24f00a50b6369a7ac2246fcf1ab2ac7df24e2630026595c81d9ad1afc3dc84824151d8fe5f953bff49568e99b9b7c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk\nCopyright (c) 2014-2016 Douglas Christopher Wilson\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/send@0.15.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pillarjs/send#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pillarjs/send/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pillarjs/send.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/set-immediate-shim@1.0.1", + "author": "Sindre Sorhus", + "name": "set-immediate-shim", + "version": "1.0.1", + "description": "Simple setImmediate shim", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e2e403aaad9582540da7e64af2cc49aa6a2e9b29222fa73e685091cf563ebe76c6c3dd7d62c6db18e6d127b1a3691f7a45007986f1e20752bb44b6886b83e51" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/set-immediate-shim@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/set-immediate-shim#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/set-immediate-shim/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/set-immediate-shim.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sockjs@0.3.24", + "author": "Marek Majkowski", + "name": "sockjs", + "version": "0.3.24", + "description": "SockJS-node is a server counterpart of SockJS-client a JavaScript library that provides a WebSocket-like object in the browser. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.", + "hashes": [ + { + "alg": "SHA-512", + "content": "18980b4d9eef61bfc9b4f492675d21b0e608bc462c8db354fb33dd20771469654d5043e2bf3c64bb7d7ceb9b124ae7740dad16e2511e38f966c3ddf32d0721b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2011 VMware, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sockjs@0.3.24", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sockjs/sockjs-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sockjs/sockjs-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sockjs/sockjs-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/faye-websocket@0.11.4", + "author": "James Coglan", + "name": "faye-websocket", + "version": "0.11.4", + "description": "Standards-compliant WebSocket server and client", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e18fddd15db312abcbab34252ae29f65d0fea19f2489ffb60d46160dba0d1b2ceba28bba4a3bbc5015be66c7dc595d609aafcf292cf6fcd393ef524c2b2d9a5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": "Copyright 2010-2021 James Coglan\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\nspecific language governing permissions and limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/faye-websocket@0.11.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faye/faye-websocket-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faye/faye-websocket-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/faye-websocket-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/websocket-driver@0.7.4", + "author": "James Coglan", + "name": "websocket-driver", + "version": "0.7.4", + "description": "WebSocket protocol handler with pluggable I/O", + "hashes": [ + { + "alg": "SHA-512", + "content": "a01c7a64cd46b39ab68f066e48dfd0c72cbf7db828995f3ebeab268a968f281ffbe218c794ab8cd3b8cd991867e2a6b601d530b20c6b96dabe81a3ec1e0725d1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": "Copyright 2010-2020 James Coglan\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\nspecific language governing permissions and limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/websocket-driver@0.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faye/websocket-driver-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faye/websocket-driver-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/websocket-driver-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-parser-js@0.5.8", + "author": "Tim Caswell", + "name": "http-parser-js", + "version": "0.5.8", + "description": "A pure JS HTTP parser for node.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4867815f9e05f785a0bb9447dd7e63b03b5fe1e1f24688165f55c64f76f81ee5b7b503cce00681ce85238bfe000093570843966793b40e0666270d7de3b803e5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other\ncontributors. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\nSome files from the tests folder are from joyent/node and mscedex/io.js, a fork\nof nodejs/io.js:\n\n- tests/iojs/test-http-parser-durability.js\n\n This file is from https://github.com/mscdex/io.js/blob/js-http-parser/test/pummel/test-http-parser-durability.js\n with modifications by Jan Schär (jscissr).\n\n \"\"\"\n Copyright io.js contributors. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n\n- tests/fixtures/*\n tests/parallel/*\n tests/testpy/*\n tests/common.js\n tests/test.py\n tests/utils.py\n\n These files are from https://github.com/nodejs/node with changes by\n Jan Schär (jscissr).\n\n Node.js is licensed for use as follows:\n \n \"\"\"\n Copyright Node.js contributors. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n\n This license applies to parts of Node.js originating from the\n https://github.com/joyent/node repository:\n\n \"\"\"\n Copyright Joyent, Inc. and other Node contributors. All rights reserved.\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to\n deal in the Software without restriction, including without limitation the\n rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n IN THE SOFTWARE.\n \"\"\"\n " + } + } + } + ], + "purl": "pkg:npm/http-parser-js@0.5.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/creationix/http-parser-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/creationix/http-parser-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/creationix/http-parser-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/websocket-extensions@0.1.4", + "author": "James Coglan", + "name": "websocket-extensions", + "version": "0.1.4", + "description": "Generic extension manager for WebSocket connections", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aa79d3c818e7ec0e5a37d5437061b08531268ef66f46ff47da2078f9fdd6450cc16a3d3731e94c2ac8ecb708e11a10e83ff55b0622976a9fad96e4a868292a6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": "Copyright 2014-2020 James Coglan\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use\nthis file except in compliance with the License. You may obtain a copy of the\nLicense at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\nspecific language governing permissions and limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/websocket-extensions@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/faye/websocket-extensions-node" + }, + { + "type": "issue-tracker", + "url": "http://github.com/faye/websocket-extensions-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/websocket-extensions-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uuid@8.3.2", + "name": "uuid", + "version": "8.3.2", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3483470ea0644e4932081cb4705c8d56a4d3cf8a1158522220f31674fd4bd69e826a7ce52fdb45e0554dbe104c5691369b49f64b9868d8676cd10e91b29bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2010-2020 Robert Kieffer and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uuid@8.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/uuidjs/uuid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/uuidjs/uuid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/uuidjs/uuid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sockjs-client@1.6.1", + "author": "Bryce Kahle", + "name": "sockjs-client", + "version": "1.6.1", + "description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "da0d2d8ce47e7d1b346a6c4434b8bfab94e2253a98f965c53b36f95305e77652ba4cedd4fe68ab6739e9c7ac37e0754ca1cde0edc636e320bf64c2189c395f93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2018 The sockjs-client Authors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sockjs-client@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "http://sockjs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sockjs/sockjs-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sockjs/sockjs-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventsource@2.0.2", + "author": "Aslak Hellesøy", + "name": "eventsource", + "version": "2.0.2", + "description": "W3C compliant EventSource client for Node.js and browser (polyfill)", + "hashes": [ + { + "alg": "SHA-512", + "content": "6db079b44baf0be4ae4541bae17f2086f8e08919e2b80e1695e8566c59e8378cfa4f10d7a725fe04c1c5eeb320640aa87be11bc8d4546c7374bae3fda61cb98d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) EventSource GitHub organisation\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eventsource@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/EventSource/eventsource" + }, + { + "type": "issue-tracker", + "url": "http://github.com/EventSource/eventsource/issues" + }, + { + "type": "vcs", + "url": "git://github.com/EventSource/eventsource.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url-parse@1.5.10", + "author": "Arnout Kazemier", + "name": "url-parse", + "version": "1.5.10", + "description": "Small footprint URL parser that works seamlessly across Node.js and browser environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b2a5c7e24617de50ff6fbc5d23eabc3427786b5abc3a899bf7fb6da1ea244c27ff33d538fa5df2cfe03b148b1e4c84c3e75e98870e82b2a19fdb74293004289" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/url-parse@1.5.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/url-parse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/url-parse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/url-parse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/querystringify@2.2.0", + "author": "Arnout Kazemier", + "name": "querystringify", + "version": "2.2.0", + "description": "Querystringify - Small, simple but powerful query string parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f96216d38ebf9e12278bf9ad7330434dcb45df4f547b45df288785f377a294baf8a2596b8a612ac73206d830b431482f8b8d05e118e2e26e9484a10d36c12bb4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/querystringify@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unshiftio/querystringify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unshiftio/querystringify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/unshiftio/querystringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.1.43", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.1.43", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "purl": "pkg:npm/source-map@0.1.43", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-loader@0.2.4", + "author": "Tobias Koppers @sokra", + "name": "source-map-loader", + "version": "0.2.4", + "description": "extracts inlined source map and offers it to webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "394e94254b72fa2d890e94c8b678b33eb96938804b9906d632e060f6ae5b56d9c7002ab0d6d9fd9cdc2a24b6efd3fd342639c96ff11ee60e564b9beb46fef321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-loader@0.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/source-map-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/source-map-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/source-map-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-resolve@0.5.3", + "author": "Simon Lydell", + "name": "source-map-resolve", + "version": "0.5.3", + "description": "Resolve the source map and/or sources for a generated file.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1edcfe467b175a4e7e3f6b25c79261dd0ebabe1423d429659b4cef9da63df3e345c7e0efd8217f7f93bfb7cc7e29a35dadd200b2bb8dce887f2a989a95ba809f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014, 2015, 2016, 2017, 2018, 2019 Simon Lydell\nCopyright (c) 2019 ZHAO Jinxiang\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-resolve@0.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/source-map-resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/source-map-resolve/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/source-map-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-url@0.4.1", + "author": "Simon Lydell", + "name": "source-map-url", + "version": "0.4.1", + "description": "Tools for working with sourceMappingURL comments.", + "hashes": [ + { + "alg": "SHA-512", + "content": "414e1f6b40fa6923a6ad3fbb387a545f0fa34bce13d0c2da40db45b3cc732cd7ba02b8f8e0c6a077b5846f2556e4b358a003d5577e5a2ace1acf121f549ad3a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Simon Lydell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-url@0.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lydell/source-map-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lydell/source-map-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lydell/source-map-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdy@3.4.7", + "author": "Fedor Indutny", + "name": "spdy", + "version": "3.4.7", + "description": "Implementation of the SPDY protocol on node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c4be090b4693336b918e374a03cef2d32cc0157c1e41c5e38f6ec5b28ac13213c21bc4be9c0a229bafcc6b25d49cb3a5e8394a7ba50cb83c8f8655ccc76cee3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/spdy@3.4.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/node-spdy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/node-spdy/issues" + }, + { + "type": "vcs", + "url": "git://github.com/indutny/node-spdy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdy-transport@2.1.1", + "author": "Fedor Indutny", + "name": "spdy-transport", + "version": "2.1.1", + "description": "SPDY v2, v3, v3.1 and HTTP2 transport", + "hashes": [ + { + "alg": "SHA-512", + "content": "abb0fc735e3c7ac72807767bc9208049a7647a03265195bc59bfd0d6ed3f5c180328c3bcf34acb4038fc4f089ec3fb588bb8217a62948bfc214983b0135edfe5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/spdy-transport@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spdy-http2/spdy-transport" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/spdy-transport/issues" + }, + { + "type": "vcs", + "url": "git://github.com/spdy-http2/spdy-transport.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split-string@2.1.1", + "author": "Jon Schlinkert", + "name": "split-string", + "version": "2.1.1", + "description": "Split a string on a character except when the character is escaped.", + "hashes": [ + { + "alg": "SHA-512", + "content": "04a528c3f4ace2b037057588bd7cd2d6cbcae5fe520467caca280e37540d59ea51167e0febc23daf58805fe65262be9b0f1258e1db3e3e7049dcf85dae1409e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/split-string@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/split-string" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/split-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/split-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string.prototype.codepointat@0.2.1", + "author": "Mathias Bynens", + "name": "string.prototype.codepointat", + "version": "0.2.1", + "description": "A robust & optimized `String.prototype.codePointAt` polyfill, based on the ECMAScript 6 specification.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9c0550a3e88e083af1278e03bf856a978ea046b18fb3c0f987975d92ae4f485d2679e89c309b2fbae973b922eb7fa10551eede6285874b07418c6b86a511472" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/string.prototype.codepointat@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/codepointat" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/String.prototype.codePointAt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/String.prototype.codePointAt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string.prototype.padend@3.1.3", + "author": "Jordan Harband", + "name": "string.prototype.padend", + "version": "3.1.3", + "description": "ES2017 spec-compliant String.prototype.padEnd shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8cd2087a89339e6f120ff4d921242c64a62eed127285e14db7ce0350fae1e3cd860bc455a7630aaa6d8ee68051746c5b0d0a17ae1856b4f21640e8b2db4b2f52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 EcmaScript Shims\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/string.prototype.padend@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/String.prototype.padEnd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/String.prototype.padEnd/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/String.prototype.padEnd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/style-loader@0.16.1", + "author": "Tobias Koppers @sokra", + "name": "style-loader", + "version": "0.16.1", + "description": "style loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "81d9e3046a6f54c294c7265950074bbc74601d259ba59ce1ae19eb1a0536874e908049e9b67f35332def95f5dfddf2ee7dd5a0e0a61fc0c3197a156462c831a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/style-loader@0.16.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/style-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/style-loader/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/style-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/thunky@0.1.0", + "author": "Mathias Buus Madsen", + "name": "thunky", + "version": "0.1.0", + "description": "delay the evaluation of a paramless async function and cache the result", + "hashes": [ + { + "alg": "SHA-512", + "content": "beab93b7fb0a37316a14af0328b837dd4edd7a0f7758a607e02136525f613b23027e6ed55e033b189411a4f0209e6827adfe34ec572af1341510a95b6af02ef8" + } + ], + "purl": "pkg:npm/thunky@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/thunky#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/thunky/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mafintosh/thunky.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-string-loader@1.2.0", + "author": "Gajus Kuizinas", + "name": "to-string-loader", + "version": "1.2.0", + "description": "to-string loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ac5942fc15c720056f453c59b8bd8a106ce39c3b99ba84a3866285e36ec783f7fe05b7eadabd73798e8950f644ca61c2b8ccfb758fe921c7dec63c69d5a22e8" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause" + } + } + ], + "purl": "pkg:npm/to-string-loader@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/to-string-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/to-string-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/to-string-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ts-helpers@1.1.2", + "author": "Martin Hochel", + "name": "ts-helpers", + "version": "1.1.2", + "description": "Typescript helpers for compiling typescript while specifying `--noEmitHelpers` within your `tsconfig.json`. Cross platform ( Node/Browser/WebWorker )", + "hashes": [ + { + "alg": "SHA-512", + "content": "1baf7772e8c04bc3330803d48ef4acb280eca76c8c47d0849d9ef98778a2f630be033794e94668ac7343aaf7b4930e42c4b3d6da69ca4259c0e8c747e768a636" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 ngParty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ts-helpers@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ngParty/ts-helpers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ngParty/ts-helpers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ngParty/ts-helpers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ts-node@3.3.0", + "author": "Blake Embrey", + "name": "ts-node", + "version": "3.3.0", + "description": "TypeScript execution environment and REPL for node", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bcedf4b94068a7a67be2e88d5a5bc3e7104c096e442caf6a3ef42dea740926698427df73ca5645e8c08dbfc2082bf05cc0c0a86f09aa26074117eb42d6dff17" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ts-node@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TypeStrong/ts-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TypeStrong/ts-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/TypeStrong/ts-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tsconfig@6.0.0", + "author": "Blake Embrey", + "name": "tsconfig", + "version": "6.0.0", + "description": "Resole and parse `tsconfig.json`, replicating to TypeScript's behaviour", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f78bc73804ea3312504760c56413217d02e74746fbeae8d4dceac5515662c140cd80d3624a8cba080b146d2a4a06bb781138e9d167ce4ac624c0726856811d3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 TypeStrong\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/tsconfig@6.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TypeStrong/tsconfig" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TypeStrong/tsconfig/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TypeStrong/tsconfig.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/v8flags@3.2.0", + "author": "Gulp Team", + "name": "v8flags", + "version": "3.2.0", + "description": "Get available v8 and Node.js flags.", + "hashes": [ + { + "alg": "SHA-512", + "content": "48a7e193f2e5697cefb68c0969b2d9c03e0ae9219161ea3103b2897884a550c001fcd4f80819198ccab759c797d82926e25970a98568f1320282c0d8081536b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/v8flags@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/v8flags#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/v8flags/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/v8flags.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/homedir-polyfill@1.0.3", + "author": "Brian Woodward", + "name": "homedir-polyfill", + "version": "1.0.3", + "description": "Node.js os.homedir polyfill for older versions of node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7929a6584e5b6532b6368bb8834008df367daecc29ec644aa0a5d2d412d492f3ef88eaace184cdd5d8d022aad7cbd939804b5d2cfcbce898d1c2c34cf6d9c370" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Brian Woodward\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/homedir-polyfill@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/doowb/homedir-polyfill" + }, + { + "type": "issue-tracker", + "url": "https://github.com/doowb/homedir-polyfill/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/doowb/homedir-polyfill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yn@2.0.0", + "author": "Sindre Sorhus", + "name": "yn", + "version": "2.0.0", + "description": "Parse yes/no like values", + "hashes": [ + { + "alg": "SHA-512", + "content": "b93bfc27fc225938144e0fbdbcb4e2fff95e525e6f0d04baba28bf7a67936f6b2c63bbe5e9059fd9f15b2081a39e18ef6dd2a553479ded03e063586d4c2f3a8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yn@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/yn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/yn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/yn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tsickle@0.21.6", + "name": "tsickle", + "version": "0.21.6", + "description": "Transpile TypeScript code to JavaScript with Closure annotations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b45a1350bee3bbcdb4c378eacd2752c628f54b504d248d2769331322c9e644d1cd0cb69bc1f77a7bf3b88e9e32aa50e165d7ec76bf508dfc30cc14e5fa58a74" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2014-2016 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tsickle@0.21.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/tsickle" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/tsickle/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/tsickle.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tslib@1.14.1", + "author": "Microsoft Corp.", + "name": "tslib", + "version": "1.14.1", + "description": "Runtime library for TypeScript helper functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e78b7e4d2b38e032bc1ebf2b074c202bb4b0e93efc9ef3357fd04e04c989f8dcfeffeeabd0c0f87d0469077b06ccba5567b5b8a099c4fbadd5f704da3dc1126" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/tslib@1.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://www.typescriptlang.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Microsoft/tslib.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tslint@5.20.1", + "name": "tslint", + "version": "5.20.1", + "description": "An extensible static analysis linter for the TypeScript language", + "hashes": [ + { + "alg": "SHA-512", + "content": "11c331873085b7c93efd43f9afcc1a09ffe5ce6792c9596ac6a3040d013bad6622424cbc2a9201cf5240a185df44e1eb3d9d575dde37abcc909d42ce2e205142" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/tslint@5.20.1", + "externalReferences": [ + { + "type": "website", + "url": "https://palantir.github.io/tslint" + }, + { + "type": "issue-tracker", + "url": "https://github.com/palantir/tslint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/palantir/tslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/code-frame@7.18.6", + "author": "The Babel Team", + "group": "@babel", + "name": "code-frame", + "version": "7.18.6", + "description": "Generate errors that contain a code frame that point to source locations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1bfdbfdeea88e31cd09748daa5bce9df2e2d5e0dd228ec1204edfe228b03a68ceac4c74096c77cddd969f927fb5e21d08abe8e285d3e2f65e42a83682d2d39bf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.18.6", + "externalReferences": [ + { + "type": "website", + "url": "https://babel.dev/docs/en/next/babel-code-frame" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/highlight@7.18.6", + "author": "The Babel Team", + "group": "@babel", + "name": "highlight", + "version": "7.18.6", + "description": "Syntax highlight JavaScript strings for output in terminals.", + "hashes": [ + { + "alg": "SHA-512", + "content": "05775f4f8b3e76c44790e42f3b131925180a4f40791bc55c65d617a5cb9f166f8a948cd3e0c2962ae4a1e37886d549d93bf9cd0a365078332c4f3a67730b51ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/highlight@7.18.6", + "externalReferences": [ + { + "type": "website", + "url": "https://babel.dev/docs/en/next/babel-highlight" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/helper-validator-identifier@7.18.6", + "author": "The Babel Team", + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.18.6", + "description": "Validate identifier/keywords name", + "hashes": [ + { + "alg": "SHA-512", + "content": "3267ad0a4cfd7a3f3a9c9415fac142c68186ad46d4dead369202dc8b092bb7d42a101edc3f7f682846343da9249c43b41aedb44ac90c462f80619ddbd53a4df6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.18.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/diff@4.0.2", + "name": "diff", + "version": "4.0.2", + "description": "A javascript text diff implementation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "038eaab4581dfa0ee90d98a7a67c22449b716c2d61a607f4bb33f7886f3db1c1e4d00502ec0d531b17f93a288e52ffc931947c18eb7c84bf74d215746cecb9c4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Software License Agreement (BSD License)\n\nCopyright (c) 2009-2015, Kevin Decker \n\nAll rights reserved.\n\nRedistribution and use of this software in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above\n copyright notice, this list of conditions and the\n following disclaimer.\n\n* Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n* Neither the name of Kevin Decker nor the names of its\n contributors may be used to endorse or promote products\n derived from this software without specific prior\n written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR\nIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER\nIN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT\nOF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." + } + } + } + ], + "purl": "pkg:npm/diff@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kpdecker/jsdiff#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/kpdecker/jsdiff/issues" + }, + { + "type": "vcs", + "url": "git://github.com/kpdecker/jsdiff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tsutils@2.29.0", + "author": "Klaus Meinhardt", + "name": "tsutils", + "version": "2.29.0", + "description": "utilities for working with typescript's AST", + "hashes": [ + { + "alg": "SHA-512", + "content": "8392551c2209c337c849a5e95c4d6abcd6a571ae49c286fa1632380283e5a8cbac27a7ed144ec892416832154b4602bee0ac77824cdbf1464ae6de724d3bc498" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Klaus Meinhardt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tsutils@2.29.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ajafff/tsutils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ajafff/tsutils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ajafff/tsutils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tslint-config-swimlane@3.0.4", + "author": "Swimlane", + "name": "tslint-config-swimlane", + "version": "3.0.4", + "description": "Linting rules for Typescript 2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e528a02bd89317cf9b25c02a21ca674426403f4c16e6161b41228698223c223920681e4745ab44739fff08a216490471460234853423eea0a9522e3cb397396" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/tslint-config-swimlane@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/swimlane/lint-rules#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/swimlane/lint-rules/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/swimlane/lint-rules.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tslint-loader@3.5.4", + "author": "William Buchwalter", + "name": "tslint-loader", + "version": "3.5.4", + "description": "tslint loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c11cd369a57bade92819ec2b13061fbaa0cc15ba6f67f1acdb99c61278c96c0018565a81f08eaeb7d6f2055de7f755277be5c09d5f7adcea4b2db01eeb49557" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/tslint-loader@3.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/wbuchwalter/tslint-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/wbuchwalter/tslint-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/wbuchwalter/tslint-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/typescript@2.9.2", + "author": "Microsoft Corp.", + "name": "typescript", + "version": "2.9.2", + "description": "TypeScript is a language for application scale JavaScript development", + "hashes": [ + { + "alg": "SHA-512", + "content": "1abe29ea714d6a8b9f44863834c76941136683154818cb3815cbbfba37589379c066a93bb2ea73044f62766bdf648947fc2ba3fff76f8bed35f6a12e7bd955d3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": "Apache License\r\n\r\nVersion 2.0, January 2004\r\n\r\nhttp://www.apache.org/licenses/ \r\n\r\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n1. Definitions.\r\n\r\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\r\n\r\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\r\n\r\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\r\n\r\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\r\n\r\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\r\n\r\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\r\n\r\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\r\n\r\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\r\n\r\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\r\n\r\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\r\n\r\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\r\n\r\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\r\n\r\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\r\n\r\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\r\n\r\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\r\n\r\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\r\n\r\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\r\n\r\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\r\n\r\nEND OF TERMS AND CONDITIONS\r\n" + } + } + } + ], + "purl": "pkg:npm/typescript@2.9.2", + "externalReferences": [ + { + "type": "website", + "url": "http://typescriptlang.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Microsoft/TypeScript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglifyjs-webpack-plugin@0.4.6", + "name": "uglifyjs-webpack-plugin", + "version": "0.4.6", + "description": "UglifyJS plugin for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cd336d07316ebb9311d134265dbcbca2c04d524fa5b263901ef931b9e55f35369bcdc09f7e578fe9a382c703547d69f57f5abab37de746d94242936facc22af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uglifyjs-webpack-plugin@0.4.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@1.4.3", + "author": "Tobias Koppers @sokra", + "name": "webpack-sources", + "version": "1.4.3", + "description": "Source code handling classes for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "f025d87cf6645af63455669d1c3437ab685406a9362092934dd0cf61be61c271955666bc6f3a932447ab503ae95b05e7b98f6fc59d261849e3603d172e144779" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-sources@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-sources#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-sources/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-sources.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uniqid@4.1.1", + "author": "Halász Ádám", + "name": "uniqid", + "version": "4.1.1", + "description": "Unique ID Generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "8dd683e3a5f423443734e94f12767e75fb22004e0bf26060ed407b9a9cdce8937611141de13b695d7b1338ed91ab04c5c0f89fc98bfacd3325fec38319f75cc4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/uniqid@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/adamhalasz/diet-uniqid/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/adamhalasz/uniqid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/adamhalasz/uniqid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url-loader@0.5.9", + "author": "Tobias Koppers @sokra", + "name": "url-loader", + "version": "0.5.9", + "description": "url loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "07b418172beff9f381a8155e79fb31bfa928596b6398768c153e8a656b62e0a470f18503fe1394fb70040af5eecf255ac08071df3ef34117a35c20d23b9924d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/url-loader@0.5.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/url-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/url-loader/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/url-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime@1.3.6", + "author": "Robert Kieffer", + "name": "mime", + "version": "1.3.6", + "description": "A comprehensive library for mime-type mapping", + "hashes": [ + { + "alg": "SHA-512", + "content": "c74567f2ca48fb0b89d4ee92ee09db69083c3f187834d1dbeca4883661162a23c4e1128ea65be28e7f8d92662699180febc99cef48f611b793151b2bb306907a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 Benjamin Thomas, Robert Kieffer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime@1.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broofa/node-mime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broofa/node-mime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broofa/node-mime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/use@2.0.2", + "author": "Jon Schlinkert", + "name": "use", + "version": "2.0.2", + "description": "Easily add plugin support to your node.js application.", + "hashes": [ + { + "alg": "SHA-512", + "content": "46b8567c55a4342cf77637d215987bb92c2ee3dd50461c0d687c80801dac1a5e249a6ce76f9654bae1e98962d512c5ce7690da9182bfc79fbda38960838d5433" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/use@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/use" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/use/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/use.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/v8flags@2.1.1", + "author": "Tyler Kellen", + "name": "v8flags", + "version": "2.1.1", + "description": "Get available v8 flags.", + "hashes": [ + { + "alg": "SHA-512", + "content": "48a7e193f2e5697cefb68c0969b2d9c03e0ae9219161ea3103b2897884a550c001fcd4f80819198ccab759c797d82926e25970a98568f1320282c0d8081536b4" + } + ], + "purl": "pkg:npm/v8flags@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tkellen/node-v8flags" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tkellen/node-v8flags/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tkellen/node-v8flags.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/watchpack@1.7.5", + "author": "Tobias Koppers @sokra", + "name": "watchpack", + "version": "1.7.5", + "description": "Wrapper library for directory and file watching.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4fdcc5a4e92aca8c7b0690b4f62875dd43ff52364ca825b69bc6728ea097a9b2f263246f2e613477c933f13d0bcd0c8df0e0dcf5c671344cb1cae112157bf31" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/watchpack@1.7.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/watchpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/watchpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/watchpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chokidar@3.5.3", + "author": "Paul Miller", + "name": "chokidar", + "version": "3.5.3", + "description": "Minimal and efficient cross-platform file watching library", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a4f1f01671150ec58edbb652ed8ad8f7038e633b0480c47e2d3853a81066d5b25e9c2faa4f316532eddc19fdc6a77e3dd011d3fa1474a77ff97573afd693356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the “Software”), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chokidar@3.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/chokidar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/chokidar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/paulmillr/chokidar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/anymatch@3.1.2", + "author": "Elan Shanker", + "name": "anymatch", + "version": "3.1.2", + "description": "Matches strings against configurable strings, globs, regular expressions, and/or functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1735ac82f254c7436388f1a963342377b12c7a86caffd7eae5703028b57251ec2d686591c236c7e96cac0c8d103752a6f9b45d5169eda89684ebe31a6af968c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/anymatch@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/anymatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/anymatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/anymatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/picomatch@2.3.1", + "author": "Jon Schlinkert", + "name": "picomatch", + "version": "2.3.1", + "description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "254ded7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/picomatch@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/picomatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/picomatch/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/picomatch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/braces@3.0.2", + "author": "Jon Schlinkert", + "name": "braces", + "version": "3.0.2", + "description": "Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.", + "hashes": [ + { + "alg": "SHA-512", + "content": "10830722fd945c7585636c6e6d418acfe86af6136410d8f83e3bebee1e7c726260a642b6c8c94a03c238f387fb312b6d933540cbf94bed7f710da20b77a6afcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/braces@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/braces" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/braces/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/braces.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fill-range@7.0.1", + "author": "Jon Schlinkert", + "name": "fill-range", + "version": "7.0.1", + "description": "Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`", + "hashes": [ + { + "alg": "SHA-512", + "content": "55ca4b4d6a960e24deaee8238fc7b7f9eb1b83eb244b733d7b9e14b91de209e20331708b4ec007f214d2cc3414fd7ebfeaddde62438aa1949e7f63e553a5355d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fill-range@7.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/fill-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/fill-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/fill-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/to-regex-range@5.0.1", + "author": "Jon Schlinkert", + "name": "to-regex-range", + "version": "5.0.1", + "description": "Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65958d7c28d4a245d70c65c5a597a1248919aaaf7505c50b16afcf8bb3398b8267c5776130a00aebcdb3f1b096de8f078f5c2ebb3a0a716dc37d5cda3fa56e36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/to-regex-range@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/to-regex-range" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/to-regex-range/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/to-regex-range.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-number@7.0.0", + "author": "Jon Schlinkert", + "name": "is-number", + "version": "7.0.0", + "description": "Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.", + "hashes": [ + { + "alg": "SHA-512", + "content": "95ae643d42f022091249a663f70eff035b87a8e04080e84350a4390a47cbf0b6784a2eabe3ed83d2123a6f8a3ad0c5b8523db23490115886540cfc65bce61073" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-number@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-number" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-number/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/glob-parent@5.1.2", + "author": "Gulp Team", + "name": "glob-parent", + "version": "5.1.2", + "description": "Extract the non-magic parent path from a glob string.", + "hashes": [ + { + "alg": "SHA-512", + "content": "24360ebdfc62a3fb78d8729dc6401868288137ba188aec7290ec4ac5d6945b9427d33698377811416a25af07677f4b2133dfc43f479bbae4e6ca85cdaf5702e7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) 2015, 2019 Elan Shanker\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/glob-parent@5.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/glob-parent#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/glob-parent/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/glob-parent.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.3", + "author": "Jon Schlinkert", + "name": "is-glob", + "version": "4.0.3", + "description": "Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.", + "hashes": [ + { + "alg": "SHA-512", + "content": "505a430eb3e033aaa99c5348fab87fa776d46aaf6128b64df1b3145b3c667276554b7a267f820f2be06b7b09675a33b55a652c318b928ca878509b95e3e2ea9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-glob@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/micromatch/is-glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/micromatch/is-glob/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/micromatch/is-glob.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-binary-path@2.1.0", + "author": "Sindre Sorhus", + "name": "is-binary-path", + "version": "2.1.0", + "description": "Check if a file path is a binary file", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5f455957734b82c440e3d6743369638d4a96d37f1d059897f31c5ee9c2523c0e4586a0704179ae0f8392b2d288f0c314269d289f81b2a4234e90bf42e3823f9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-binary-path@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-binary-path#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-binary-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-binary-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/binary-extensions@2.2.0", + "author": "Sindre Sorhus", + "name": "binary-extensions", + "version": "2.2.0", + "description": "List of binary file extensions", + "hashes": [ + { + "alg": "SHA-512", + "content": "527ecc2040dd502e603697060d5f7ba29d58c24ef8f0ca477054c7a18b3aaa78f56778fb239dd51b79f06612b3a016666dd44d9dbe9645d165c25eed483b991b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Sindre Sorhus (https://sindresorhus.com), Paul Miller (https://paulmillr.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/binary-extensions@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/binary-extensions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/binary-extensions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/binary-extensions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readdirp@3.6.0", + "author": "Thorsten Lorenz", + "name": "readdirp", + "version": "3.6.0", + "description": "Recursive version of fs.readdir with streaming API.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4953ff2af95805672c70ac9f925483ac87e2b2c161a976cdcd4ea8a488aa43319592726018c8a220aa43be011bcd5897d7797475cf1cfb687178bb80b21fabd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/readdirp@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/readdirp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/readdirp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/paulmillr/readdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fsevents@2.3.2", + "name": "fsevents", + "version": "2.3.2", + "description": "Native Access to MacOS FSEvents", + "hashes": [ + { + "alg": "SHA-512", + "content": "a166f567a9a41c8b242f3109fd7597d2cae4a644d0eef6a8a4c424c9a108a2ad1f9ad155c4eb616fc702c5e4fea77ca74dd924fd16706e01b86eb47905e5840b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n-----------\n\nCopyright (C) 2010-2020 by Philipp Dunkel, Ben Noordhuis, Elan Shankar, Paul Miller\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fsevents@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fsevents/fsevents" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fsevents/fsevents/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fsevents/fsevents.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/weak-map@1.0.8", + "author": "Mark Miller", + "name": "weak-map", + "version": "1.0.8", + "description": "A WeakMap shim for Node.js and browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "94d47d68079f6c63e91ceec0127634842163cf579391609762f91346b4c7b3daaff33269f92915629cdf2c8157410886ded56f6cd1508158366d04bc606831cb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "purl": "pkg:npm/weak-map@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/drses/weak-map#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/drses/weak-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/drses/weak-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webdriver-js-extender@1.0.0", + "author": "Sammy Jelin", + "name": "webdriver-js-extender", + "version": "1.0.0", + "description": "A plugin which adds additional commands to selenium's javascript implementation of the webdriver client side API", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c6f06c4fb128fd2433c67073f40355d3ad44f5b9115b0fc53b5bda80d7af5f609d876a7be7fe7f30e10597bee9f570d53b759baf46370b6ee3e856a2d6b3297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2016 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/webdriver-js-extender@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/webdriver-js-entender#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/webdriver-js-entender/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/webdriver-js-entender.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/selenium-webdriver@2.53.47", + "group": "@types", + "name": "selenium-webdriver", + "version": "2.53.47", + "description": "TypeScript definitions for Selenium WebDriverJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9df10e5fa92f4358e5c484c0e217aff6163c877663ff8d24c053279047b430ac578d998cb39af1b10f968b2072f8e391e35a089bb347808a0f8a3e76da7ac5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/selenium-webdriver@2.53.47", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selenium-webdriver" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/selenium-webdriver@2.53.3", + "name": "selenium-webdriver", + "version": "2.53.3", + "description": "The official WebDriver JavaScript bindings from the Selenium project", + "hashes": [ + { + "alg": "SHA-512", + "content": "587ec095db1efb63f96db1413b81a57bf9ee40e755c291cc4cbeab68bdeeb818ffbcf1b4ee4eaeceddda89a86edf9d8e341af9c5787484394cdcb86d5cf382e1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright 2011-2016 Software Freedom Conservancy\nCopyright 2004-2011 Selenium committers\n" + } + } + } + ], + "purl": "pkg:npm/selenium-webdriver@2.53.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SeleniumHQ/selenium" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SeleniumHQ/selenium/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SeleniumHQ/selenium.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/adm-zip@0.4.4", + "author": "Nasca Iacob", + "name": "adm-zip", + "version": "0.4.4", + "description": "A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c58b81c129219f20ab0ae580a429a6851b69b83c40f2562666130a1fdcc4c88338a61cbb68ea6b9a1d5a5bae58dd22f22b159cc4abfa789da7ce78b7187a0ae" + } + ], + "purl": "pkg:npm/adm-zip@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/cthackers/adm-zip" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cthackers/adm-zip/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cthackers/adm-zip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tmp@0.0.24", + "author": "KARASZI István", + "name": "tmp", + "version": "0.0.24", + "description": "Temporary file and directory creator", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d10899688ca9d9dda75db533a3748aa846e3c4281bcd5dc198ab33bacd6657f0a7ca1299c66398df820250dc48cabaef03e1b251af4cbe7182459986c89971b" + } + ], + "purl": "pkg:npm/tmp@0.0.24", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/raszi/node-tmp" + }, + { + "type": "issue-tracker", + "url": "http://github.com/raszi/node-tmp/issues" + }, + { + "type": "vcs", + "url": "git://github.com/raszi/node-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xml2js@0.4.4", + "author": "Marek Kubica", + "name": "xml2js", + "version": "0.4.4", + "description": "Simple XML to JavaScript object converter.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c923e2323334fa92c37ed1e05d8e01cb4bacc08dd23ca2c3c3f8b75176e73bc33fa76f33a9ec425283e6405ad80feff5073846252b368b511158a240b622ebba" + } + ], + "purl": "pkg:npm/xml2js@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Leonidas-from-XIV/node-xml2js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Leonidas-from-XIV/node-xml2js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sax@0.6.1", + "author": "Isaac Z. Schlueter", + "name": "sax", + "version": "0.6.1", + "description": "An evented streaming XML parser in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a543bfd4e900d523166d0df2e3391b12f7e9480a8bdfdab59c3ec7b6059d0f1c9301462ab978c57e325adadecb75099b99cfd6451b9d880ba29a963524615b" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "content": "Copyright (c) Isaac Z. Schlueter (\"Author\")\nAll rights reserved.\n\nThe BSD License\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS\nBE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\nBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\nOR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\nIF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\nThe file \"examples/strict.dtd\" is licensed by the W3C and used according\nto the terms of the W3C SOFTWARE NOTICE AND LICENSE. See LICENSE-W3C.html\nfor details.\n\n\n\"String.fromCodePoint\" used under the terms of the MIT license. Its license\nfollows:\n\n Copyright Mathias Bynens \n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sax@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/sax-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/sax-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/sax-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xmlbuilder@4.2.1", + "author": "Ozgur Ozcitak", + "name": "xmlbuilder", + "version": "4.2.1", + "description": "An XML builder for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0478f88479f8508407949f04672012c15a693f7ec5966d0e771045ac46ecc409b4379b9a3f12c9aae87e3b09863048b5be627b74ad2f61774a5dda880c0168e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Ozgur Ozcitak\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xmlbuilder@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/oozcitak/xmlbuilder-js" + }, + { + "type": "issue-tracker", + "url": "http://github.com/oozcitak/xmlbuilder-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/oozcitak/xmlbuilder-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack@3.12.0", + "author": "Tobias Koppers @sokra", + "name": "webpack", + "version": "3.12.0", + "description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b0ecc74820ebff9e4ccfcde7b8a3411dbc2b8f9b14fdf3ebd5a48bf0b5cc1c17543848348da7ddafc1c29ce1111eecd22d1fd7f54b8adaf45b90ef2b9867c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/webpack@3.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supports-color@4.5.0", + "author": "Sindre Sorhus", + "name": "supports-color", + "version": "4.5.0", + "description": "Detect whether a terminal supports color", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supports-color@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/supports-color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/supports-color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/supports-color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@8.0.2", + "name": "yargs", + "version": "8.0.2", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@8.0.2", + "externalReferences": [ + { + "type": "website", + "url": "http://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@7.0.0", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "7.0.0", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-combine-loaders@2.0.4", + "name": "webpack-combine-loaders", + "version": "2.0.4", + "description": "Converts an array of loaders defined using the `{loader, query}` object syntax into a single loader string. Useful for dealing with plugins which only understand the loader string syntax.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4ee4f615139b59dc8dee526dd007b9e22c42732e47ad97c86f01c2706b8626c0d592fef8b17d5b2a86d51a05c88ff09e2efc6c081d5e7677b924819245bc39f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 James Friend\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-combine-loaders@2.0.4" + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-server@2.11.5", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-server", + "version": "2.11.5", + "description": "Serves a webpack app. Updates the browser on changes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed374e28ab7b1b7b161213ca574ccffa70f473857d60a509df00dd07042c64da39f28648468548bbaea983b3d89015bc03be26b0ff42da42f09b11879ddcffa7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-server@2.11.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-dev-server" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-server/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-server.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.5", + "author": "Jordan Harband", + "name": "array-includes", + "version": "3.1.5", + "description": "An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8920d864c3324cf92215ab15a9fb8042758061cbcefd278148218a78fa04b618e9e0b10c4dee2e2dcedbd36e68e23019a47862861f313e8f7d4cd5945969060d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (C) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/array-includes@3.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/array-includes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/array-includes/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/array-includes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chokidar@2.1.8", + "author": "Paul Miller", + "name": "chokidar", + "version": "2.1.8", + "description": "A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a4f1f01671150ec58edbb652ed8ad8f7038e633b0480c47e2d3853a81066d5b25e9c2faa4f316532eddc19fdc6a77e3dd011d3fa1474a77ff97573afd693356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chokidar@2.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/paulmillr/chokidar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/paulmillr/chokidar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/paulmillr/chokidar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/upath@1.2.0", + "author": "Angelos Pikoulas", + "name": "upath", + "version": "1.2.0", + "description": "A proxy to `path`, replacing `\\` with `/` for all results & new methods to normalize & join keeping leading `./` and add, change, default, trim file extensions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "699c06a5a9853bad60dce95f4fb390087aa11a75b8de2787f5665e3fb43137f1bf8d2e237ea524671a2bcaf26054f11cae5e4d2ff8201ec4a62cc1ee1fae0b86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright(c) 2014-2019 Angelos Pikoulas (agelos.pikoulas@gmail.com)\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/upath@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/anodynos/upath/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/anodynos/upath/issues" + }, + { + "type": "vcs", + "url": "git://github.com/anodynos/upath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/http-proxy-middleware@0.19.2", + "author": "Steven Chim", + "name": "http-proxy-middleware", + "version": "0.19.2", + "description": "The one-liner node.js proxy middleware for connect, express and browser-sync", + "hashes": [ + { + "alg": "SHA-512", + "content": "26d1f75198eee285c375c6b6f3f9249db9bf0859addf9bf2d185743cd38c5965a99f7ad3f5657de485cde39d71c011928f2f4bd026a1d4ef5308ccad6e82dd7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Steven Chim\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/http-proxy-middleware@0.19.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chimurai/http-proxy-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chimurai/http-proxy-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chimurai/http-proxy-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loglevel@1.8.0", + "author": "Tim Perry", + "name": "loglevel", + "version": "1.8.0", + "description": "Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ba03f9c92d18163aebb074db80ea4a28bdf115d58a6aa801b8a5152515acf78e3d90359f0ce2f06a9d503e1c14e653f00c354b653ac3264a917a3723a3ced6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/loglevel@1.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pimterry/loglevel" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pimterry/loglevel/issues" + }, + { + "type": "vcs", + "url": "git://github.com/pimterry/loglevel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sockjs-client@1.1.5", + "author": "Bryce Kahle", + "name": "sockjs-client", + "version": "1.1.5", + "description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "da0d2d8ce47e7d1b346a6c4434b8bfab94e2253a98f965c53b36f95305e77652ba4cedd4fe68ab6739e9c7ac37e0754ca1cde0edc636e320bf64c2189c395f93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2012 VMware, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sockjs-client@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "http://sockjs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sockjs/sockjs-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sockjs/sockjs-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/spdy@4.0.2", + "author": "Fedor Indutny", + "name": "spdy", + "version": "4.0.2", + "description": "Implementation of the SPDY protocol on node.js.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c4be090b4693336b918e374a03cef2d32cc0157c1e41c5e38f6ec5b28ac13213c21bc4be9c0a229bafcc6b25d49cb3a5e8394a7ba50cb83c8f8655ccc76cee3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/spdy@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/node-spdy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/node-spdy/issues" + }, + { + "type": "vcs", + "url": "git://github.com/indutny/node-spdy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/debug@4.3.4", + "author": "Josh Junon", + "name": "debug", + "version": "4.3.4", + "description": "Lightweight debugging utility for Node.js and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2014-2017 TJ Holowaychuk \nCopyright (c) 2018-2021 Josh Junon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software\nand associated documentation files (the 'Software'), to deal in the Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/debug@4.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/debug-js/debug#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/debug-js/debug/issues" + }, + { + "type": "vcs", + "url": "git://github.com/debug-js/debug.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.2", + "name": "ms", + "version": "2.1.2", + "description": "Tiny millisecond conversion utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Zeit, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ms@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zeit/ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zeit/ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zeit/ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/handle-thing@2.0.1", + "author": "Fedor Indutny", + "name": "handle-thing", + "version": "2.0.1", + "description": "Wrap Streams2 instance into a HandleWrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ddf4461c05f94c505e92b092c60c00d51f9d234b32cd21452b38594518aff3c2a8a601383dfb06388ec2d6091ec3652c6dd817cad3e9621d431da11d756e32e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/handle-thing@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/spdy-http2/handle-thing#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/spdy-http2/handle-thing/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/handle-thing.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs@6.6.0", + "name": "yargs", + "version": "6.6.0", + "description": "yargs the modern, pirate-themed, successor to optimist.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d153b809ac9697bf7ab7c9067ffbf5fa281b30662690fb33a6769ad9728b8f62d420bcd537e62fbaf0ce1bd591cb66d6054f940e6c52d5f9992625873029d8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010 James Halliday (mail@substack.net)\nModified work Copyright 2014 Contributors (ben@npmjs.com)\n\nThis project is free software released under the MIT/X11 license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs@6.6.0", + "externalReferences": [ + { + "type": "website", + "url": "http://yargs.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@4.2.1", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "4.2.1", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-merge@4.2.2", + "author": "Juho Vepsalainen", + "name": "webpack-merge", + "version": "4.2.2", + "description": "Variant of merge that's useful for webpack configuration", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d4135506a135f609de368f792b198a8e6d96ce0fec45eeedbc581eed7d4a2b772b528db5932232bff15d1a9a405f4d8378fe907f1880e525967ae7b0461b5f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Juho Vepsalainen\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-merge@4.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/survivejs/webpack-merge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/survivejs/webpack-merge/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/survivejs/webpack-merge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-notifier@1.15.0", + "author": "Tobias Bieniek", + "name": "webpack-notifier", + "version": "1.15.0", + "description": "webpack + node-notifier = build status system notifications", + "hashes": [ + { + "alg": "SHA-512", + "content": "37657c50c81107992899d5d045abc1b11a70d213e126adbf49634e1ae86b5e922046170c7b1ce4190cac532192b472d5e61914960a51885ec8517a01ab2326cd" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2014, Vsevolod Solovyov \nCopyright (c) 2015, Tobias Bieniek \n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-notifier@1.15.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Turbo87/webpack-notifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Turbo87/webpack-notifier/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Turbo87/webpack-notifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-notifier@9.0.1", + "author": "Mikael Brevik", + "name": "node-notifier", + "version": "9.0.1", + "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b556c7b3b0f24cbb733a237bf22ccb03ce7346a07d36f1179007f4d78571de3b52be7ff1065e9b47c65889f8fe745705aca236d61b92420259e99b4bdc1e077d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Mikael Brevik\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-notifier@9.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mikaelbr/node-notifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mikaelbr/node-notifier/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-wsl@2.2.0", + "author": "Sindre Sorhus", + "name": "is-wsl", + "version": "2.2.0", + "description": "Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)", + "hashes": [ + { + "alg": "SHA-512", + "content": "81fca025867680b4c39666d6308d021363309c5cd237fd9265f90c948b42e0afc9065b165430746cee9786a718d7761713b88c700267cd30898cf89378927433" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-wsl@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-wsl#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-wsl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-wsl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-docker@2.2.1", + "author": "Sindre Sorhus", + "name": "is-docker", + "version": "2.2.1", + "description": "Check if the process is running inside a Docker container", + "hashes": [ + { + "alg": "SHA-512", + "content": "17e8b604ab05ac7eba89a505734c280fcb0bcbc81eb64c13c2d3818efb39e82c780a024378a41ea9fcfcc0062249bf093a9ad68471f9a7becf6e6602bef52e5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (https://sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-docker@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-docker#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-docker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-docker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver@7.3.7", + "author": "GitHub Inc.", + "name": "semver", + "version": "7.3.7", + "description": "The semantic version parser used by npm.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ab9a0dffcf65d560acb4cd60746da576b589188a71a79b88a435049769425587da50af7b141d5f9e6c9cf1722bb433a6e76a6c2234a9715f39ab0777234319" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver@7.3.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/node-semver#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/node-semver/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/node-semver.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lru-cache@6.0.0", + "author": "Isaac Z. Schlueter", + "name": "lru-cache", + "version": "6.0.0", + "description": "A cache object that deletes the least-recently-used items.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b166656c43f63ac1cd917acc97919893f8ca93bd0c06783a514e1823fa860d86e07fa61b3f812f9aa2126d70a826244ab3ed5b4a9147560431bc9d7b176962e6" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lru-cache@6.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-lru-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-lru-cache/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-lru-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yallist@4.0.0", + "author": "Isaac Z. Schlueter", + "name": "yallist", + "version": "4.0.0", + "description": "Yet Another Linked List", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dc4f31d5ecdbec4199187b50d6edc6c32e6d18a731e6645e6bfe2c8fdd99d0b4c889fa98f38ac0a230d23e4a3fb1405e695e1487c52077b836ec053cd8fdcd8" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yallist@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/yallist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/yallist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/yallist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/which@2.0.2", + "author": "Isaac Z. Schlueter", + "name": "which", + "version": "2.0.2", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f125d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/which@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-which#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-which/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/node-which.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@6.0.1", + "author": "Sindre Sorhus", + "name": "strip-ansi", + "version": "6.0.1", + "description": "Strip ANSI escape codes from a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "e17689db341d0b344e6438af1152033e47109fc2cc1526bc923f06c5bfcb9f0ceff40f1572d359fa57e2bc2fec5778af5bc1252531115d9a0f051ad92a434aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-ansi@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/strip-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/strip-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/strip-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@5.0.1", + "author": "Sindre Sorhus", + "name": "ansi-regex", + "version": "5.0.1", + "description": "Regular expression for matching ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c81a74e9768f84dfea42c8096e66fb440f9a79c02a8b75ecc2ca13d9cca3dcc6f169944b788be5bb38e3422a0799153dfecb935965f38e4bf05d71a9e6d4c60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-regex@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/ansi-regex#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/ansi-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/ansi-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/websocket-driver@0.6.5", + "author": "James Coglan", + "name": "websocket-driver", + "version": "0.6.5", + "description": "WebSocket protocol handler with pluggable I/O", + "hashes": [ + { + "alg": "SHA-512", + "content": "a01c7a64cd46b39ab68f066e48dfd0c72cbf7db828995f3ebeab268a968f281ffbe218c794ab8cd3b8cd991867e2a6b601d530b20c6b96dabe81a3ec1e0725d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/websocket-driver@0.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faye/websocket-driver-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faye/websocket-driver-node/issues" + }, + { + "type": "vcs", + "url": "git://github.com/faye/websocket-driver-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xhr2@0.1.4", + "author": "Victor Costan", + "name": "xhr2", + "version": "0.1.4", + "description": "XMLHttpRequest emulation for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd01a10ebc91cd36c80e3fb069346f3017bc4b23e15bbf64cf762735bf8742dffa2cf6104f7cd3dc9b7463ca41a1f66a417dbac7c11c7efd055d1ef6b87e55a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2013 Victor Costan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xhr2@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pwnall/node-xhr2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pwnall/node-xhr2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pwnall/node-xhr2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/zone.js@0.8.29", + "author": "Brian Ford", + "name": "zone.js", + "version": "0.8.29", + "description": "Zones for JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a56b669c342324597043f9cfb2794ac152bccec5830d15d43a1467e28061ad11504f271d3b0507897a48edf43987d45b597a4e04f6b13579147da90a7100239" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2016-2018 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/zone.js@0.8.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/zone.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/zone.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/angular/zone.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/apc-youtube@1.0.0", + "author": "mike Hingley", + "name": "apc-youtube", + "version": "1.0.0", + "description": "Library for converting different forms of Youtube URL for embedding into an Iframe.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffc100be12753989ee0145a63877c1b86824deb7283f772ee81c51e0668d8c26d75e5f062b13d333575eaefd24a9f57813652258d4275f261bcc16269b36e363" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/apc-youtube@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/APCOvernight/apc-youtube#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/APCOvernight/apc-youtube/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/APCOvernight/apc-youtube.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@1.5.1", + "author": "Evgeny Poberezkin", + "name": "ajv-keywords", + "version": "1.5.1", + "description": "Custom JSON-Schema keywords for ajv validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "645ced1f35517462c0cc99a9513f4b3452ded58895384ca571a36912eb4cdba3d54c2b4e0fdd7d20c7c3d350a06d1a2e078d8377d6ad8f1d47b1e0b5e4380e64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ajv-keywords@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv-keywords#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv-keywords/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv-keywords.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/character-parser@2.2.0", + "author": "ForbesLindesay", + "name": "character-parser", + "version": "2.2.0", + "description": "Parse JavaScript one character at a time to look for snippets in Templates. This is not a validator, it's just designed to allow you to have sections of JavaScript delimited by brackets robustly.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f94a8942314415a4c0b376cdb05da3da410dd5b686ff382165b76aa18103c4666d268f4b07397503e9b40f89f7a8ac7c37614dbfcfd7a7ac95f6642606ea6d6b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/character-parser@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/character-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/character-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/character-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/constantinople@3.1.2", + "author": "ForbesLindesay", + "name": "constantinople", + "version": "3.1.2", + "description": "Determine whether a JavaScript expression evaluates to a constant (using acorn)", + "hashes": [ + { + "alg": "SHA-512", + "content": "c9e3dc06a10584b3aa481b7060e1864b57b11e8fecd718de9178a29e1e22b69350182bb8280d5eb8f8757e0d3b376c0c213657424073ef936d76dd5cb46668bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/constantinople@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/constantinople#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/constantinople/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/constantinople.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/babel-types@7.0.11", + "group": "@types", + "name": "babel-types", + "version": "7.0.11", + "description": "TypeScript definitions for babel-types", + "hashes": [ + { + "alg": "SHA-512", + "content": "a643ed254518f95c2fe81d629c0cf9e6b42f8af0a51c9c5cf5a5443cf99aab671bc9e30b0a20e96caa5c2b25f82c0c293468be48706fd2d1efebed205efd0fd8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/babel-types@7.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/babylon@6.16.6", + "group": "@types", + "name": "babylon", + "version": "6.16.6", + "description": "TypeScript definitions for babylon", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b8caa755961afa621ccb5c52b2e45ec7b51054f18db7fa25b2ed42ad84cabf3924272f585bb287971124362d8f331039649e2a431b79d11a1502f6d930bf2ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/babylon@6.16.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babylon" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-selector-parser@1.4.1", + "author": "Marat Dulin", + "name": "css-selector-parser", + "version": "1.4.1", + "description": "Just a CSS selector parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d83d26fbcbf67b04d0c23ab6a42f8ada18edb396d6646de5f201de9383da1bce2c7a421cf10a8b5d065e954f40efe2f65f246573dd62ffc5a108f4bcb7ba5d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Dulin Marat\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/css-selector-parser@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mdevils/css-selector-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mdevils/css-selector-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mdevils/css-selector-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint@4.19.1", + "author": "Nicholas C. Zakas", + "name": "eslint", + "version": "4.19.1", + "description": "An AST-based pattern checker for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d3dffd71d446d907ba61cd8bbbbc2af5bf738dbb30ed5fc5a3b8cf5cd226317be72afa9c1c284a108e5ef37774690ba60e2e09d2cb7713379f0cda37283c321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors, https://js.foundation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint@4.19.1", + "externalReferences": [ + { + "type": "website", + "url": "https://eslint.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint/issues/" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/doctrine@2.1.0", + "name": "doctrine", + "version": "2.1.0", + "description": "JSDoc parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "96c1b246e62be3f3c8074b718be172db138c23674669382e09aa2dcc51a4559b8a479bac29f71158814a34cdd036b53b861ffec366f04d6f997973cae65f2e56" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n" + } + } + } + ], + "purl": "pkg:npm/doctrine@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/doctrine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/doctrine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/doctrine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/table@4.0.2", + "author": "Gajus Kuizinas", + "name": "table", + "version": "4.0.2", + "description": "Formats data into a string table.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bbae71484e6047d449f229cbf1061d4b8d87903269d9b425d211b1dc1fa4b43682a2b76e19b853bf4f5bc370b758b0b424335f3c3d5561426cca22e4e13642a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2016, Gajus Kuizinas (http://gajus.com/)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/table@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/table#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/table/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-config-apc@1.3.0", + "author": "Ian Egner", + "name": "eslint-config-apc", + "version": "1.3.0", + "description": "ES lint rules for APC projects", + "hashes": [ + { + "alg": "SHA-512", + "content": "dce1f295339b52b2ed167241f2ce8833887a3cfb6be014e6a4b614e2e92775b1cdb5b767c37c05786190fcf8173de6664f6238232727d77a024643024c8f3e06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/eslint-config-apc@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/APCOvernight/eslint-config-apc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/APCOvernight/eslint-config-apc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/APCOvernight/eslint-config-apc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint@5.0.1", + "author": "Nicholas C. Zakas", + "name": "eslint", + "version": "5.0.1", + "description": "An AST-based pattern checker for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d3dffd71d446d907ba61cd8bbbbc2af5bf738dbb30ed5fc5a3b8cf5cd226317be72afa9c1c284a108e5ef37774690ba60e2e09d2cb7713379f0cda37283c321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors, https://js.foundation\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://eslint.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint/issues/" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/espree@4.1.0", + "author": "Nicholas C. Zakas", + "name": "espree", + "version": "4.1.0", + "description": "An Esprima-compatible JavaScript parser built on Acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "c80708431b6632207f8cbdf6773129d9e9c17a276c07bc563cb362c3720892955db353fe87ba85f58c09ab5c94373a7638a5e0029aece05eb58a1eba52ca03d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Espree\nCopyright JS Foundation and other contributors, https://js.foundation\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/espree@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/espree" + }, + { + "type": "issue-tracker", + "url": "http://github.com/eslint/espree.git" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/espree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn@6.4.2", + "name": "acorn", + "version": "6.4.2", + "description": "ECMAScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43fbe546ec186bb6f42935b073a2f28d73514b186104fe819eedbf71266fd11473017946941a996e57d44b8d96b8ed815d3dc0c07a7118baaf6940f70c74b26" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2018 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn@6.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acornjs/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acornjs/acorn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acornjs/acorn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/acorn-jsx@5.3.2", + "name": "acorn-jsx", + "version": "5.3.2", + "description": "Modern, fast React.js JSX parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "014ee99d9920bad8700632a00a0ebdf7c07240d20c8dbb83419f1b6fbf100056703df98a89af00233818fe05a0a828e786df092dd5e607863103429a57ad2771" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2017 by Ingvar Stepanyan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/acorn-jsx@5.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acornjs/acorn-jsx" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acornjs/acorn-jsx/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acornjs/acorn-jsx.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inquirer@5.2.0", + "author": "Simon Boudrias", + "name": "inquirer", + "version": "5.2.0", + "description": "A collection of common interactive command line user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ec6d9f29381302af1561eb518b1612b11547e8a02ad2dd721bbea3467544bed553f8d53056d88abd9ba7a6c08fc79f14dc56a875f4748b2ce9f250fbffaa79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/inquirer@5.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/Inquirer.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/Inquirer.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/Inquirer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string.prototype.matchall@2.0.0", + "author": "Jordan Harband", + "name": "string.prototype.matchall", + "version": "2.0.0", + "description": "Spec-compliant polyfill for String.prototype.matchAll ESnext proposal.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a867e076ca99e0d5da788852c5da4999970c25135f609a380aba12f51497c380244459bdf27b74835474b32c7e9bc5f9ef626902c5bce49967106470383fffd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/string.prototype.matchall@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/String.prototype.matchAll#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/String.prototype.matchAll/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/String.prototype.matchAll.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-config-standard@11.0.0", + "author": "Feross Aboukhadijeh", + "name": "eslint-config-standard", + "version": "11.0.0", + "description": "JavaScript Standard Style - ESLint Shareable Config", + "hashes": [ + { + "alg": "SHA-512", + "content": "a03744373a558847b97f0b9109695aec05d077efbfa32229f333fe88ff638943c6e8d063dd21e0760b65fe44e7d3402378dfb51cdbdabd32a661b328fb130e97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-config-standard@11.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/standard/eslint-config-standard" + }, + { + "type": "issue-tracker", + "url": "https://github.com/standard/eslint-config-standard/issues" + }, + { + "type": "vcs", + "url": "git://github.com/standard/eslint-config-standard.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-import@2.14.0", + "author": "Ben Mosher", + "name": "eslint-plugin-import", + "version": "2.14.0", + "description": "Import with sanity.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8587e2dc55da33c58f2dfe12d5c8a487faf82319ceeb3ae165b106cf66faeb410945bbb18290d2e60902b988065a0db1c61dab06e22be0fbe1bdeffb737d64a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Mosher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-import@2.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/benmosher/eslint-plugin-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benmosher/eslint-plugin-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/benmosher/eslint-plugin-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-mocha@5.0.0", + "author": "Mathias Schreck", + "name": "eslint-plugin-mocha", + "version": "5.0.0", + "description": "Eslint rules for mocha.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8715ad607bcb034a7f3caca645f0d887d331b79758920d86a32d6f6436ab4c41187c42cff64b206bb90a1b5354292432dbb0bc42373b62b4964cb5213843a4b0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Schreck \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-mocha@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lo1tuma/eslint-plugin-mocha" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lo1tuma/eslint-plugin-mocha/issues" + }, + { + "type": "vcs", + "url": "git://github.com/lo1tuma/eslint-plugin-mocha.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ramda@0.25.0", + "author": "Scott Sauyet", + "name": "ramda", + "version": "0.25.0", + "description": "A practical functional library for JavaScript programmers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c49bad7d1bc3da64c7e4a826b6dea88e7bbaf74746eb3eeed980eb20294b27bcb85dd2a85cfef4e3914a2fa2680f59ae440816b4f1f2598b1b61f4b6a8068e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2016 Scott Sauyet and Michael Hurley\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ramda@0.25.0", + "externalReferences": [ + { + "type": "website", + "url": "http://ramdajs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ramda/ramda/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ramda/ramda.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-node@6.0.1", + "author": "Toru Nagashima", + "name": "eslint-plugin-node", + "version": "6.0.1", + "description": "Additional ESLint's rules for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "43f09cdac5b53802120d2f898ba9594b6295e1beee780fd6c9d55677504409343056f7d0cb92408b78258483682b3a0c9df9ee46034ff9958aac601ba77403c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Toru Nagashima\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-node@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mysticatea/eslint-plugin-node#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mysticatea/eslint-plugin-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mysticatea/eslint-plugin-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-promise@3.7.0", + "author": "jden", + "name": "eslint-plugin-promise", + "version": "3.7.0", + "description": "Enforce best practices for JavaScript promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "26214bf54151d7934aa47c868a2d5972f9ad22a6b7513c220c019bf1ab527df7b8dea277fb573354637a52d924969709d83567aaf4cccc42916897419002f669" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/eslint-plugin-promise@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xjamundx/eslint-plugin-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xjamundx/eslint-plugin-promise/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/xjamundx/eslint-plugin-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-standard@3.1.0", + "author": "Jamund Ferguson", + "name": "eslint-plugin-standard", + "version": "3.1.0", + "description": "ESlint Plugin for the Standard Linter", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d571dcae291af4119e1f8d697773e829d4100d1490f5f916966b650f61f319ea30ada79446d349126979cafdd139b18cede2469627da9dc6a51f73477d917d3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jamund Ferguson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-standard@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xjamundx/eslint-plugin-standard#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xjamundx/eslint-plugin-standard/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xjamundx/eslint-plugin-standard.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-import@2.26.0", + "author": "Ben Mosher", + "name": "eslint-plugin-import", + "version": "2.26.0", + "description": "Import with sanity.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8587e2dc55da33c58f2dfe12d5c8a487faf82319ceeb3ae165b106cf66faeb410945bbb18290d2e60902b988065a0db1c61dab06e22be0fbe1bdeffb737d64a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Mosher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-import@2.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/import-js/eslint-plugin-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/import-js/eslint-plugin-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/import-js/eslint-plugin-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flat@1.3.0", + "author": "Jordan Harband", + "name": "array.prototype.flat", + "version": "1.3.0", + "description": "An ES2019 spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d762141241ec0210380d8e6cd053e035721d73c5514aa0fd669efc6b96aef5a6c7fd2381aeca74f3624e5853538e4328ce1f26a9c7622ae68b1a13de633b714b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 ECMAScript Shims\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array.prototype.flat@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Array.prototype.flat#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Array.prototype.flat/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Array.prototype.flat.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/es-shim-unscopables@1.0.0", + "author": "Jordan Harband", + "name": "es-shim-unscopables", + "version": "1.0.0", + "description": "Helper package to shim a method into `Array.prototype[Symbol.unscopables]`", + "hashes": [ + { + "alg": "SHA-512", + "content": "266e863dc09d0b7d1e30b6d9db1f33d96b91c00c2cdf34c104abaeb1f7d8554acd8ff195494019fb128c694a5f34347921bc8d0392c96da79ca1455b994701d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2022 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/es-shim-unscopables@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ljharb/es-shim-unscopables#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ljharb/es-shim-unscopables/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ljharb/es-shim-unscopables.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.values@1.1.5", + "author": "Jordan Harband", + "name": "object.values", + "version": "1.1.5", + "description": "ES2017 spec-compliant Object.values shim.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4146515b48a54373e73e96cdb6074d5753c36c4a8b22248507797e1271ad050ffc4944cb8f53d9c2d40700166d2e0c292594d2661b862ce1a4e7b0ebc7622f62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/object.values@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/es-shims/Object.values#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/es-shims/Object.values/issues" + }, + { + "type": "vcs", + "url": "git://github.com/es-shims/Object.values.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tsconfig-paths@3.14.1", + "author": "Jonas Kello", + "name": "tsconfig-paths", + "version": "3.14.1", + "description": "Load node modules according to tsconfig paths, in run-time or via API.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f10e15a71522eddd5b93c2dbc9b797e9c3104783901d29632c81c3ce3888a5ca3ca6718559a02405f1fbc545ecc235f6e51179a2f8f70cd5e60778e0205c239" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Jonas Kello\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tsconfig-paths@3.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dividab/tsconfig-paths#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dividab/tsconfig-paths/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dividab/tsconfig-paths.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/json5@0.0.29", + "author": "Jason Swearingen", + "group": "@types", + "name": "json5", + "version": "0.0.29", + "description": "TypeScript definitions for JSON5", + "hashes": [ + { + "alg": "SHA-512", + "content": "7512e30961d8838a1a03bedcc4eeb8a0efbb2700b09c8ce464f76bac2ef58d0990b6584ce79ea9c0aa396d4ceabd99dd9156de14b2088bef530b8d09345e6135" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/json5@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-mocha@4.12.1", + "author": "Mathias Schreck", + "name": "eslint-plugin-mocha", + "version": "4.12.1", + "description": "Eslint rules for mocha.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8715ad607bcb034a7f3caca645f0d887d331b79758920d86a32d6f6436ab4c41187c42cff64b206bb90a1b5354292432dbb0bc42373b62b4964cb5213843a4b0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Schreck \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-mocha@4.12.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lo1tuma/eslint-plugin-mocha" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lo1tuma/eslint-plugin-mocha/issues" + }, + { + "type": "vcs", + "url": "git://github.com/lo1tuma/eslint-plugin-mocha.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-promise@3.8.0", + "author": "jden", + "name": "eslint-plugin-promise", + "version": "3.8.0", + "description": "Enforce best practices for JavaScript promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "26214bf54151d7934aa47c868a2d5972f9ad22a6b7513c220c019bf1ab527df7b8dea277fb573354637a52d924969709d83567aaf4cccc42916897419002f669" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/eslint-plugin-promise@3.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xjamundx/eslint-plugin-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xjamundx/eslint-plugin-promise/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/xjamundx/eslint-plugin-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/exit-hook@1.1.1", + "author": "Sindre Sorhus", + "name": "exit-hook", + "version": "1.1.1", + "description": "Run some code when the process exits", + "hashes": [ + { + "alg": "SHA-512", + "content": "32c1b7a6b395c355ad2d70196ccdca898b68a0a4752efc47877547b15b48cb4ba252ef2eb31801ffde033f61f1b43ffaeb594b741eb2cd0d3d94625242bea792" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/exit-hook@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/exit-hook#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/exit-hook/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/exit-hook.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/find-line-column@0.5.2", + "author": "Matt Blair", + "name": "find-line-column", + "version": "0.5.2", + "description": "Given string and position, return line and column of position", + "hashes": [ + { + "alg": "SHA-512", + "content": "78d84d903b7945bc58e17fbe270c835113fad856215756e1f4b17875f3a2c295424e4e6fbdf1003619ee8b9ca950410b191d364194ab585b5a4e0778ba55b9b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/find-line-column@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/duereg/find-line-column#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/duereg/find-line-column/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/duereg/find-line-column.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/front-matter@2.3.0", + "author": "Jason Campbell", + "name": "front-matter", + "version": "2.3.0", + "description": "Extract YAML front matter from a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa03880ec1961d50225920df837be9887c243abc0ee17352dd8407e433269de2c43d6cdd0809db4900adc51785e323cad67b332ef0262de4764a9ae70d00e7c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "# The MIT License (MIT)\n\nCopyright (c) Jason Campbell (\"Author\")\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/front-matter@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jxson/front-matter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jxson/front-matter/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jxson/front-matter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fs-extra@3.0.1", + "author": "JP Richardson", + "name": "fs-extra", + "version": "3.0.1", + "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", + "hashes": [ + { + "alg": "SHA-512", + "content": "26210f033cb4859d04376e699179209b3c67fd386a4db0eb4ea1a710ef5e14c477de67c6ef60366058d0db7fb34ec9c3b5c39eb01294b515d64e1e95e1b41456" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011-2017 JP Richardson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fs-extra@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-fs-extra" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-fs-extra/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jprichardson/node-fs-extra.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonfile@3.0.1", + "author": "JP Richardson", + "name": "jsonfile", + "version": "3.0.1", + "description": "Easily read/write JSON files.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ca96502a6e02e0c476a3f1312563298a08082b01279b26b5a94e712439a4e8c2ddb754a5d7374b147ab889f9e87bcbab9f6ff082e5aa75d69cfbd7f70cd2153" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012-2015, JP Richardson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files\n(the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,\n merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS\nOR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonfile@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jprichardson/node-jsonfile#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jprichardson/node-jsonfile/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jprichardson/node-jsonfile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gonzales-pe-sl@4.2.3", + "author": "Dan Purdy", + "name": "gonzales-pe-sl", + "version": "4.2.3", + "description": "Temporary gonzales-pe fork for sass-lint", + "hashes": [ + { + "alg": "SHA-512", + "content": "11d3939d1d755b479d900d718acc78518b686cc493623f943727df5b7fdbf4bce223b46998788122a32cf952f8dcbac26e23dc2d09650b1cb3a8e07e97945375" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/gonzales-pe-sl@4.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DanPurdy/gonzales-pe" + }, + { + "type": "issue-tracker", + "url": "http://github.com/tonyganch/gonzales-pe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DanPurdy/gonzales-pe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/minimist@1.1.3", + "author": "James Halliday", + "name": "minimist", + "version": "1.1.3", + "description": "parse argument options", + "hashes": [ + { + "alg": "SHA-512", + "content": "26c8e79386f0dd826a6336ddc8188db0f5873df3bef94186ef8f42c6cea9782bb95e0e27ade9dae8e571398c6b413ab0c34266c2df9179ff2b820ba69132f3f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/minimist@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/minimist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/minimist/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/minimist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-expression@3.0.0", + "author": "Timothy Gu", + "name": "is-expression", + "version": "3.0.0", + "description": "Check if a string is a valid JavaScript expression", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf231e40cabe0221f9b949e805f313c1fd7cb4eddb33a935417044f43eae78002ab847c265edc024fb6e77d83aa92d3ee17f3103b9dda59883c9e6f6976a8e07" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2015 Tiancheng “Timothy” Gu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-expression@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pugjs/is-expression#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pugjs/is-expression/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pugjs/is-expression.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-my-ip-valid@1.0.1", + "name": "is-my-ip-valid", + "version": "1.0.1", + "description": "A small lib to validate IP addresses.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f173c70170e59b34ada2d9a4e40993fa8bbc241c5d5ba8a16bc041ee37926d8390526991d4650fc94ce270a15e3562f1e739a47259687bd93fcabdf373f4326" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 Linus Unnebäck\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-my-ip-valid@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/LinusU/is-my-ip-valid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/LinusU/is-my-ip-valid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/LinusU/is-my-ip-valid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-my-json-valid@2.20.6", + "name": "is-my-json-valid", + "version": "2.20.6", + "description": "A [JSONSchema](https://json-schema.org/) validator that uses code generation to be extremely fast.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d49430ba554d8f1f14aa43c4fdba836b1b47e0f5c27bfd95461ff2de9f7d85e395f3b1c6e08779fd57c3b3077e62201f1dc4537c39568084b27271ee859ab56b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Mathias Buus\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-my-json-valid@2.20.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mafintosh/is-my-json-valid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mafintosh/is-my-json-valid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mafintosh/is-my-json-valid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonpointer@5.0.1", + "author": "Jan Lehnardt", + "name": "jsonpointer", + "version": "5.0.1", + "description": "Simple JSON Addressing.", + "hashes": [ + { + "alg": "SHA-512", + "content": "097711bccc93967479df131c2a7b8ccdf080e62fe77db9539e7afbe0265be82e2f1b7f5ebbac39d6dee72a653931f2df6d380622d9623728cefdc88d3c3a8296" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2015 Jan Lehnardt & Marc Bachmann \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonpointer@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/janl/node-jsonpointer#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/janl/node-jsonpointer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/janl/node-jsonpointer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/js-stringify@1.0.2", + "author": "ForbesLindesay", + "name": "js-stringify", + "version": "1.0.2", + "description": "Stringify an object so it can be safely inlined in JavaScript code", + "hashes": [ + { + "alg": "SHA-512", + "content": "aed4b90133a8d90e64d46f830032128a50c0ea5bfbf73222c0577a09c8ee23118a2c59b90be44b22646c7156a9f64e798be30e6708258b0f8d7a3be42ee183e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/js-stringify@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jadejs/js-stringify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jadejs/js-stringify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jadejs/js-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jsonpointer@4.1.0", + "author": "Jan Lehnardt", + "name": "jsonpointer", + "version": "4.1.0", + "description": "Simple JSON Addressing.", + "hashes": [ + { + "alg": "SHA-512", + "content": "097711bccc93967479df131c2a7b8ccdf080e62fe77db9539e7afbe0265be82e2f1b7f5ebbac39d6dee72a653931f2df6d380622d9623728cefdc88d3c3a8296" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2015 Jan Lehnardt & Marc Bachmann \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jsonpointer@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/janl/node-jsonpointer#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/janl/node-jsonpointer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/janl/node-jsonpointer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/known-css-properties@0.3.0", + "author": "Viorel Cojocaru", + "name": "known-css-properties", + "version": "0.3.0", + "description": "List of known CSS properties", + "hashes": [ + { + "alg": "SHA-512", + "content": "40c41c9ca02241c71f413aad061feac2ab866765cafc35cd0f58eb70df4cf2030ccbdf46c256bb1908e775552c12a21a4723fa6ec151ba1c118f9a6869f04625" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/known-css-properties@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/betit/known-css-properties#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/betit/known-css-properties/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/betit/known-css-properties.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.capitalize@4.2.1", + "author": "John-David Dalton", + "name": "lodash.capitalize", + "version": "4.2.1", + "description": "The lodash method `_.capitalize` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "919cd838ab297fc5d55f902f99017de20416d257a315581bf341bce5b538656ce827a0b4dcf420ddca18014a524e94167a5ad910b7775d6807cf0e0293991a23" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.capitalize@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.kebabcase@4.1.1", + "author": "John-David Dalton", + "name": "lodash.kebabcase", + "version": "4.1.1", + "description": "The lodash method `_.kebabCase` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "37c5d14c830caaa0e04b2e152ca3e727ffa1a4664df8f1d08899d27a762a3da555fcd0aa1288139c07592d08862a1c57f890acf30696ab6b755c758a3a6958f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.kebabcase@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/merge@1.2.1", + "author": "yeikos", + "name": "merge", + "version": "1.2.1", + "description": "Merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "563168e0fe5686d8f8bec2f3b1806ee5ac878681c9d14a8d9bb89bbd28666e6a33eed1a2d2f5daa096c6741f8698330b51d83c0e94171087950c07bc31a001bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2014 yeikos\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/merge@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yeikos/js.merge" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yeikos/js.merge/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yeikos/js.merge.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pug-attrs@2.0.4", + "author": "Forbes Lindesay", + "name": "pug-attrs", + "version": "2.0.4", + "description": "Generate code for Pug attributes", + "hashes": [ + { + "alg": "SHA-512", + "content": "4da6786764d650f0c9715df08d4dd1b545ccaddde43385b38db7b71169d2b193ec2772c3234177c829dfdbf5bb3cf145f9e754150d078032f5228c52cf92bc11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pug-attrs@2.0.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pugjs/pug/tree/master/packages/pug-attrs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pug-runtime@2.0.5", + "author": "ForbesLindesay", + "name": "pug-runtime", + "version": "2.0.5", + "description": "The runtime components for the pug templating language", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fead72a7f6e9f87d063bef0b6972e172bc5681c30efff757f78c76b5e78a94dbaa8502739ee925b509b203731886e652caf476b362b3020ae0ef3600d0369b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pug-runtime@2.0.5", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pugjs/pug/tree/master/packages/pug-runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pug-error@1.3.3", + "author": "Forbes Lindesay", + "name": "pug-error", + "version": "1.3.3", + "description": "Standard error objects for pug", + "hashes": [ + { + "alg": "SHA-512", + "content": "a84dd884448fda644058c14980a76d4f90fb7244e145271747091fa3e12baa06bb77225d63766abaca69acc0a3ffdb09da28e6e615c559013f037978a6831689" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pug-error@1.3.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pugjs/pug/tree/master/packages/pug-error" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pug-lexer@2.3.2", + "author": "ForbesLindesay", + "name": "pug-lexer", + "version": "2.3.2", + "description": "The pug lexer (takes a string and converts it to an array of tokens)", + "hashes": [ + { + "alg": "SHA-512", + "content": "f15abe5811801971f381b92fea99a209dec1504334796800107f9e7cc04f360d25de2b82f99f8d7b5eaad557741e1195cab04ac348509686e0662aa1056be436" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pug-lexer@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pugjs/pug-lexer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pugjs/pug-lexer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pugjs/pug-lexer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pug-lint@2.6.0", + "author": "Ben Edwards", + "name": "pug-lint", + "version": "2.6.0", + "description": "An unopinionated and configurable linter and style checker for Pug (formerly Jade)", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c210d0144f482b0929540487d7d544a3a593d05ace5071cc556680884f84be21ebd39fd36a272ce1adccaafc21554823a9f59fa97703d0224cdd0af675a4695" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Ben Edwards \n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pug-lint@2.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pugjs/pug-lint" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pugjs/pug-lint/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/pugjs/pug-lint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pug-lexer@4.1.0", + "author": "ForbesLindesay", + "name": "pug-lexer", + "version": "4.1.0", + "description": "The pug lexer (takes a string and converts it to an array of tokens)", + "hashes": [ + { + "alg": "SHA-512", + "content": "f15abe5811801971f381b92fea99a209dec1504334796800107f9e7cc04f360d25de2b82f99f8d7b5eaad557741e1195cab04ac348509686e0662aa1056be436" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Forbes Lindesay\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pug-lexer@4.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pugjs/pug/tree/master/packages/pug-lexer" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ramda@0.24.1", + "author": "Scott Sauyet", + "name": "ramda", + "version": "0.24.1", + "description": "A practical functional library for JavaScript programmers.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c49bad7d1bc3da64c7e4a826b6dea88e7bbaf74746eb3eeed980eb20294b27bcb85dd2a85cfef4e3914a2fa2680f59ae440816b4f1f2598b1b61f4b6a8068e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2016 Scott Sauyet and Michael Hurley\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ramda@0.24.1", + "externalReferences": [ + { + "type": "website", + "url": "http://ramdajs.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ramda/ramda/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ramda/ramda.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/readline2@1.0.1", + "author": "Simon Boudrias", + "name": "readline2", + "version": "1.0.1", + "description": "Readline Façade fixing bugs and issues found in releases 0.8 and 0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3fb5de0c9b0501e8f91951b576e6e2b3edd7eb9a3616c6c5bc0d57e26d67651d193f97f0df1ca9f8a54f9d7dca062c581639dc860b320d4500fb8e7f81bfefe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/readline2@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/readline2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/readline2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/readline2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mute-stream@0.0.5", + "author": "Isaac Z. Schlueter", + "name": "mute-stream", + "version": "0.0.5", + "description": "Bytes go in, but they don't come out (when muted).", + "hashes": [ + { + "alg": "SHA-512", + "content": "afae6709986b6d75dbe9d5ce0028a1600a47c3643aa55d0cdd5d0f4b177be0dd3e0fc9f301d100213ab6a008c0d63567288fad1af101529aa2321d3ead6eb30d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mute-stream@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/mute-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/mute-stream/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/mute-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-lint@1.13.1", + "author": "Sam Richard", + "name": "sass-lint", + "version": "1.13.1", + "description": "All Node Sass linter!", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d2c9a87cfccca3cd6d8159899059e91810a8abe380692eaac216c82cf626968954dcc197f05c7179f3a861dc3d67fbff6285434c7ddf221c0c9bf4a90682ced" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Sam Richard\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/sass-lint@1.13.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sasstools/sass-lint" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sasstools/sass-lint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sasstools/sass-lint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint@2.13.1", + "author": "Nicholas C. Zakas", + "name": "eslint", + "version": "2.13.1", + "description": "An AST-based pattern checker for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d3dffd71d446d907ba61cd8bbbbc2af5bf738dbb30ed5fc5a3b8cf5cd226317be72afa9c1c284a108e5ef37774690ba60e2e09d2cb7713379f0cda37283c321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "ESLint\nCopyright jQuery Foundation and other contributors, https://jquery.org/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eslint@2.13.1", + "externalReferences": [ + { + "type": "website", + "url": "http://eslint.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/eslint/issues/" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/eslint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/file-entry-cache@1.3.1", + "author": "Roy Riojas", + "name": "file-entry-cache", + "version": "1.3.1", + "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", + "hashes": [ + { + "alg": "SHA-512", + "content": "b973ffcc6cf1c45bc57dc646801230a2d9be4dd739e5d74f03317b887b213f8606697330c3bad217da5e0fd0f5b2e8b979b38d8395286ec66ff857e01291afff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Roy Riojas\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/file-entry-cache@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/royriojas/file-entry-cache#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/royriojas/file-entry-cache/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/royriojas/file-entry-cache.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inquirer@0.12.0", + "author": "Simon Boudrias", + "name": "inquirer", + "version": "0.12.0", + "description": "A collection of common interactive command line user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ec6d9f29381302af1561eb518b1612b11547e8a02ad2dd721bbea3467544bed553f8d53056d88abd9ba7a6c08fc79f14dc56a875f4748b2ce9f250fbffaa79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/inquirer@0.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/Inquirer.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/Inquirer.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/Inquirer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-escapes@1.4.0", + "author": "Sindre Sorhus", + "name": "ansi-escapes", + "version": "1.4.0", + "description": "ANSI escape codes for manipulating the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "701869adee266be5344f5a0ce5f5e0ec3cb5270ef3cf0bfb96dfc6a02a6bfa10d02686272953cb2f8742bd210532642eace42f4abc13ed22ff0c0961048f7b45" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-escapes@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/ansi-escapes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/ansi-escapes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/ansi-escapes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-cursor@1.0.2", + "author": "Sindre Sorhus", + "name": "cli-cursor", + "version": "1.0.2", + "description": "Toggle the CLI cursor", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2580acfc2e60916196500e94724f69b9aca274f139d4e2d47d145156dabc69c51d45cd68b83d0fcd7f238372101ab4769482748f55cc7f479c3a36e4c1cc58b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-cursor@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/cli-cursor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/cli-cursor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/cli-cursor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/restore-cursor@1.0.1", + "author": "Sindre Sorhus", + "name": "restore-cursor", + "version": "1.0.1", + "description": "Gracefully restore the CLI cursor on exit", + "hashes": [ + { + "alg": "SHA-512", + "content": "e88cc92ee1a2e3e475e2fc1a8031d7f89ad798f56d3e99f899f7c327551d47bfc4766f3b7e5eb28bc98c04856f16d25a35352f8ee821996e21c0b8511bb802d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/restore-cursor@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/restore-cursor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/restore-cursor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/restore-cursor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/onetime@1.1.0", + "author": "Sindre Sorhus", + "name": "onetime", + "version": "1.1.0", + "description": "Only call a function once", + "hashes": [ + { + "alg": "SHA-512", + "content": "a32c8fa6231a28046fbdc822a7e255fbbcdc8b92fc0f55bd459233da5d68d3c00cde97eca62b555a73edde6cc77013e9d76a18313cb4a6aac5b3f0be9b7130b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/onetime@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/onetime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/onetime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/onetime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/figures@1.7.0", + "author": "Sindre Sorhus", + "name": "figures", + "version": "1.7.0", + "description": "Unicode symbols with Windows CMD fallbacks", + "hashes": [ + { + "alg": "SHA-512", + "content": "39ad8cf5ab6283af5991fc2202963c176632fadccc6dacf2beabf6d51d0db120bc7e5a12382d3d05b4f521358076830642f27f6999d1d4a330771f6dbc79d334" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/figures@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/figures#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/figures/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/figures.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/run-async@0.1.0", + "author": "Simon Boudrias", + "name": "run-async", + "version": "0.1.0", + "description": "Utility method to run function either synchronously or asynchronously using the common `this.async()` style.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6f56756fd356fc73546b03a129ec9912b63f391aebff62b31cc2a6109f08ec012d9c4e698f181063023a425bb46b4a874d4a8136fea83d3b86dc78dbd4b8381" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Simon Boudrias\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/run-async@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/run-async" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/run-async/issues" + }, + { + "type": "vcs", + "url": "git://github.com/SBoudrias/run-async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rx-lite@3.1.2", + "author": "Cloud Programmability Team", + "name": "rx-lite", + "version": "3.1.2", + "description": "Lightweight library for composing asynchronous and event-based operations in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ae9fd42e7302ba308ae9de6af2fd8ee1a83d6816a4d82d0e291b16874e321d6850d644618b8a4aa9eaef0b716267ce9a002e0f616a9f891a4f2c14852e10634" + } + ], + "purl": "pkg:npm/rx-lite@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Reactive-Extensions/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Reactive-Extensions/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Reactive-Extensions/RxJS.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pluralize@1.2.1", + "author": "Blake Embrey", + "name": "pluralize", + "version": "1.2.1", + "description": "Pluralize and singularize any word", + "hashes": [ + { + "alg": "SHA-512", + "content": "01184139dcd2ddee3515b916fd75ab4c4b6e92aa8ba0ae7e67fe1478368bb925bedfd24f78582ce20086aacac91d5657d1f52bc7fff8385d0ad42506c25205a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Blake Embrey (hello@blakeembrey.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pluralize@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blakeembrey/pluralize#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blakeembrey/pluralize/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/blakeembrey/pluralize.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/progress@1.1.8", + "author": "TJ Holowaychuk", + "name": "progress", + "version": "1.1.8", + "description": "Flexible ascii progress bar", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecf887b4b965e4b767288330d74d08fbcc495d1e605b6430598913ea226f6b46d78ad64a6bf5ccad26dd9a0debd979da89dcfd42e99dd153da32b66517d57db0" + } + ], + "purl": "pkg:npm/progress@1.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/visionmedia/node-progress#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/visionmedia/node-progress/issues" + }, + { + "type": "vcs", + "url": "git://github.com/visionmedia/node-progress.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shelljs@0.6.1", + "author": "Artur Adib", + "name": "shelljs", + "version": "0.6.1", + "description": "Portable Unix shell commands for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "372d0a3787724fc652084d1faed71b0091a833f1d302ba723e47a58b5ff4d1a61f9b4b1b0ff1a4ff8c7b3760cff50286a41b22407ee7eaba66d4befd46dbe211" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2012, Artur Adib \nAll rights reserved.\n\nYou may use this project under the terms of the New BSD license as follows:\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Artur Adib nor the\n names of the contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" \nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE \nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE \nARE DISCLAIMED. IN NO EVENT SHALL ARTUR ADIB BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF \nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/shelljs@0.6.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/shelljs/shelljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shelljs/shelljs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/shelljs/shelljs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/table@3.8.3", + "author": "Gajus Kuizinas", + "name": "table", + "version": "3.8.3", + "description": "Formats data into a string table.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bbae71484e6047d449f229cbf1061d4b8d87903269d9b425d211b1dc1fa4b43682a2b76e19b853bf4f5bc370b758b0b424335f3c3d5561426cca22e4e13642a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2016, Gajus Kuizinas (http://gajus.com/)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/table@3.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/table#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/table/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/slice-ansi@0.0.4", + "author": "David Caccavella", + "name": "slice-ansi", + "version": "0.0.4", + "description": "Slice a string with ANSI escape codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ceab104ae8b6f7abab34e3b0ff5ec0d534f9c5f4397c2526aa7bd87d954465d0e74dab2fee8c3ace8881edb2a5cc19b5964c8a2647300c693c9ac0053ffd17a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\r\n\r\nCopyright (c) 2015 DC \r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/slice-ansi@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/slice-ansi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/slice-ansi/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/slice-ansi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/user-home@2.0.0", + "author": "Sindre Sorhus", + "name": "user-home", + "version": "2.0.0", + "description": "Get the path to the user home directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a082229f104b9bbf753044da93ccb22766900e98acf0747a840665bf84103f9adf7d7a0f9be15ad7ea2f8844bc54f3e58961f6b7deb1b046c7a0e1e125520b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/user-home@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/user-home#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/user-home/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/user-home.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/front-matter@2.1.2", + "author": "Jason Campbell", + "name": "front-matter", + "version": "2.1.2", + "description": "Extract YAML front matter from a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa03880ec1961d50225920df837be9887c243abc0ee17352dd8407e433269de2c43d6cdd0809db4900adc51785e323cad67b332ef0262de4764a9ae70d00e7c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "# The MIT License (MIT)\n\nCopyright (c) Jason Campbell (\"Author\")\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/front-matter@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jxson/front-matter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jxson/front-matter/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jxson/front-matter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stryker@0.25.1", + "author": "Simon de Lang", + "name": "stryker", + "version": "0.25.1", + "description": "The extendable JavaScript mutation testing framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "d876caac1cd2787a822c6dbebf3679f1da4c6df093b1973572ed4853bf3bc0bb77a66ff61599d66b639292a58c0b13197c7089f044ca0199b86a731ba453ea64" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/stryker@0.25.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stryker-mutator/stryker/tree/master/packages/stryker#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stryker-mutator/stryker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stryker-mutator/stryker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.16.0", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.16.0", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inquirer@6.0.0", + "author": "Simon Boudrias", + "name": "inquirer", + "version": "6.0.0", + "description": "A collection of common interactive command line user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ec6d9f29381302af1561eb518b1612b11547e8a02ad2dd721bbea3467544bed553f8d53056d88abd9ba7a6c08fc79f14dc56a875f4748b2ce9f250fbffaa79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/inquirer@6.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/SBoudrias/Inquirer.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/SBoudrias/Inquirer.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/SBoudrias/Inquirer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/external-editor@3.1.0", + "author": "Kevin Gravier", + "name": "external-editor", + "version": "3.1.0", + "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d29fa82f1b12adf9befee93284bf567270795e03b6878511f202a272a79a5b505b9860d233a599d00e4ec0b18724c967449d37809dacb4682cb6695ea24e4f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Kevin Gravier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/external-editor@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mrkmg/node-external-editor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mrkmg/node-external-editor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mrkmg/node-external-editor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rxjs@6.2.2", + "author": "Ben Lesh", + "name": "rxjs", + "version": "6.2.2", + "description": "Reactive Extensions for modern JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "c71da2b672f9b016ea79e89580d3d5b904359c2f09a7659f349857587984956f589aba52f5456737384fdc41f71c5a9ec4ee53969f0685863e58472a71532f1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n" + } + } + } + ], + "purl": "pkg:npm/rxjs@6.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ReactiveX/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ReactiveX/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactivex/rxjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/log4js@3.0.6", + "author": "Gareth Jones", + "name": "log4js", + "version": "3.0.6", + "description": "Port of Log4js to work with node.", + "hashes": [ + { + "alg": "SHA-512", + "content": "09dfa495bc7b96489a6a610877dff4a1d1f1bff3c51c3cf6135da411f77afc2cc83990f4f380f3cac01247f0e8b788b57583c140a0b7af65c8111f9d7db2ce9b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright 2015 Gareth Jones (with contributions from many other people)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/log4js@3.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://log4js-node.github.io/log4js-node/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/log4js-node/log4js-node/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/log4js-node/log4js-node.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/circular-json@0.5.9", + "author": "Andrea Giammarchi", + "name": "circular-json", + "version": "0.5.9", + "description": "JSON does not handle circular references. This version does", + "hashes": [ + { + "alg": "SHA-512", + "content": "5192b7341c7631c6be6f92ec1bb6d8d7cde91d6b79635c6db383f73f3ec4353c0656724e5166d16f7a1c8ef5fb871f6dabfc9301d7255e6f6c677f2036e7a6e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (C) 2013-2017 by Andrea Giammarchi - @WebReflection\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/circular-json@0.5.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/WebReflection/circular-json" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WebReflection/circular-json/issues" + }, + { + "type": "vcs", + "url": "git://github.com/WebReflection/circular-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/date-format@1.2.0", + "author": "Gareth Jones", + "name": "date-format", + "version": "1.2.0", + "description": "Formatting Date objects as strings since 2013", + "hashes": [ + { + "alg": "SHA-512", + "content": "94026a06617308b70325d23d7049c9ee5a1290b4e1d4f6c8819527765cef61b7fa372144af99fdad084ec2be82206c19ab2437b187904223fd34e5509a099130" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Gareth Jones\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/date-format@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nomiddlename/date-format#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nomiddlename/date-format/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nomiddlename/date-format.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rfdc@1.3.0", + "author": "David Mark Clements", + "name": "rfdc", + "version": "1.3.0", + "description": "Really Fast Deep Clone", + "hashes": [ + { + "alg": "SHA-512", + "content": "576868bddcc56ce8bbeff59a8da48c5e4d8e2e6fb134879074c32e07b89c8fb6e4eb38b617c1860318a07270c5a491db37235c83224388ffbc9cead8e5c646ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2019 \"David Mark Clements \"\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated \ndocumentation files (the \"Software\"), to deal in the Software without restriction, including without limitation \nthe rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and \nto permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions \nof the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED \nTO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL \nTHE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF \nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS \nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rfdc@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davidmarkclements/rfdc#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davidmarkclements/rfdc/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davidmarkclements/rfdc.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/streamroller@0.7.0", + "author": "Gareth Jones", + "name": "streamroller", + "version": "0.7.0", + "description": "file streams that roll over when size limits, or dates are reached", + "hashes": [ + { + "alg": "SHA-512", + "content": "5911337f2d2bd3352aa779463b4f7ac11b94a7b868d57eaea3fec325f4e5122d08bffe204fb607a970e3282da2a1518166d13c433b100fd9f1d6722ea19e7b8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Gareth Jones\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/streamroller@0.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nomiddlename/streamroller#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nomiddlename/streamroller/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nomiddlename/streamroller.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mz@2.7.0", + "author": "Jonathan Ong", + "name": "mz", + "version": "2.7.0", + "description": "modernize node.js to current ECMAScript standards", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfcd4634eee79d830486b1a1f4b7b29a8138f98af45a7e4c70721930ae5c7d00a5f8d0d7d3cb0266051cf7fe8c1e78bd216b852e6d59dc74c25eedb3f5f37ad9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and Contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mz@2.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/normalize/mz#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/normalize/mz/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/normalize/mz.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/any-promise@1.3.0", + "author": "Kevin Beaty", + "name": "any-promise", + "version": "1.3.0", + "description": "Resolve any installed ES6 compatible promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed4be629a95646dd708232f546b1b1a12256ff44191487a0a5e1af646f648e9f2fad1bb9e574c76f09eaab61a95e6f6e2db72e8719b722a5fd381e0c651d5bd8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2014-2016 Kevin Beaty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/any-promise@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/kevinbeaty/any-promise" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kevinbeaty/any-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kevinbeaty/any-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/thenify-all@1.6.0", + "author": "Jonathan Ong", + "name": "thenify-all", + "version": "1.6.0", + "description": "Promisifies all the selected functions in an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "44dc501ffa88f3fb77b615c90f072cb543b8cdeaa8eb8f94cbffac355441c785e7d8e5fe399f683fe8899cd16aa6516b6b665455e28249ada85568b74f8b9598" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014 Jonathan Ong me@jongleberry.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/thenify-all@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thenables/thenify-all#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thenables/thenify-all/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/thenables/thenify-all.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/thenify@3.3.1", + "author": "Jonathan Ong", + "name": "thenify", + "version": "3.3.1", + "description": "Promisify a callback-based function", + "hashes": [ + { + "alg": "SHA-512", + "content": "455652215e481b5d079377a7a2dae1bf3d13f5e9ba7321c12e41ff60066e2aa77c85190a8527c218870fd8a518d043f19ddcc034198d965cd63f06a4f9b85e4b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\nThe MIT License (MIT)\n\nCopyright (c) 2014-2016 Jonathan Ong me@jongleberry.com and contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/thenify@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thenables/thenify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thenables/thenify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/thenables/thenify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prettier@1.13.7", + "author": "James Long", + "name": "prettier", + "version": "1.13.7", + "description": "Prettier is an opinionated code formatter", + "hashes": [ + { + "alg": "SHA-512", + "content": "28853bd949983c693832e8d9198305c229c1ee539fd8bb0334648e0bcb9f7afb2b3cb212ad96cd2655acb518b79b400cbaccdb1fe105490febeb0e7a4523caeb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/prettier@1.13.7", + "externalReferences": [ + { + "type": "website", + "url": "https://prettier.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/prettier/prettier/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/prettier/prettier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/surrial@0.1.3", + "author": "Nico Jansen", + "name": "surrial", + "version": "0.1.3", + "description": "Serialize anything. This is surreal!", + "hashes": [ + { + "alg": "SHA-512", + "content": "22a7ea73d96e5a7ff8afd807c5edd789f6106959ded3d4cfda13054305d2470e16a5f3233599194108c54b36adbebc3e320ca712e39996c076e26d331cd54404" + } + ], + "licenses": [ + { + "license": { + "name": "Apache2", + "text": { + "content": " Apache License\r\n Version 2.0, January 2004\r\n http://www.apache.org/licenses/\r\n\r\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n 1. Definitions.\r\n\r\n \"License\" shall mean the terms and conditions for use, reproduction,\r\n and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n \"Licensor\" shall mean the copyright owner or entity authorized by\r\n the copyright owner that is granting the License.\r\n\r\n \"Legal Entity\" shall mean the union of the acting entity and all\r\n other entities that control, are controlled by, or are under common\r\n control with that entity. For the purposes of this definition,\r\n \"control\" means (i) the power, direct or indirect, to cause the\r\n direction or management of such entity, whether by contract or\r\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\r\n outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\r\n exercising permissions granted by this License.\r\n\r\n \"Source\" form shall mean the preferred form for making modifications,\r\n including but not limited to software source code, documentation\r\n source, and configuration files.\r\n\r\n \"Object\" form shall mean any form resulting from mechanical\r\n transformation or translation of a Source form, including but\r\n not limited to compiled object code, generated documentation,\r\n and conversions to other media types.\r\n\r\n \"Work\" shall mean the work of authorship, whether in Source or\r\n Object form, made available under the License, as indicated by a\r\n copyright notice that is included in or attached to the work\r\n (an example is provided in the Appendix below).\r\n\r\n \"Derivative Works\" shall mean any work, whether in Source or Object\r\n form, that is based on (or derived from) the Work and for which the\r\n editorial revisions, annotations, elaborations, or other modifications\r\n represent, as a whole, an original work of authorship. For the purposes\r\n of this License, Derivative Works shall not include works that remain\r\n separable from, or merely link (or bind by name) to the interfaces of,\r\n the Work and Derivative Works thereof.\r\n\r\n \"Contribution\" shall mean any work of authorship, including\r\n the original version of the Work and any modifications or additions\r\n to that Work or Derivative Works thereof, that is intentionally\r\n submitted to Licensor for inclusion in the Work by the copyright owner\r\n or by an individual or Legal Entity authorized to submit on behalf of\r\n the copyright owner. For the purposes of this definition, \"submitted\"\r\n means any form of electronic, verbal, or written communication sent\r\n to the Licensor or its representatives, including but not limited to\r\n communication on electronic mailing lists, source code control systems,\r\n and issue tracking systems that are managed by, or on behalf of, the\r\n Licensor for the purpose of discussing and improving the Work, but\r\n excluding communication that is conspicuously marked or otherwise\r\n designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\r\n on behalf of whom a Contribution has been received by Licensor and\r\n subsequently incorporated within the Work.\r\n\r\n 2. Grant of Copyright License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n copyright license to reproduce, prepare Derivative Works of,\r\n publicly display, publicly perform, sublicense, and distribute the\r\n Work and such Derivative Works in Source or Object form.\r\n\r\n 3. Grant of Patent License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n (except as stated in this section) patent license to make, have made,\r\n use, offer to sell, sell, import, and otherwise transfer the Work,\r\n where such license applies only to those patent claims licensable\r\n by such Contributor that are necessarily infringed by their\r\n Contribution(s) alone or by combination of their Contribution(s)\r\n with the Work to which such Contribution(s) was submitted. If You\r\n institute patent litigation against any entity (including a\r\n cross-claim or counterclaim in a lawsuit) alleging that the Work\r\n or a Contribution incorporated within the Work constitutes direct\r\n or contributory patent infringement, then any patent licenses\r\n granted to You under this License for that Work shall terminate\r\n as of the date such litigation is filed.\r\n\r\n 4. Redistribution. You may reproduce and distribute copies of the\r\n Work or Derivative Works thereof in any medium, with or without\r\n modifications, and in Source or Object form, provided that You\r\n meet the following conditions:\r\n\r\n (a) You must give any other recipients of the Work or\r\n Derivative Works a copy of this License; and\r\n\r\n (b) You must cause any modified files to carry prominent notices\r\n stating that You changed the files; and\r\n\r\n (c) You must retain, in the Source form of any Derivative Works\r\n that You distribute, all copyright, patent, trademark, and\r\n attribution notices from the Source form of the Work,\r\n excluding those notices that do not pertain to any part of\r\n the Derivative Works; and\r\n\r\n (d) If the Work includes a \"NOTICE\" text file as part of its\r\n distribution, then any Derivative Works that You distribute must\r\n include a readable copy of the attribution notices contained\r\n within such NOTICE file, excluding those notices that do not\r\n pertain to any part of the Derivative Works, in at least one\r\n of the following places: within a NOTICE text file distributed\r\n as part of the Derivative Works; within the Source form or\r\n documentation, if provided along with the Derivative Works; or,\r\n within a display generated by the Derivative Works, if and\r\n wherever such third-party notices normally appear. The contents\r\n of the NOTICE file are for informational purposes only and\r\n do not modify the License. You may add Your own attribution\r\n notices within Derivative Works that You distribute, alongside\r\n or as an addendum to the NOTICE text from the Work, provided\r\n that such additional attribution notices cannot be construed\r\n as modifying the License.\r\n\r\n You may add Your own copyright statement to Your modifications and\r\n may provide additional or different license terms and conditions\r\n for use, reproduction, or distribution of Your modifications, or\r\n for any such Derivative Works as a whole, provided Your use,\r\n reproduction, and distribution of the Work otherwise complies with\r\n the conditions stated in this License.\r\n\r\n 5. Submission of Contributions. Unless You explicitly state otherwise,\r\n any Contribution intentionally submitted for inclusion in the Work\r\n by You to the Licensor shall be under the terms and conditions of\r\n this License, without any additional terms or conditions.\r\n Notwithstanding the above, nothing herein shall supersede or modify\r\n the terms of any separate license agreement you may have executed\r\n with Licensor regarding such Contributions.\r\n\r\n 6. Trademarks. This License does not grant permission to use the trade\r\n names, trademarks, service marks, or product names of the Licensor,\r\n except as required for reasonable and customary use in describing the\r\n origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n 7. Disclaimer of Warranty. Unless required by applicable law or\r\n agreed to in writing, Licensor provides the Work (and each\r\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r\n implied, including, without limitation, any warranties or conditions\r\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r\n PARTICULAR PURPOSE. You are solely responsible for determining the\r\n appropriateness of using or redistributing the Work and assume any\r\n risks associated with Your exercise of permissions under this License.\r\n\r\n 8. Limitation of Liability. In no event and under no legal theory,\r\n whether in tort (including negligence), contract, or otherwise,\r\n unless required by applicable law (such as deliberate and grossly\r\n negligent acts) or agreed to in writing, shall any Contributor be\r\n liable to You for damages, including any direct, indirect, special,\r\n incidental, or consequential damages of any character arising as a\r\n result of this License or out of the use or inability to use the\r\n Work (including but not limited to damages for loss of goodwill,\r\n work stoppage, computer failure or malfunction, or any and all\r\n other commercial damages or losses), even if such Contributor\r\n has been advised of the possibility of such damages.\r\n\r\n 9. Accepting Warranty or Additional Liability. While redistributing\r\n the Work or Derivative Works thereof, You may choose to offer,\r\n and charge a fee for, acceptance of support, warranty, indemnity,\r\n or other liability obligations and/or rights consistent with this\r\n License. However, in accepting such obligations, You may act only\r\n on Your own behalf and on Your sole responsibility, not on behalf\r\n of any other Contributor, and only if You agree to indemnify,\r\n defend, and hold each Contributor harmless for any liability\r\n incurred by, or claims asserted against, such Contributor by reason\r\n of your accepting any such warranty or additional liability.\r\n\r\n END OF TERMS AND CONDITIONS\r\n\r\n APPENDIX: How to apply the Apache License to your work.\r\n\r\n To apply the Apache License to your work, attach the following\r\n boilerplate notice, with the fields enclosed by brackets \"{}\"\r\n replaced with your own identifying information. (Don't include\r\n the brackets!) The text should be enclosed in the appropriate\r\n comment syntax for the file format. We also recommend that a\r\n file or class name and description of purpose be included on the\r\n same \"printed page\" as the copyright notice for easier\r\n identification within third-party archives.\r\n\r\n Copyright {yyyy} {name of copyright owner}\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License.\r\n" + } + } + } + ], + "purl": "pkg:npm/surrial@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nicojs/node-surrial" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nicojs/node-surrial/issues" + }, + { + "type": "vcs", + "url": "git://github.com/nicojs/node-surrial.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tree-kill@1.2.2", + "author": "Peteris Krumins", + "name": "tree-kill", + "version": "1.2.2", + "description": "kill trees of processes", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f43aba62f2a1a9446fff35df87f74bc507ede21e7b9ed734921a634e38287518b27bad4295c15d87be28e9846412d949a15197b04bd560bf1608760afe7c6d4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Peter Krumins\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tree-kill@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pkrumins/node-tree-kill" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pkrumins/node-tree-kill/issues" + }, + { + "type": "vcs", + "url": "git://github.com/pkrumins/node-tree-kill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/typed-rest-client@1.0.11", + "author": "Microsoft Corporation", + "name": "typed-rest-client", + "version": "1.0.11", + "description": "Node Rest and Http Clients for use with TypeScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "233dbfa75124269f256802255bfe21fb7bbe789aa6b25a2cad7db02b5a1f33be1f0a746933f1003ccfa9b237102a89a5350ac89ca2cfa7f2589ec1f866ece141" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Typed Rest Client for Node.js\n\nCopyright (c) Microsoft Corporation\n\nAll rights reserved.\n\nMIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and\nassociated documentation files (the \"Software\"), to deal in the Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\nLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/typed-rest-client@1.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Microsoft/typed-rest-client#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Microsoft/typed-rest-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Microsoft/typed-rest-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nock@9.6.1", + "author": "Pedro Teixeira", + "name": "nock", + "version": "9.6.1", + "description": "HTTP server mocking and expectations library for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "103825fd680d4340b5059665012390910744ead0165c98bc41096e82accdeb824992f67b20b8a366e1b6e2be2f082ef239f9e6e872a99dee40184c4b1827815a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2011-2018 Pedro Teixeira and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nock@9.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nock/nock#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/nock/nock/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nock/nock.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chai@4.3.6", + "author": "Jake Luer", + "name": "chai", + "version": "4.3.6", + "description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6db729dd87c7094ccc3af2aab33b5ccdead5801292b048a30b248d9471db5f7546d67b24bea8f3e517eca35806c03eb0ea8395dde23ad292ae30e579315ee9dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Chai.js Assertion Library\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chai@4.3.6", + "externalReferences": [ + { + "type": "website", + "url": "http://chaijs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/chai/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chaijs/chai.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/loupe@2.3.4", + "author": "Veselin Todorov", + "name": "loupe", + "version": "2.3.4", + "description": "Inspect utility for Node.js and browsers", + "hashes": [ + { + "alg": "SHA-512", + "content": "3af29f8020b635d6f2e9a49344497968208f4cd2339437d066f671354ac1ae284384bdf172b61e8136e58661220ab83690a433e17b0521a7a6139045e326d269" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011-2013 Jake Luer jake@alogicalparadox.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/loupe@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/loupe" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/loupe/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chaijs/loupe.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/propagate@1.0.0", + "author": "Pedro Teixeira", + "name": "propagate", + "version": "1.0.0", + "description": "Propagate events", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ffaea08925a20f60e6e22d299a0ec21fe0f180ef2fa99206051e6c285d0c8e1e20c348ed580b1733b4d89106657811985ae1021b203def4081e4a8abb99345e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License\n\nCopyright (c) 2015 Pedro Teixeira\n\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n\n" + } + } + } + ], + "purl": "pkg:npm/propagate@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pgte/propagate#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/pgte/propagate/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/pgte/propagate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tunnel@0.0.4", + "author": "Koichi Kobayashi", + "name": "tunnel", + "version": "0.0.4", + "description": "Node HTTP/HTTPS Agents for tunneling proxies", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3d4184493795a04bca02b6abf0cf371f9f36939c33ebec7a54b107525ec713cb35db8ef978c121cf4d428e2b311a0de42f3aec91b6ddee8beba333bc7b4d179" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2012 Koichi Kobayashi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tunnel@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/koichik/node-tunnel/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/koichik/node-tunnel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/koichik/node-tunnel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/underscore@1.8.3", + "author": "Jeremy Ashkenas", + "name": "underscore", + "version": "1.8.3", + "description": "JavaScript's functional programming helper library.", + "hashes": [ + { + "alg": "SHA-512", + "content": "050167503b8043861ffdc618e4b36b2bd3422452ab89a45b0fdb91d5f4de5e705ea1af7b5b48b8d6a9197c63bda52a3c2392b38c07126365d8b5d7f4a0a77b29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative\nReporters & Editors\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/underscore@1.8.3", + "externalReferences": [ + { + "type": "website", + "url": "http://underscorejs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jashkenas/underscore/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jashkenas/underscore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/axios-retry-ano@1.0.2", + "name": "axios-retry-ano", + "version": "1.0.2", + "description": "Axios plugin that intercepts failed requests and retries them whenever possible.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f46ce12018c19ae6d592e153f46165d98c376296cc1cefc1330b091b45749de5b4eb78b9c5f41df41ba0301e67bdc168cfbb3560f6093a2956afed5ff690691b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2017 Softonic International S.A.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/axios-retry-ano@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dorado-lmz/axios-retry#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dorado-lmz/axios-retry/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dorado-lmz/axios-retry.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/axios@0.15.3", + "author": "Matt Zabriskie", + "name": "axios", + "version": "0.15.3", + "description": "Promise based HTTP client for the browser and node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "c37fd535aada11c0eb8b5ea56de99059018a7da164f4ed08664cca94b785e6be96583bfd4e471790ff8c5a444af056f1c1fa3363f96223eaadbe1576f79b771d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Matt Zabriskie\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/axios@0.15.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mzabriskie/axios" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mzabriskie/axios/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mzabriskie/axios.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/follow-redirects@1.0.0", + "author": "Olivier Lalonde", + "name": "follow-redirects", + "version": "1.0.0", + "description": "HTTP and HTTPS modules that follow redirects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8b00c42cfa4d1bda6edc571a52d5528956fa33ed24bd4ddd73b2cdd74705e3f990c7d34449827b8bc7b138e30c74da440badd33768e3b2f85a734bbfbc3a2cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/follow-redirects@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/olalonde/follow-redirects" + }, + { + "type": "issue-tracker", + "url": "https://github.com/olalonde/follow-redirects/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/olalonde/follow-redirects.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-cli@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-cli", + "version": "6.26.0", + "description": "Babel command line.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1abbe043b507ee481190f4fcf314bdd112f47d4b19dde0b2b0b5c1c088f8e1ba003b2bff34be91d769f8fe3b96c0a893ae49e7e33b1e59267352476275430e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-cli@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-cli" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-core@6.26.3", + "author": "Sebastian McKenzie", + "name": "babel-core", + "version": "6.26.3", + "description": "Babel compiler core.", + "hashes": [ + { + "alg": "SHA-512", + "content": "695a0fb9a122249fefa85a58b86a779073ab29e29c8829230c4fdef6f6b756848f01edfb41cd3ef4067e801808313bbc57cade0adda55bcd3d7bc93528941d69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-core@6.26.3", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-core" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helpers@6.24.1", + "author": "Sebastian McKenzie", + "name": "babel-helpers", + "version": "6.24.1", + "description": "Collection of helper functions used by Babel transforms.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fba45aea426e384c262fac20dbd0ca9a6c017e25406afa28c1bcd314c6990b8c9680bb7d9f6887b17b032e9ab1f928b2c9d470f24f43d312a47201efc6c30b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helpers@6.24.1", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helpers" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-register@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-register", + "version": "6.26.0", + "description": "babel require hook", + "hashes": [ + { + "alg": "SHA-512", + "content": "bde9621e51d7d3ac2369e63cc4d2136ef7974a223e0121673aabe77bf2da20922a3968b63a09a3f7528eba0133fe1a21fdfc0c85734124f0aff176b3e42c8ce0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-register@6.26.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-register" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/home-or-tmp@2.0.0", + "author": "Sindre Sorhus", + "name": "home-or-tmp", + "version": "2.0.0", + "description": "Get the user home directory with fallback to the system temp directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8b29066947a824f2e2779976c19323ae9ac036e01524f421ffefd8af67c2a4d6eaf3957346641a0032e89e0bf633c02c86055aaafae08d529035252ea096bc6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/home-or-tmp@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/home-or-tmp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/home-or-tmp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/home-or-tmp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-polyfill@6.26.0", + "author": "Sebastian McKenzie", + "name": "babel-polyfill", + "version": "6.26.0", + "description": "Provides polyfills necessary for a full ES2015+ environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "176ad91909c075a1d643c600a1e45bba473b1d2f5081d81ec89d2b403778f39bfda29c2e3ef8e93c570e393fd69a4293760cbd1128123d70dc4cda73ac6afa89" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-polyfill@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-polyfill" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-call-delegate@6.24.1", + "name": "babel-helper-call-delegate", + "version": "6.24.1", + "description": "Helper function to call delegate", + "hashes": [ + { + "alg": "SHA-512", + "content": "44bf27d8d8848fe90aced96b54933d253d5c5f3cc076f58587beb187f1f52389cac2e9f313820d0579fc89e099fb0878cd6b33664ecd052d6cffc1d1e630e4cd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-call-delegate@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-hoist-variables@6.24.1", + "name": "babel-helper-hoist-variables", + "version": "6.24.1", + "description": "Helper function to hoist variables", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc0625deda9eacb22dbc6e5c298c3b7f54a9bc8c52f738bba21c861da23d7200d48c04fa61c63d8c8107e42b2d7ad3f9c0721549c797c0d4bb679069260fab3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-hoist-variables@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-define-map@6.26.0", + "name": "babel-helper-define-map", + "version": "6.26.0", + "description": "Helper function to define a map", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c79268dc0bd94cd64999715a40e6dda89b69f34ffc62669a3a4c9abb525677c2a29fce26b8bde7976c884abc95c0333861101777711d481252f901e9d6114a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-define-map@6.26.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-optimise-call-expression@6.24.1", + "name": "babel-helper-optimise-call-expression", + "version": "6.24.1", + "description": "Helper function to optimise call expression", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a9f488446b185b453f0c0d7c7688db8c81c8aed95f250ef6023506c31a37413428da32fc8b7f8c25e00ddbf08827742c9017c4f07e0b10f13dd50fc697d7fa4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-optimise-call-expression@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-regex@6.26.0", + "name": "babel-helper-regex", + "version": "6.26.0", + "description": "Helper function to check for literal RegEx", + "hashes": [ + { + "alg": "SHA-512", + "content": "5653e25a6aa6189a74c74a0adbb3aeb750feef59d55424d27656e1215a1a0408f695482b363042451f7e9653b895349bd8ee2becf260f91a1b464841adfea87e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-regex@6.26.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-replace-supers@6.24.1", + "name": "babel-helper-replace-supers", + "version": "6.24.1", + "description": "Helper function to replace supers", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0b23ebbbb17261ebe4e8a83af9ec1bfdef79027a922d0e1328bb4c423f660f5664758e41d2098fa9d67a3cc44adb5754a2cf9404f2a293d56230c9b49696a8f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-replace-supers@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-check-es2015-constants@6.22.0", + "name": "babel-plugin-check-es2015-constants", + "version": "6.22.0", + "description": "Compile ES2015 constants to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0753392813f6f76e3c755884a35a30c98df6964d59487d8368d36b5cb1adf25ca38c79bba41a80750ed52943d1e841033b7db7f8ebd3dcc4176c28a7f28a1674" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-check-es2015-constants@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-check-es2015-constants" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-arrow-functions@6.22.0", + "name": "babel-plugin-transform-es2015-arrow-functions", + "version": "6.22.0", + "description": "Compile ES2015 arrow functions to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c2ab0c333835d6ec932bceefb26486986cf4122a30d302c34d94ada5e4683d838af3d95ccb9d9b12b6fa7fddce3a19f5e9c24cae7dbdcd0b21bdfb9d0517556" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-arrow-functions@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-arrow-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-block-scoped-functions@6.22.0", + "name": "babel-plugin-transform-es2015-block-scoped-functions", + "version": "6.22.0", + "description": "Babel plugin to ensure function declarations at the block level are block scoped", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbeba3013d94301cd8166eed89d52c621f99a08badc49de937d218ac5d7f1fa7422ad1027e1981f14907569cb10f0923d0261b406df9ca4a33f76e5352705cdc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-block-scoped-functions@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoped-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-block-scoping@6.26.0", + "name": "babel-plugin-transform-es2015-block-scoping", + "version": "6.26.0", + "description": "Compile ES2015 block scoping (const and let) to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "62237ab05010e6530bf098c29abeee7ab4b961cfc431b820f46f193669361379d85f87241d1d35c2b91e78c8a311fe561cd2b94d6d1297452ede9bf711d3895b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-block-scoping@6.26.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-classes@6.24.1", + "name": "babel-plugin-transform-es2015-classes", + "version": "6.24.1", + "description": "Compile ES2015 classes to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e43cbb65b4629c6acdb665a9aae64a67710663cb03808541e0253c3a6f2af2d9cc2eb0ff9bde1c2a0955707a6cd01093759d1325e78058eab64caf4c218e9c6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-classes@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-classes" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-computed-properties@6.24.1", + "name": "babel-plugin-transform-es2015-computed-properties", + "version": "6.24.1", + "description": "Compile ES2015 computed properties to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bfb80bf892d14ffc79a1d3580c4ef62f202acacded17557f5fd8f7485eeae2092bd4995f63faef8107d7f97c92b7fbcefcc8c2ba76475cabe626afd9ab70bcf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-computed-properties@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-computed-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-destructuring@6.23.0", + "name": "babel-plugin-transform-es2015-destructuring", + "version": "6.23.0", + "description": "Compile ES2015 destructuring to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "68dbff183016d23fdfe14cb53843d99f59aa0fe35fcbdbe214605f4396d9c93df962a3a2ab1effb577727d9909d6c0b6d4dc84b0175f0d8e8f6262c7178af988" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-destructuring@6.23.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-destructuring" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-duplicate-keys@6.24.1", + "name": "babel-plugin-transform-es2015-duplicate-keys", + "version": "6.24.1", + "description": "Compile objects with duplicate keys to valid strict ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2cb28713b8f3acb1fc4eda1f99dff11ad55a35c16c77d54ab2f6f22226eb0e3f84db17bb4fb3d534b09f695fd3893dfe255d11a3e7ee86925fc71ca8803f9ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-duplicate-keys@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-duplicate-keys" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-for-of@6.23.0", + "name": "babel-plugin-transform-es2015-for-of", + "version": "6.23.0", + "description": "Compile ES2015 for...of to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cbb91c28ca00a85f1f987f11cb915c79fcda5e49b5707e84de07292924aec98585a52ff3bc86000afeb79fa2b5276439716ac3ab54f3c9548fe0b84ddd0b093" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-for-of@6.23.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-for-of" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-function-name@6.24.1", + "name": "babel-plugin-transform-es2015-function-name", + "version": "6.24.1", + "description": "Apply ES2015 function.name semantics to all functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "885a79288728adfd75881aaeff2fdaec32b730de5d8b7a4d0b3b68eb516a08d9d45f8a9e070715d522ea7b5d285cd9c26b10542265f749c917dbfa359ecad372" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-function-name@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-function-name" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-literals@6.22.0", + "name": "babel-plugin-transform-es2015-literals", + "version": "6.22.0", + "description": "Compile ES2015 unicode string and number literals to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "b63165d1cc0c3e90d8ca8a9803d962d7fee61858addfd5e2357e43282fee08d8c172d331c8bd7f3d3fe5e2b4a56ef046d6938a23cf124d1754b165c1dff43d85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-literals@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-modules-amd@6.24.1", + "name": "babel-plugin-transform-es2015-modules-amd", + "version": "6.24.1", + "description": "This plugin transforms ES2015 modules to AMD", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e720874658829dc3bcf0724ab1f9e1a3712f3f725f03ef803706925b1a329314534948cae33786c8876d876350259146de2c6e97e8e663e7a043bd60fe39e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-modules-amd@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-amd" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-modules-commonjs@6.26.2", + "name": "babel-plugin-transform-es2015-modules-commonjs", + "version": "6.26.2", + "description": "This plugin transforms ES2015 modules to CommonJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "095f5138e1c476b8dcc2121a24d0463010a874dfb571f930b4cd526d41e6bf2cb7e4a193edfa216e93b1904dae2f3d68ea874a2b60a4fedcf8ef3f95a907e2f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-modules-commonjs@6.26.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-strict-mode@6.24.1", + "name": "babel-plugin-transform-strict-mode", + "version": "6.24.1", + "description": "This plugin places a 'use strict'; directive at the top of all files to enable strict mode", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f72ad4a98f22d2271368083ae1c2225a77c930d2027d4441a3f3f0aa2f41de4722e7bd435857dcdcaa5b8be902525e1de77ec2c49922efc117c6ceb811f7a3f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-strict-mode@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-modules-systemjs@6.24.1", + "name": "babel-plugin-transform-es2015-modules-systemjs", + "version": "6.24.1", + "description": "This plugin transforms ES2015 modules to SystemJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "38d1483ecabccb86e5b393cfb005985c7ff6d47aafeb84c1c5d8ded05bd4dcc84857a40cda3e584bb2af03383f9d32152e8b760f67e6150ac55826e01e51448e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-modules-systemjs@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-systemjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-modules-umd@6.24.1", + "name": "babel-plugin-transform-es2015-modules-umd", + "version": "6.24.1", + "description": "This plugin transforms ES2015 modules to UMD", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e955b893f422ecb80229dc81b4b5f6d5a3cd502219faa44f31049ed749e0ad165325b6e6abe55b8157acba438e6da6e8bd416732e62d2f2d07c27eb9c5eca8b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-modules-umd@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-umd" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-object-super@6.24.1", + "name": "babel-plugin-transform-es2015-object-super", + "version": "6.24.1", + "description": "Compile ES2015 object super to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f06e61a5931e71be77be90f79a3b3ae0d848d5abb6e13026a2443807e4c11418cdf5c5681a83afa2d76b30c4661ef559504bea1943d62f9d78c28aeed4285930" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-object-super@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-object-super" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-parameters@6.24.1", + "name": "babel-plugin-transform-es2015-parameters", + "version": "6.24.1", + "description": "Compile ES2015 default and rest parameters to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f07c655be041e47aa7883fa72e4438c52015ab76d1fe97185bd222818fb6cb4748f98ec83457936df010afeeb74f7138503b191a3c9bfa5f6dc549c0056c6539" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-parameters@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-parameters" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-shorthand-properties@6.24.1", + "name": "babel-plugin-transform-es2015-shorthand-properties", + "version": "6.24.1", + "description": "Compile ES2015 shorthand properties to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "9837687127d4566d7fec9c3f14844dc3dbcfac140d78fcbac1926547c1c05012f26cda75c3fea5afacd9da98cc4a179eeb9b7fc9b479a53f2e9642f30f5c708b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-shorthand-properties@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-shorthand-properties" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-spread@6.22.0", + "name": "babel-plugin-transform-es2015-spread", + "version": "6.22.0", + "description": "Compile ES2015 spread to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc68618b6eabe25dddd09b3ddf7139f88847c24d00d728aeb63f60c2fce615b555d2c3cc624da57a484eb9f1c1b305fb342a12785e17ae5dec088b9221afb33a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-spread@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-spread" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-sticky-regex@6.24.1", + "name": "babel-plugin-transform-es2015-sticky-regex", + "version": "6.24.1", + "description": "Compile ES2015 sticky regex to an ES5 RegExp constructor", + "hashes": [ + { + "alg": "SHA-512", + "content": "0983f7e7d003af24e8de90ac1f4a31468ff4ca7e94b0464ba98a211e6bcb41d7d2f7191ff8c6c2cc4dff2a8970f4e60863864c8a51f6e73ff909b41bc030fe95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-sticky-regex@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-sticky-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-template-literals@6.22.0", + "name": "babel-plugin-transform-es2015-template-literals", + "version": "6.22.0", + "description": "Compile ES2015 template literals to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7c6fd5b49e09cacc33078a656d4df9f9af28a66abb350724eab1f043c00a8b89b9aeb9063aa600508b9cf512b22c50e581770d5b5bd152cf94595288cce1aa6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-template-literals@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-template-literals" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-typeof-symbol@6.23.0", + "name": "babel-plugin-transform-es2015-typeof-symbol", + "version": "6.23.0", + "description": "This transformer wraps all typeof expressions with a method that replicates native behaviour. (ie. returning “symbol” for symbols)", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f3e89d927f881837a81681165aa055e6abddd7f8b8bff2f7fe7dbd2c18356d75e5afc42f72e7f6d30fb6ef7d6304abacdeb46107a568edcd1192ba0b7990dab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-typeof-symbol@6.23.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-typeof-symbol" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-es2015-unicode-regex@6.24.1", + "name": "babel-plugin-transform-es2015-unicode-regex", + "version": "6.24.1", + "description": "Compile ES2015 Unicode regex to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "bfad436db8a17f95f19d88ed04dd3807f241bec49c637ed1d5c653e6bf697ab98dd5ca7e6fbd0363721bddf224827d4323d537b46801259543f29fe613fe096d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-es2015-unicode-regex@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-unicode-regex" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regexpu-core@2.0.0", + "author": "Mathias Bynens", + "name": "regexpu-core", + "version": "2.0.0", + "description": "regexpu’s core functionality (i.e. `rewritePattern(pattern, flag)`), capable of translating ES6 Unicode regular expressions to ES5.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a2fa50d196f00494a8c5a7991eaa65546892ea6621f2c1e91786c853eb0554c8339b18f77298d3e1c4199fdfc655b1a5063a7677168b7d633c6fa08df5ca663" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/regexpu-core@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/regexpu" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/regexpu-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/regexpu-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-regenerator@6.26.0", + "author": "Ben Newman", + "name": "babel-plugin-transform-regenerator", + "version": "6.26.0", + "description": "Explode async and generator functions into a state machine.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d2f9d06450694d475e7fe561ca7bff0d79ac31ebadeab6d4ba006aa839484809cf5dd4a72206fb6b412b9cd0f23e0b143643f4b568ab89faeeb81ad2dd70466" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-regenerator@6.26.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-transform@0.10.1", + "author": "Ben Newman", + "name": "regenerator-transform", + "version": "0.10.1", + "description": "Explode async and generator functions into a state machine.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c97a96ef0dbb8ad718088276aeed8f7473068098efcb08b308da63ef697ab685e18c4776965b9fc142f62b849f238264235dec17bc18f37ea29c54e9a18d9e9" + } + ], + "licenses": [ + { + "license": { + "name": "BSD" + } + } + ], + "purl": "pkg:npm/regenerator-transform@0.10.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/regenerator-transform" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-preset-es2015@6.24.1", + "author": "Sebastian McKenzie", + "name": "babel-preset-es2015", + "version": "6.24.1", + "description": "Babel preset for all es2015 plugins.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5dfc14a86d51cba478de6e167e86febc76c854122a4e0fd3258e129e4bb5888cde1fb9949f01c0f156a09aff9941b3f0852f0782c750bf2dbc3f2de4e73a6815" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-preset-es2015@6.24.1", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-preset-es2015" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chai@3.5.0", + "author": "Jake Luer", + "name": "chai", + "version": "3.5.0", + "description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6db729dd87c7094ccc3af2aab33b5ccdead5801292b048a30b248d9471db5f7546d67b24bea8f3e517eca35806c03eb0ea8395dde23ad292ae30e579315ee9dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/chai@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "http://chaijs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/chai/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chaijs/chai.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deep-eql@0.1.3", + "author": "Jake Luer", + "name": "deep-eql", + "version": "0.1.3", + "description": "Improved deep equality testing for Node.js and the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9078843237966e3bedd49390d887aff578a3b49b462624518d9851c6002a5fd4294bd679a557fa7880d81b976a491b18176f87daaa8e9413e33900210cc9573" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/deep-eql@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/deep-eql#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/deep-eql/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/deep-eql.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type-detect@0.1.1", + "author": "Jake Luer", + "name": "type-detect", + "version": "0.1.1", + "description": "Improved typeof detection for node.js and the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1faff9881f57653bec7b4e570ccbe6c80ea28fb30ffbd2d5727875bbf3b828423866a9a65ed74bb02ee8ee6caf6af4b83a162868d4a50a0d8cf467b93b839fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/type-detect@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/type-detect#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/type-detect/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/type-detect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/type-detect@1.0.0", + "author": "Jake Luer", + "name": "type-detect", + "version": "1.0.0", + "description": "Improved typeof detection for node.js and the browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1faff9881f57653bec7b4e570ccbe6c80ea28fb30ffbd2d5727875bbf3b828423866a9a65ed74bb02ee8ee6caf6af4b83a162868d4a50a0d8cf467b93b839fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/type-detect@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chaijs/type-detect#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chaijs/type-detect/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/chaijs/type-detect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb-base@3.0.1", + "author": "Jake Teton-Landis", + "name": "eslint-config-airbnb-base", + "version": "3.0.1", + "description": "Airbnb's base JS ESLint config, following our styleguide", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef519df7492c2511e11ab16fec0f53c20be9386787a28245a6f0e868e6883e4ca94e82065f239e88cc16c6b8fc2cdc93eb0387a9908c6a5326334128eedd95f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/eslint-config-airbnb-base@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/airbnb/javascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/airbnb/javascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/airbnb/javascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-import-resolver-node@0.2.3", + "author": "Ben Mosher", + "name": "eslint-import-resolver-node", + "version": "0.2.3", + "description": "Node default behavior import resolution plugin for eslint-plugin-import.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d049f4c34dcd455327f548b29fc6113c32af5a3c425a4b25504846353746c75e51bcf25843e95b3a5aab94d236bc402ce290d82b87ff1cdd936c39a4e533f48b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/eslint-import-resolver-node@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/benmosher/eslint-plugin-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benmosher/eslint-plugin-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/benmosher/eslint-plugin-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-import@1.16.0", + "author": "Ben Mosher", + "name": "eslint-plugin-import", + "version": "1.16.0", + "description": "Import with sanity.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8587e2dc55da33c58f2dfe12d5c8a487faf82319ceeb3ae165b106cf66faeb410945bbb18290d2e60902b988065a0db1c61dab06e22be0fbe1bdeffb737d64a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ben Mosher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/eslint-plugin-import@1.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/benmosher/eslint-plugin-import" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benmosher/eslint-plugin-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/benmosher/eslint-plugin-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/doctrine@1.3.0", + "name": "doctrine", + "version": "1.3.0", + "description": "JSDoc parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "96c1b246e62be3f3c8074b718be172db138c23674669382e09aa2dcc51a4559b8a479bac29f71158814a34cdd036b53b861ffec366f04d6f997973cae65f2e56" + } + ], + "purl": "pkg:npm/doctrine@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eslint/doctrine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eslint/doctrine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/eslint/doctrine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.cond@4.5.2", + "author": "John-David Dalton", + "name": "lodash.cond", + "version": "4.5.2", + "description": "The lodash method `_.cond` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4568d487319bcc6fca7c3c24fa89ea757bebb0dbf8ec6f5408c26048a6a53d34aa250cb1661428a611bd8e0a8b7fed794c86d9e5aff21b660a396b07ddd572f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.cond@4.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.endswith@4.2.1", + "author": "John-David Dalton", + "name": "lodash.endswith", + "version": "4.2.1", + "description": "The lodash method `_.endsWith` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5e81c927d43da887250ab7b387ae9ec6a4954d9e776313e169cd42d0d298d0bdb8dd92d7561a6295b61e707526161f3412640ece4866c8a34fc0bb04de5f5a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.endswith@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.findindex@4.6.0", + "author": "John-David Dalton", + "name": "lodash.findindex", + "version": "4.6.0", + "description": "The lodash method `_.findIndex` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5eafa09ccfab04493ddb1c5b54ac2156935e2713c71d2ff4685b54510d5d41c6a377aac9ac4f9e8bd788e17dcb40aa154f55c749c38311c44695a002be255bf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.findindex@4.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pkg-up@1.0.0", + "author": "Sindre Sorhus", + "name": "pkg-up", + "version": "1.0.0", + "description": "Find the closest package.json file", + "hashes": [ + { + "alg": "SHA-512", + "content": "2fe77ce3d77d973db48674695275814573a1fa602fca04292bb52e5e2c3ee906cfc0be79455825f86f95f77eb00b3b3fe89edf8f4a6f80b63d3a49d9f85a9a34" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pkg-up@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pkg-up#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pkg-up/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pkg-up.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-jasmine@1.9.0", + "author": "Tom Vincent", + "name": "eslint-plugin-jasmine", + "version": "1.9.0", + "description": "ESLint rules for Jasmine", + "hashes": [ + { + "alg": "SHA-512", + "content": "709a3917e7e3497708b7717f7d96357ad569fa2ae339430acb68d494c26cfd883dcb83602af9609f9c6ecb37a98294da8cd766f731e78cad91b65475c898a4a9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/eslint-plugin-jasmine@1.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tlvince/eslint-plugin-jasmine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tlvince/eslint-plugin-jasmine/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tlvince/eslint-plugin-jasmine.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-retry-allowed@1.2.0", + "author": "Vsevolod Strukchinsky", + "name": "is-retry-allowed", + "version": "1.2.0", + "description": "Is retry allowed for Error?", + "hashes": [ + { + "alg": "SHA-512", + "content": "4546d478ac2f9b75c6d9561a9a124bd71164b608ef3f32f41eaf02fbacab588b300f2dc12171aa0b187191cdf437d8ea2b7d75815535dfb2bc122e79ff354946" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-retry-allowed@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/is-retry-allowed#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/is-retry-allowed/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/is-retry-allowed.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nock@8.2.2", + "author": "Pedro Teixeira", + "name": "nock", + "version": "8.2.2", + "description": "HTTP Server mocking for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "103825fd680d4340b5059665012390910744ead0165c98bc41096e82accdeb824992f67b20b8a366e1b6e2be2f082ef239f9e6e872a99dee40184c4b1827815a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/nock@8.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/node-nock/nock#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/node-nock/nock/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/node-nock/nock.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash@4.9.0", + "author": "John-David Dalton", + "name": "lodash", + "version": "4.9.0", + "description": "Lodash modular utilities.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash@4.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/propagate@0.4.0", + "author": "Pedro Teixeira", + "name": "propagate", + "version": "0.4.0", + "description": "Propagate events", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ffaea08925a20f60e6e22d299a0ec21fe0f180ef2fa99206051e6c285d0c8e1e20c348ed580b1733b4d89106657811985ae1021b203def4081e4a8abb99345e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License\n\nCopyright (c) 2015 Pedro Teixeira\n\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n\n\n" + } + } + } + ], + "purl": "pkg:npm/propagate@0.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pgte/propagate#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/pgte/propagate/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/pgte/propagate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bloater@0.2.6", + "author": "Stefan Hering", + "name": "bloater", + "version": "0.2.6", + "description": "For when your node_modules folder is not large enough", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e49ec4e77a6d468dd291fb4077c803b92c2a4f3002de8eb4e9ada3ef08edeebe42e473c850360e9fba7369a6ec2365be690e01c2199e331c96d69eb6bcbbe4b" + } + ], + "licenses": [ + { + "license": { + "name": "GPL", + "text": { + "content": " GNU GENERAL PUBLIC LICENSE\r\n Version 2, June 1991\r\n\r\n Copyright (C) 1989, 1991 Free Software Foundation, Inc.,\r\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n Everyone is permitted to copy and distribute verbatim copies\r\n of this license document, but changing it is not allowed.\r\n\r\n Preamble\r\n\r\n The licenses for most software are designed to take away your\r\nfreedom to share and change it. By contrast, the GNU General Public\r\nLicense is intended to guarantee your freedom to share and change free\r\nsoftware--to make sure the software is free for all its users. This\r\nGeneral Public License applies to most of the Free Software\r\nFoundation's software and to any other program whose authors commit to\r\nusing it. (Some other Free Software Foundation software is covered by\r\nthe GNU Lesser General Public License instead.) You can apply it to\r\nyour programs, too.\r\n\r\n When we speak of free software, we are referring to freedom, not\r\nprice. Our General Public Licenses are designed to make sure that you\r\nhave the freedom to distribute copies of free software (and charge for\r\nthis service if you wish), that you receive source code or can get it\r\nif you want it, that you can change the software or use pieces of it\r\nin new free programs; and that you know you can do these things.\r\n\r\n To protect your rights, we need to make restrictions that forbid\r\nanyone to deny you these rights or to ask you to surrender the rights.\r\nThese restrictions translate to certain responsibilities for you if you\r\ndistribute copies of the software, or if you modify it.\r\n\r\n For example, if you distribute copies of such a program, whether\r\ngratis or for a fee, you must give the recipients all the rights that\r\nyou have. You must make sure that they, too, receive or can get the\r\nsource code. And you must show them these terms so they know their\r\nrights.\r\n\r\n We protect your rights with two steps: (1) copyright the software, and\r\n(2) offer you this license which gives you legal permission to copy,\r\ndistribute and/or modify the software.\r\n\r\n Also, for each author's protection and ours, we want to make certain\r\nthat everyone understands that there is no warranty for this free\r\nsoftware. If the software is modified by someone else and passed on, we\r\nwant its recipients to know that what they have is not the original, so\r\nthat any problems introduced by others will not reflect on the original\r\nauthors' reputations.\r\n\r\n Finally, any free program is threatened constantly by software\r\npatents. We wish to avoid the danger that redistributors of a free\r\nprogram will individually obtain patent licenses, in effect making the\r\nprogram proprietary. To prevent this, we have made it clear that any\r\npatent must be licensed for everyone's free use or not licensed at all.\r\n\r\n The precise terms and conditions for copying, distribution and\r\nmodification follow.\r\n\r\n GNU GENERAL PUBLIC LICENSE\r\n TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\r\n\r\n 0. This License applies to any program or other work which contains\r\na notice placed by the copyright holder saying it may be distributed\r\nunder the terms of this General Public License. The \"Program\", below,\r\nrefers to any such program or work, and a \"work based on the Program\"\r\nmeans either the Program or any derivative work under copyright law:\r\nthat is to say, a work containing the Program or a portion of it,\r\neither verbatim or with modifications and/or translated into another\r\nlanguage. (Hereinafter, translation is included without limitation in\r\nthe term \"modification\".) Each licensee is addressed as \"you\".\r\n\r\nActivities other than copying, distribution and modification are not\r\ncovered by this License; they are outside its scope. The act of\r\nrunning the Program is not restricted, and the output from the Program\r\nis covered only if its contents constitute a work based on the\r\nProgram (independent of having been made by running the Program).\r\nWhether that is true depends on what the Program does.\r\n\r\n 1. You may copy and distribute verbatim copies of the Program's\r\nsource code as you receive it, in any medium, provided that you\r\nconspicuously and appropriately publish on each copy an appropriate\r\ncopyright notice and disclaimer of warranty; keep intact all the\r\nnotices that refer to this License and to the absence of any warranty;\r\nand give any other recipients of the Program a copy of this License\r\nalong with the Program.\r\n\r\nYou may charge a fee for the physical act of transferring a copy, and\r\nyou may at your option offer warranty protection in exchange for a fee.\r\n\r\n 2. You may modify your copy or copies of the Program or any portion\r\nof it, thus forming a work based on the Program, and copy and\r\ndistribute such modifications or work under the terms of Section 1\r\nabove, provided that you also meet all of these conditions:\r\n\r\n a) You must cause the modified files to carry prominent notices\r\n stating that you changed the files and the date of any change.\r\n\r\n b) You must cause any work that you distribute or publish, that in\r\n whole or in part contains or is derived from the Program or any\r\n part thereof, to be licensed as a whole at no charge to all third\r\n parties under the terms of this License.\r\n\r\n c) If the modified program normally reads commands interactively\r\n when run, you must cause it, when started running for such\r\n interactive use in the most ordinary way, to print or display an\r\n announcement including an appropriate copyright notice and a\r\n notice that there is no warranty (or else, saying that you provide\r\n a warranty) and that users may redistribute the program under\r\n these conditions, and telling the user how to view a copy of this\r\n License. (Exception: if the Program itself is interactive but\r\n does not normally print such an announcement, your work based on\r\n the Program is not required to print an announcement.)\r\n\r\nThese requirements apply to the modified work as a whole. If\r\nidentifiable sections of that work are not derived from the Program,\r\nand can be reasonably considered independent and separate works in\r\nthemselves, then this License, and its terms, do not apply to those\r\nsections when you distribute them as separate works. But when you\r\ndistribute the same sections as part of a whole which is a work based\r\non the Program, the distribution of the whole must be on the terms of\r\nthis License, whose permissions for other licensees extend to the\r\nentire whole, and thus to each and every part regardless of who wrote it.\r\n\r\nThus, it is not the intent of this section to claim rights or contest\r\nyour rights to work written entirely by you; rather, the intent is to\r\nexercise the right to control the distribution of derivative or\r\ncollective works based on the Program.\r\n\r\nIn addition, mere aggregation of another work not based on the Program\r\nwith the Program (or with a work based on the Program) on a volume of\r\na storage or distribution medium does not bring the other work under\r\nthe scope of this License.\r\n\r\n 3. You may copy and distribute the Program (or a work based on it,\r\nunder Section 2) in object code or executable form under the terms of\r\nSections 1 and 2 above provided that you also do one of the following:\r\n\r\n a) Accompany it with the complete corresponding machine-readable\r\n source code, which must be distributed under the terms of Sections\r\n 1 and 2 above on a medium customarily used for software interchange; or,\r\n\r\n b) Accompany it with a written offer, valid for at least three\r\n years, to give any third party, for a charge no more than your\r\n cost of physically performing source distribution, a complete\r\n machine-readable copy of the corresponding source code, to be\r\n distributed under the terms of Sections 1 and 2 above on a medium\r\n customarily used for software interchange; or,\r\n\r\n c) Accompany it with the information you received as to the offer\r\n to distribute corresponding source code. (This alternative is\r\n allowed only for noncommercial distribution and only if you\r\n received the program in object code or executable form with such\r\n an offer, in accord with Subsection b above.)\r\n\r\nThe source code for a work means the preferred form of the work for\r\nmaking modifications to it. For an executable work, complete source\r\ncode means all the source code for all modules it contains, plus any\r\nassociated interface definition files, plus the scripts used to\r\ncontrol compilation and installation of the executable. However, as a\r\nspecial exception, the source code distributed need not include\r\nanything that is normally distributed (in either source or binary\r\nform) with the major components (compiler, kernel, and so on) of the\r\noperating system on which the executable runs, unless that component\r\nitself accompanies the executable.\r\n\r\nIf distribution of executable or object code is made by offering\r\naccess to copy from a designated place, then offering equivalent\r\naccess to copy the source code from the same place counts as\r\ndistribution of the source code, even though third parties are not\r\ncompelled to copy the source along with the object code.\r\n\r\n 4. You may not copy, modify, sublicense, or distribute the Program\r\nexcept as expressly provided under this License. Any attempt\r\notherwise to copy, modify, sublicense or distribute the Program is\r\nvoid, and will automatically terminate your rights under this License.\r\nHowever, parties who have received copies, or rights, from you under\r\nthis License will not have their licenses terminated so long as such\r\nparties remain in full compliance.\r\n\r\n 5. You are not required to accept this License, since you have not\r\nsigned it. However, nothing else grants you permission to modify or\r\ndistribute the Program or its derivative works. These actions are\r\nprohibited by law if you do not accept this License. Therefore, by\r\nmodifying or distributing the Program (or any work based on the\r\nProgram), you indicate your acceptance of this License to do so, and\r\nall its terms and conditions for copying, distributing or modifying\r\nthe Program or works based on it.\r\n\r\n 6. Each time you redistribute the Program (or any work based on the\r\nProgram), the recipient automatically receives a license from the\r\noriginal licensor to copy, distribute or modify the Program subject to\r\nthese terms and conditions. You may not impose any further\r\nrestrictions on the recipients' exercise of the rights granted herein.\r\nYou are not responsible for enforcing compliance by third parties to\r\nthis License.\r\n\r\n 7. If, as a consequence of a court judgment or allegation of patent\r\ninfringement or for any other reason (not limited to patent issues),\r\nconditions are imposed on you (whether by court order, agreement or\r\notherwise) that contradict the conditions of this License, they do not\r\nexcuse you from the conditions of this License. If you cannot\r\ndistribute so as to satisfy simultaneously your obligations under this\r\nLicense and any other pertinent obligations, then as a consequence you\r\nmay not distribute the Program at all. For example, if a patent\r\nlicense would not permit royalty-free redistribution of the Program by\r\nall those who receive copies directly or indirectly through you, then\r\nthe only way you could satisfy both it and this License would be to\r\nrefrain entirely from distribution of the Program.\r\n\r\nIf any portion of this section is held invalid or unenforceable under\r\nany particular circumstance, the balance of the section is intended to\r\napply and the section as a whole is intended to apply in other\r\ncircumstances.\r\n\r\nIt is not the purpose of this section to induce you to infringe any\r\npatents or other property right claims or to contest validity of any\r\nsuch claims; this section has the sole purpose of protecting the\r\nintegrity of the free software distribution system, which is\r\nimplemented by public license practices. Many people have made\r\ngenerous contributions to the wide range of software distributed\r\nthrough that system in reliance on consistent application of that\r\nsystem; it is up to the author/donor to decide if he or she is willing\r\nto distribute software through any other system and a licensee cannot\r\nimpose that choice.\r\n\r\nThis section is intended to make thoroughly clear what is believed to\r\nbe a consequence of the rest of this License.\r\n\r\n 8. If the distribution and/or use of the Program is restricted in\r\ncertain countries either by patents or by copyrighted interfaces, the\r\noriginal copyright holder who places the Program under this License\r\nmay add an explicit geographical distribution limitation excluding\r\nthose countries, so that distribution is permitted only in or among\r\ncountries not thus excluded. In such case, this License incorporates\r\nthe limitation as if written in the body of this License.\r\n\r\n 9. The Free Software Foundation may publish revised and/or new versions\r\nof the General Public License from time to time. Such new versions will\r\nbe similar in spirit to the present version, but may differ in detail to\r\naddress new problems or concerns.\r\n\r\nEach version is given a distinguishing version number. If the Program\r\nspecifies a version number of this License which applies to it and \"any\r\nlater version\", you have the option of following the terms and conditions\r\neither of that version or of any later version published by the Free\r\nSoftware Foundation. If the Program does not specify a version number of\r\nthis License, you may choose any version ever published by the Free Software\r\nFoundation.\r\n\r\n 10. If you wish to incorporate parts of the Program into other free\r\nprograms whose distribution conditions are different, write to the author\r\nto ask for permission. For software which is copyrighted by the Free\r\nSoftware Foundation, write to the Free Software Foundation; we sometimes\r\nmake exceptions for this. Our decision will be guided by the two goals\r\nof preserving the free status of all derivatives of our free software and\r\nof promoting the sharing and reuse of software generally.\r\n\r\n NO WARRANTY\r\n\r\n 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\r\nFOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN\r\nOTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\r\nPROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\r\nOR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS\r\nTO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE\r\nPROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\r\nREPAIR OR CORRECTION.\r\n\r\n 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\r\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\r\nREDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\r\nINCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\r\nOUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\r\nTO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\r\nYOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\r\nPROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\r\nPOSSIBILITY OF SUCH DAMAGES.\r\n\r\n END OF TERMS AND CONDITIONS\r\n\r\n How to Apply These Terms to Your New Programs\r\n\r\n If you develop a new program, and you want it to be of the greatest\r\npossible use to the public, the best way to achieve this is to make it\r\nfree software which everyone can redistribute and change under these terms.\r\n\r\n To do so, attach the following notices to the program. It is safest\r\nto attach them to the start of each source file to most effectively\r\nconvey the exclusion of warranty; and each file should have at least\r\nthe \"copyright\" line and a pointer to where the full notice is found.\r\n\r\n \r\n Copyright (C) \r\n\r\n This program is free software; you can redistribute it and/or modify\r\n it under the terms of the GNU General Public License as published by\r\n the Free Software Foundation; either version 2 of the License, or\r\n (at your option) any later version.\r\n\r\n This program is distributed in the hope that it will be useful,\r\n but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\n GNU General Public License for more details.\r\n\r\n You should have received a copy of the GNU General Public License along\r\n with this program; if not, write to the Free Software Foundation, Inc.,\r\n 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r\n\r\nAlso add information on how to contact you by electronic and paper mail.\r\n\r\nIf the program is interactive, make it output a short notice like this\r\nwhen it starts in an interactive mode:\r\n\r\n Gnomovision version 69, Copyright (C) year name of author\r\n Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\r\n This is free software, and you are welcome to redistribute it\r\n under certain conditions; type `show c' for details.\r\n\r\nThe hypothetical commands `show w' and `show c' should show the appropriate\r\nparts of the General Public License. Of course, the commands you use may\r\nbe called something other than `show w' and `show c'; they could even be\r\nmouse-clicks or menu items--whatever suits your program.\r\n\r\nYou should also get your employer (if you work as a programmer) or your\r\nschool, if any, to sign a \"copyright disclaimer\" for the program, if\r\nnecessary. Here is a sample; alter the names:\r\n\r\n Yoyodyne, Inc., hereby disclaims all copyright interest in the program\r\n `Gnomovision' (which makes passes at compilers) written by James Hacker.\r\n\r\n , 1 April 1989\r\n Ty Coon, President of Vice\r\n\r\nThis General Public License does not permit incorporating your program into\r\nproprietary programs. If your program is a subroutine library, you may\r\nconsider it more useful to permit linking proprietary applications with the\r\nlibrary. If this is what you want to do, use the GNU Lesser General\r\nPublic License instead of this License.\r\n" + } + } + } + ], + "purl": "pkg:npm/bloater@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefan-hering/npm-fizzbuzz#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefan-hering/npm-fizzbuzz/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefan-hering/npm-fizzbuzz.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular-devkit/build-angular@0.6.8", + "author": "Angular Authors", + "group": "@angular-devkit", + "name": "build-angular", + "version": "0.6.8", + "description": "Angular Webpack Build Facade", + "hashes": [ + { + "alg": "SHA-512", + "content": "546a98024f23a484ab6b3d941dfb03adedbbd0d394995d024d2670da9f6c9b983f5c8af99be2077ad159cf7829a00afdf887f66854ecf11b77b06742473c01a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40angular-devkit/build-angular@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular-devkit/architect@0.6.8", + "author": "Angular Authors", + "group": "@angular-devkit", + "name": "architect", + "version": "0.6.8", + "description": "Angular Build Facade", + "hashes": [ + { + "alg": "SHA-512", + "content": "64a4e6ff30bad6263d2011ce1002a8312cd9a6f8649affb53bf1c7ce91c4b91e79d630b3bbabd2c8298c63d67b18171c72c70257e863792330805ac545caa593" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40angular-devkit/architect@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular-devkit/core@0.6.8", + "author": "Angular Authors", + "group": "@angular-devkit", + "name": "core", + "version": "0.6.8", + "description": "Angular DevKit - Core Utility Library", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae421ad4e495593b7883d95e2d22bf3eca8e8f71d96c32876d98ea96c9727d56b703209e8ae985a0e81588e55795880f5f71c70db139b87db89f2516483f2ec3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40angular-devkit/core@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ajv@6.4.0", + "author": "Evgeny Poberezkin", + "name": "ajv", + "version": "6.4.0", + "description": "Another JSON Schema Validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "023af821c317abfd9098c904992bf1a9f2cde731a627dda01d701e397ab539e9281f6adf0cdb20743a0bd9fed06910b2ec6fc4e93a71055751b8dada333b461f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017 Evgeny Poberezkin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/ajv@6.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/epoberezkin/ajv" + }, + { + "type": "issue-tracker", + "url": "https://github.com/epoberezkin/ajv/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/epoberezkin/ajv.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uri-js@3.0.2", + "author": "Gary Court", + "name": "uri-js", + "version": "3.0.2", + "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause" + } + } + ], + "purl": "pkg:npm/uri-js@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/garycourt/uri-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/garycourt/uri-js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/garycourt/uri-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rxjs@6.6.7", + "author": "Ben Lesh", + "name": "rxjs", + "version": "6.6.7", + "description": "Reactive Extensions for modern JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "c71da2b672f9b016ea79e89580d3d5b904359c2f09a7659f349857587984956f589aba52f5456737384fdc41f71c5a9ec4ee53969f0685863e58472a71532f1b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n \n" + } + } + } + ], + "purl": "pkg:npm/rxjs@6.6.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ReactiveX/RxJS" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ReactiveX/RxJS/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactivex/rxjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular-devkit/build-optimizer@0.6.8", + "author": "Angular Authors", + "group": "@angular-devkit", + "name": "build-optimizer", + "version": "0.6.8", + "description": "Angular Build Optimizer", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1fe6cc906efdee34fa7801091f45e71f9e9f0013c92f7df6df622f8514f67a386afb7b9f53d5f1b093af9981bdaa405420f073b6b73588feeca0b4b22a99b9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40angular-devkit/build-optimizer@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ngtools/webpack@6.0.8", + "author": "Angular Authors", + "group": "@ngtools", + "name": "webpack", + "version": "6.0.8", + "description": "Webpack plugin that AoT compiles your Angular components and modules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e8ac6a5377cd882dbc94c20e0941e928bc715a63048c9596a7e1fef1fac777fb65a0c8bdd9d7e65b55218abd7656292fe6015c7b78b9118a4cc992e0b81601f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ngtools/webpack@6.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/autoprefixer@8.6.5", + "author": "Andrey Sitnik", + "name": "autoprefixer", + "version": "8.6.5", + "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", + "hashes": [ + { + "alg": "SHA-512", + "content": "58a13123f7921a018091600efb031574539b655ee141e9f9e14a43d640824cddedbe52f75b58cbe3e94f3ff33b330a0fed0e111f32ad3b7250e07c5811c77ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/autoprefixer@8.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/autoprefixer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/autoprefixer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/autoprefixer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserslist@3.2.8", + "author": "Andrey Sitnik", + "name": "browserslist", + "version": "3.2.8", + "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8725b9431366d7551633b837adbffc00787389c8ef7bfbdc310b571d0adcb380db92a333b24428a22da091d5fef500deba9507555418a95a6eb757e6bb6cf3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserslist@3.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserslist/browserslist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserslist/browserslist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/browserslist/browserslist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caniuse-lite@1.0.30001373", + "author": "Ben Briggs", + "name": "caniuse-lite", + "version": "1.0.30001373", + "description": "A smaller version of caniuse-db, with only the essentials!", + "hashes": [ + { + "alg": "SHA-512", + "content": "a49600ac61eb3e9dd352a4331584663ff9702658fc4426d57b719ddde25090057c4800ba6f5f574bd06332f45dbda4bc44c91a4cdf198681cfe92d72f33cf011" + } + ], + "licenses": [ + { + "license": { + "id": "CC-BY-4.0", + "text": { + "content": "Attribution 4.0 International\n\n=======================================================================\n\nCreative Commons Corporation (\"Creative Commons\") is not a law firm and\ndoes not provide legal services or legal advice. Distribution of\nCreative Commons public licenses does not create a lawyer-client or\nother relationship. Creative Commons makes its licenses and related\ninformation available on an \"as-is\" basis. Creative Commons gives no\nwarranties regarding its licenses, any material licensed under their\nterms and conditions, or any related information. Creative Commons\ndisclaims all liability for damages resulting from their use to the\nfullest extent possible.\n\nUsing Creative Commons Public Licenses\n\nCreative Commons public licenses provide a standard set of terms and\nconditions that creators and other rights holders may use to share\noriginal works of authorship and other material subject to copyright\nand certain other rights specified in the public license below. The\nfollowing considerations are for informational purposes only, are not\nexhaustive, and do not form part of our licenses.\n\n Considerations for licensors: Our public licenses are\n intended for use by those authorized to give the public\n permission to use material in ways otherwise restricted by\n copyright and certain other rights. Our licenses are\n irrevocable. Licensors should read and understand the terms\n and conditions of the license they choose before applying it.\n Licensors should also secure all rights necessary before\n applying our licenses so that the public can reuse the\n material as expected. Licensors should clearly mark any\n material not subject to the license. This includes other CC-\n licensed material, or material used under an exception or\n limitation to copyright. More considerations for licensors:\n\twiki.creativecommons.org/Considerations_for_licensors\n\n Considerations for the public: By using one of our public\n licenses, a licensor grants the public permission to use the\n licensed material under specified terms and conditions. If\n the licensor's permission is not necessary for any reason--for\n example, because of any applicable exception or limitation to\n copyright--then that use is not regulated by the license. Our\n licenses grant only permissions under copyright and certain\n other rights that a licensor has authority to grant. Use of\n the licensed material may still be restricted for other\n reasons, including because others have copyright or other\n rights in the material. A licensor may make special requests,\n such as asking that all changes be marked or described.\n Although not required by our licenses, you are encouraged to\n respect those requests where reasonable. More_considerations\n for the public: \n\twiki.creativecommons.org/Considerations_for_licensees\n\n=======================================================================\n\nCreative Commons Attribution 4.0 International Public License\n\nBy exercising the Licensed Rights (defined below), You accept and agree\nto be bound by the terms and conditions of this Creative Commons\nAttribution 4.0 International Public License (\"Public License\"). To the\nextent this Public License may be interpreted as a contract, You are\ngranted the Licensed Rights in consideration of Your acceptance of\nthese terms and conditions, and the Licensor grants You such rights in\nconsideration of benefits the Licensor receives from making the\nLicensed Material available under these terms and conditions.\n\n\nSection 1 -- Definitions.\n\n a. Adapted Material means material subject to Copyright and Similar\n Rights that is derived from or based upon the Licensed Material\n and in which the Licensed Material is translated, altered,\n arranged, transformed, or otherwise modified in a manner requiring\n permission under the Copyright and Similar Rights held by the\n Licensor. For purposes of this Public License, where the Licensed\n Material is a musical work, performance, or sound recording,\n Adapted Material is always produced where the Licensed Material is\n synched in timed relation with a moving image.\n\n b. Adapter's License means the license You apply to Your Copyright\n and Similar Rights in Your contributions to Adapted Material in\n accordance with the terms and conditions of this Public License.\n\n c. Copyright and Similar Rights means copyright and/or similar rights\n closely related to copyright including, without limitation,\n performance, broadcast, sound recording, and Sui Generis Database\n Rights, without regard to how the rights are labeled or\n categorized. For purposes of this Public License, the rights\n specified in Section 2(b)(1)-(2) are not Copyright and Similar\n Rights.\n\n d. Effective Technological Measures means those measures that, in the\n absence of proper authority, may not be circumvented under laws\n fulfilling obligations under Article 11 of the WIPO Copyright\n Treaty adopted on December 20, 1996, and/or similar international\n agreements.\n\n e. Exceptions and Limitations means fair use, fair dealing, and/or\n any other exception or limitation to Copyright and Similar Rights\n that applies to Your use of the Licensed Material.\n\n f. Licensed Material means the artistic or literary work, database,\n or other material to which the Licensor applied this Public\n License.\n\n g. Licensed Rights means the rights granted to You subject to the\n terms and conditions of this Public License, which are limited to\n all Copyright and Similar Rights that apply to Your use of the\n Licensed Material and that the Licensor has authority to license.\n\n h. Licensor means the individual(s) or entity(ies) granting rights\n under this Public License.\n\n i. Share means to provide material to the public by any means or\n process that requires permission under the Licensed Rights, such\n as reproduction, public display, public performance, distribution,\n dissemination, communication, or importation, and to make material\n available to the public including in ways that members of the\n public may access the material from a place and at a time\n individually chosen by them.\n\n j. Sui Generis Database Rights means rights other than copyright\n resulting from Directive 96/9/EC of the European Parliament and of\n the Council of 11 March 1996 on the legal protection of databases,\n as amended and/or succeeded, as well as other essentially\n equivalent rights anywhere in the world.\n\n k. You means the individual or entity exercising the Licensed Rights\n under this Public License. Your has a corresponding meaning.\n\n\nSection 2 -- Scope.\n\n a. License grant.\n\n 1. Subject to the terms and conditions of this Public License,\n the Licensor hereby grants You a worldwide, royalty-free,\n non-sublicensable, non-exclusive, irrevocable license to\n exercise the Licensed Rights in the Licensed Material to:\n\n a. reproduce and Share the Licensed Material, in whole or\n in part; and\n\n b. produce, reproduce, and Share Adapted Material.\n\n 2. Exceptions and Limitations. For the avoidance of doubt, where\n Exceptions and Limitations apply to Your use, this Public\n License does not apply, and You do not need to comply with\n its terms and conditions.\n\n 3. Term. The term of this Public License is specified in Section\n 6(a).\n\n 4. Media and formats; technical modifications allowed. The\n Licensor authorizes You to exercise the Licensed Rights in\n all media and formats whether now known or hereafter created,\n and to make technical modifications necessary to do so. The\n Licensor waives and/or agrees not to assert any right or\n authority to forbid You from making technical modifications\n necessary to exercise the Licensed Rights, including\n technical modifications necessary to circumvent Effective\n Technological Measures. For purposes of this Public License,\n simply making modifications authorized by this Section 2(a)\n (4) never produces Adapted Material.\n\n 5. Downstream recipients.\n\n a. Offer from the Licensor -- Licensed Material. Every\n recipient of the Licensed Material automatically\n receives an offer from the Licensor to exercise the\n Licensed Rights under the terms and conditions of this\n Public License.\n\n b. No downstream restrictions. You may not offer or impose\n any additional or different terms or conditions on, or\n apply any Effective Technological Measures to, the\n Licensed Material if doing so restricts exercise of the\n Licensed Rights by any recipient of the Licensed\n Material.\n\n 6. No endorsement. Nothing in this Public License constitutes or\n may be construed as permission to assert or imply that You\n are, or that Your use of the Licensed Material is, connected\n with, or sponsored, endorsed, or granted official status by,\n the Licensor or others designated to receive attribution as\n provided in Section 3(a)(1)(A)(i).\n\n b. Other rights.\n\n 1. Moral rights, such as the right of integrity, are not\n licensed under this Public License, nor are publicity,\n privacy, and/or other similar personality rights; however, to\n the extent possible, the Licensor waives and/or agrees not to\n assert any such rights held by the Licensor to the limited\n extent necessary to allow You to exercise the Licensed\n Rights, but not otherwise.\n\n 2. Patent and trademark rights are not licensed under this\n Public License.\n\n 3. To the extent possible, the Licensor waives any right to\n collect royalties from You for the exercise of the Licensed\n Rights, whether directly or through a collecting society\n under any voluntary or waivable statutory or compulsory\n licensing scheme. In all other cases the Licensor expressly\n reserves any right to collect such royalties.\n\n\nSection 3 -- License Conditions.\n\nYour exercise of the Licensed Rights is expressly made subject to the\nfollowing conditions.\n\n a. Attribution.\n\n 1. If You Share the Licensed Material (including in modified\n form), You must:\n\n a. retain the following if it is supplied by the Licensor\n with the Licensed Material:\n\n i. identification of the creator(s) of the Licensed\n Material and any others designated to receive\n attribution, in any reasonable manner requested by\n the Licensor (including by pseudonym if\n designated);\n\n ii. a copyright notice;\n\n iii. a notice that refers to this Public License;\n\n iv. a notice that refers to the disclaimer of\n warranties;\n\n v. a URI or hyperlink to the Licensed Material to the\n extent reasonably practicable;\n\n b. indicate if You modified the Licensed Material and\n retain an indication of any previous modifications; and\n\n c. indicate the Licensed Material is licensed under this\n Public License, and include the text of, or the URI or\n hyperlink to, this Public License.\n\n 2. You may satisfy the conditions in Section 3(a)(1) in any\n reasonable manner based on the medium, means, and context in\n which You Share the Licensed Material. For example, it may be\n reasonable to satisfy the conditions by providing a URI or\n hyperlink to a resource that includes the required\n information.\n\n 3. If requested by the Licensor, You must remove any of the\n information required by Section 3(a)(1)(A) to the extent\n reasonably practicable.\n\n 4. If You Share Adapted Material You produce, the Adapter's\n License You apply must not prevent recipients of the Adapted\n Material from complying with this Public License.\n\n\nSection 4 -- Sui Generis Database Rights.\n\nWhere the Licensed Rights include Sui Generis Database Rights that\napply to Your use of the Licensed Material:\n\n a. for the avoidance of doubt, Section 2(a)(1) grants You the right\n to extract, reuse, reproduce, and Share all or a substantial\n portion of the contents of the database;\n\n b. if You include all or a substantial portion of the database\n contents in a database in which You have Sui Generis Database\n Rights, then the database in which You have Sui Generis Database\n Rights (but not its individual contents) is Adapted Material; and\n\n c. You must comply with the conditions in Section 3(a) if You Share\n all or a substantial portion of the contents of the database.\n\nFor the avoidance of doubt, this Section 4 supplements and does not\nreplace Your obligations under this Public License where the Licensed\nRights include other Copyright and Similar Rights.\n\n\nSection 5 -- Disclaimer of Warranties and Limitation of Liability.\n\n a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE\n EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS\n AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF\n ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,\n IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,\n WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR\n PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,\n ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT\n KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT\n ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.\n\n b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE\n TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,\n NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,\n INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,\n COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR\n USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN\n ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR\n DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR\n IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.\n\n c. The disclaimer of warranties and limitation of liability provided\n above shall be interpreted in a manner that, to the extent\n possible, most closely approximates an absolute disclaimer and\n waiver of all liability.\n\n\nSection 6 -- Term and Termination.\n\n a. This Public License applies for the term of the Copyright and\n Similar Rights licensed here. However, if You fail to comply with\n this Public License, then Your rights under this Public License\n terminate automatically.\n\n b. Where Your right to use the Licensed Material has terminated under\n Section 6(a), it reinstates:\n\n 1. automatically as of the date the violation is cured, provided\n it is cured within 30 days of Your discovery of the\n violation; or\n\n 2. upon express reinstatement by the Licensor.\n\n For the avoidance of doubt, this Section 6(b) does not affect any\n right the Licensor may have to seek remedies for Your violations\n of this Public License.\n\n c. For the avoidance of doubt, the Licensor may also offer the\n Licensed Material under separate terms or conditions or stop\n distributing the Licensed Material at any time; however, doing so\n will not terminate this Public License.\n\n d. Sections 1, 5, 6, 7, and 8 survive termination of this Public\n License.\n\n\nSection 7 -- Other Terms and Conditions.\n\n a. The Licensor shall not be bound by any additional or different\n terms or conditions communicated by You unless expressly agreed.\n\n b. Any arrangements, understandings, or agreements regarding the\n Licensed Material not stated herein are separate from and\n independent of the terms and conditions of this Public License.\n\n\nSection 8 -- Interpretation.\n\n a. For the avoidance of doubt, this Public License does not, and\n shall not be interpreted to, reduce, limit, restrict, or impose\n conditions on any use of the Licensed Material that could lawfully\n be made without permission under this Public License.\n\n b. To the extent possible, if any provision of this Public License is\n deemed unenforceable, it shall be automatically reformed to the\n minimum extent necessary to make it enforceable. If the provision\n cannot be reformed, it shall be severed from this Public License\n without affecting the enforceability of the remaining terms and\n conditions.\n\n c. No term or condition of this Public License will be waived and no\n failure to comply consented to unless expressly agreed to by the\n Licensor.\n\n d. Nothing in this Public License constitutes or may be interpreted\n as a limitation upon, or waiver of, any privileges and immunities\n that apply to the Licensor or You, including from the legal\n processes of any jurisdiction or authority.\n\n\n=======================================================================\n\nCreative Commons is not a party to its public\nlicenses. Notwithstanding, Creative Commons may elect to apply one of\nits public licenses to material it publishes and in those instances\nwill be considered the “Licensor.” The text of the Creative Commons\npublic licenses is dedicated to the public domain under the CC0 Public\nDomain Dedication. Except for the limited purpose of indicating that\nmaterial is shared under a Creative Commons public license or as\notherwise permitted by the Creative Commons policies published at\ncreativecommons.org/policies, Creative Commons does not authorize the\nuse of the trademark \"Creative Commons\" or any other trademark or logo\nof Creative Commons without its prior written consent including,\nwithout limitation, in connection with any unauthorized modifications\nto any of its public licenses or any other arrangements,\nunderstandings, or agreements concerning use of licensed material. For\nthe avoidance of doubt, this paragraph does not form part of the\npublic licenses.\n\nCreative Commons may be contacted at creativecommons.org.\n" + } + } + } + ], + "purl": "pkg:npm/caniuse-lite@1.0.30001373", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserslist/caniuse-lite#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserslist/caniuse-lite/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/browserslist/caniuse-lite.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cache-loader@1.2.5", + "author": "Tobias Koppers @sokra", + "name": "cache-loader", + "version": "1.2.5", + "description": "Caches the result of following loaders on disk.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a758a110e243b762b78315dec0b55463b49066362aa1fd7f6154345ebb40b8aa6f20b069b24a4c2e5ad75cf8de4efafab9173c4bd66219737d0dc97081ee8fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cache-loader@1.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/cache-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/cache-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/cache-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chalk@2.2.2", + "name": "chalk", + "version": "2.2.2", + "description": "Terminal string styling done right", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/chalk@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chalk/chalk#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chalk/chalk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chalk/chalk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/circular-dependency-plugin@5.2.2", + "name": "circular-dependency-plugin", + "version": "5.2.2", + "description": "Detect modules with circular dependencies when bundling with webpack.", + "hashes": [ + { + "alg": "SHA-512", + "content": "837f0af429b9591c25687ea0d3707d384cffd2a462cc8fb623b9fe1b3f8be43c572403c089642fc2560d9b55758e476952ff796ce7bf0129b6bdf8bf1b9eb48d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2016, Aaron Ackerman \n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/circular-dependency-plugin@5.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aackerman/circular-dependency-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aackerman/circular-dependency-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aackerman/circular-dependency-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/istanbul-instrumenter-loader@3.0.1", + "author": "Kir Belevich", + "name": "istanbul-instrumenter-loader", + "version": "3.0.1", + "description": "Istanbul instrumenter loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "c20b1bc89d9462fb4ddfdb2c0adbcd53614a1d3371d934159ecc3745593f5967512ce1e131e4dfb7e8aa9d614e2e67b5e30de67f6844812c5159aae8f74d15e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/istanbul-instrumenter-loader@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/istanbul-instrumenter-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/istanbul-instrumenter-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/istanbul-instrumenter-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/schema-utils@0.3.0", + "author": "Webpack Contrib", + "name": "schema-utils", + "version": "0.3.0", + "description": "Webpack Schema Validation Utilities", + "hashes": [ + { + "alg": "SHA-512", + "content": "bff8b053ac2fc062bc1db53dca2dff9e11b33f4c864ae8503332fac9289e735152ad96439219b89e83925b3acd168fe311cf92258ea3453c2ec1b49724f0d49d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/schema-utils@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/schema-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/schema-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/schema-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/karma-source-map-support@1.4.0", + "author": "Tim Schaub", + "name": "karma-source-map-support", + "version": "1.4.0", + "description": "Karma plugin for inline sourcemap support", + "hashes": [ + { + "alg": "SHA-512", + "content": "46c0440a77063b5eca0282426178eff9c908cfe222f4d0a2fbd7a793eaeae970bcd5ecd891be3f44713a0935dd03b20e26aa05df071a2df546d023e613971ae8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2018 Tim Schaub\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/karma-source-map-support@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tschaub/karma-source-map-support" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tschaub/karma-source-map-support/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tschaub/karma-source-map-support.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/less@3.13.1", + "author": "Alexis Sellier", + "name": "less", + "version": "3.13.1", + "description": "Leaner CSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b00356905c652fa7e3f95dd66c9543a184b9c29522c88d6bc986677e56089be41148afd94c3654309b050d3a35d3845fc0d31f8c09860f79611f79688b4674f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "purl": "pkg:npm/less@3.13.1", + "externalReferences": [ + { + "type": "website", + "url": "http://lesscss.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/less/less.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/less/less.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/copy-anything@2.0.6", + "author": "Luca Ban - Mesqueeb", + "name": "copy-anything", + "version": "2.0.6", + "description": "An optimised way to copy'ing an object. A small and simple integration", + "hashes": [ + { + "alg": "SHA-512", + "content": "d63db41994ecbca364738058dcda4c38cf2db7ffffc18dc5a48ce8cd33853b67dfb99715eb59e88c75d5288cb758cfbb0030b2e455617596076037604d4d3227" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Luca Ban - Mesqueeb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/copy-anything@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mesqueeb/copy-anything#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mesqueeb/copy-anything/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mesqueeb/copy-anything.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-what@3.14.1", + "author": "Luca Ban - Mesqueeb", + "name": "is-what", + "version": "3.14.1", + "description": "JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0dc60a64f7bf779f34acedb03a250246788b9105084068d186efb93361080c92b203fa54ba4a52b4ecae4b6a9b6c703952688807f863c5cdff9def9155c68cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Luca Ban - Mesqueeb\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-what@3.14.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mesqueeb/is-what#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mesqueeb/is-what/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mesqueeb/is-what.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/less-loader@4.1.0", + "author": "Johannes Ewald @jhnns", + "name": "less-loader", + "version": "4.1.0", + "description": "Less loader for webpack. Compiles Less to CSS.", + "hashes": [ + { + "alg": "SHA-512", + "content": "28d4ec80213db4c38cef4f9d771a7dcb2b7d887aa0992b34c9365ce571f95a8fa0f3445644860da84e7c4092a6ff232e779c1912fcf9d2e8110eecd5224c9a86" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/less-loader@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/less-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/less-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/less-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone@2.1.2", + "author": "Paul Vorbach", + "name": "clone", + "version": "2.1.2", + "description": "deep cloning of objects and arrays", + "hashes": [ + { + "alg": "SHA-512", + "content": "83ada7dca6fd72ccde66f9af054a8ffddb04243ffef34a4303cbbc2aa1e700fad59d0d897bdad557aa29c6486e5827759029f680e89bcc32b10ad06f0f7ab990" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright © 2011-2015 Paul Vorbach \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the “Software”), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pvorb/node-clone#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pvorb/node-clone/issues" + }, + { + "type": "vcs", + "url": "git://github.com/pvorb/node-clone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/license-webpack-plugin@1.5.0", + "author": "S K", + "name": "license-webpack-plugin", + "version": "1.5.0", + "description": "Outputs licenses from 3rd party libraries to a file", + "hashes": [ + { + "alg": "SHA-512", + "content": "39ffc7efdad9aa6d9a7a0e119cff52312875f6a90a7a6a0b4f955a255e7cb87e40c5e61611c060185b3be7724427f1e6e813ef4157c896bae3a01c188fca7b4f" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2016, S K (xz64)\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/license-webpack-plugin@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xz64/license-webpack-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xz64/license-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/xz64/license-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ejs@2.7.4", + "author": "Matthew Eernisse", + "name": "ejs", + "version": "2.7.4", + "description": "Embedded JavaScript templates", + "hashes": [ + { + "alg": "SHA-512", + "content": "eef9aeca1e7e92e53224a78f8507d140185757909ef919da79e400acabb51003292f759b80cb79586eae419a4456f6124acc4c5d128e7b0b4393d45a4ca5d194" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/ejs@2.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mde/ejs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mde/ejs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mde/ejs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mini-css-extract-plugin@0.4.5", + "author": "Tobias Koppers @sokra", + "name": "mini-css-extract-plugin", + "version": "0.4.5", + "description": "extracts CSS into separate files", + "hashes": [ + { + "alg": "SHA-512", + "content": "76a05a9cd7e4b67a768702f6620b95f4987dd4f157ee0bbb9d12ece131ac6c07c01ba58eb65ca7151633c03c2699e49be6e2301e8f67c75b5ad1feef019569db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mini-css-extract-plugin@0.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/mini-css-extract-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/mini-css-extract-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/mini-css-extract-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse5@4.0.0", + "author": "Ivan Nikulin", + "name": "parse5", + "version": "4.0.0", + "description": "HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae03bd660e4b2cb91f245f44e820a65e5484e1455c7a5a32b3c26b16a09c1e5a02deeb1dfe4242c8f0f01f648e9738b1da3df168ff6c517ddef3e92f92e95e00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013-2016 Ivan Nikulin (ifaaan@gmail.com, https://github.com/inikulin)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse5@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inikulin/parse5" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inikulin/parse5/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inikulin/parse5.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-import@11.1.0", + "author": "Maxime Thirouin", + "name": "postcss-import", + "version": "11.1.0", + "description": "PostCSS plugin to import CSS files", + "hashes": [ + { + "alg": "SHA-512", + "content": "e65df6ee223be4f3a89e3c645e07510944be025cc0741c78a4ebcc1214ca4c28dbd69f0811e551f72c7770f6e637b2c85892db7e7217c408680788e90f473f0b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Maxime Thirouin, Jason Campbell & Kevin Mårtensson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-import@11.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-import#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-import/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-import.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-loader@2.1.6", + "author": "Andrey Sitnik", + "name": "postcss-loader", + "version": "2.1.6", + "description": "PostCSS loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b27d8feaec72556c7fb4230a7d15008df98157be4cc6e3093a6733267927c7a26bf6f416dcff7b65787d82171ed4a480058b2775ad940c0c202b359e3215421" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright 2017 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-loader@2.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-load-config@2.1.2", + "author": "Michael Ciniawky", + "name": "postcss-load-config", + "version": "2.1.2", + "description": "Autoload Config for PostCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddfa427e75e8f5077f3bfabf5cbe1c254851b2a8d50f6575561cb7c0e11c2c4e64cf44c6b5d0d7252a224dd1f87bce3b2a985b11a738f846521f8a8b4582202f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "License (MIT)\n\nCopyright (c) Michael Ciniawsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-load-config@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-load-config#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-load-config/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-load-config.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@5.2.1", + "author": "David Clark", + "name": "cosmiconfig", + "version": "5.2.1", + "description": "Find and load configuration from a package.json property, rc file, or CommonJS module", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a23572f00053d81f2db95e64cfa5a7d8be7dc22c0909f052ecb1cabbf0c41dd4a874394e98ce19f8795d8c545e06f561106685841a5b5ab5d47e9ed18f325e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 David Clark\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/cosmiconfig@5.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davidtheclark/cosmiconfig#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davidtheclark/cosmiconfig/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davidtheclark/cosmiconfig.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-url@7.3.2", + "author": "Maxime Thirouin", + "name": "postcss-url", + "version": "7.3.2", + "description": "PostCSS plugin to rebase or inline on url().", + "hashes": [ + { + "alg": "SHA-512", + "content": "40c579980fa909865071410f4249a8afdbdc3d0d8c4fe229baef2a762d605716cd888884ac419fb7e7a7cb56a4d7da802e806471c4b90076826820f387b6fd30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Maxime Thirouin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-url@7.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/postcss-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xxhashjs@0.2.2", + "author": "Pierre Curto", + "name": "xxhashjs", + "version": "0.2.2", + "description": "xxHash in Javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "0244ee22e553113d76b69b15210a3e654e9ffea0e62ae4547236aa47e388be6f9a081b19f798bb515639589f5332c49a6740c0d96c6867869cbb4b0f1fe38a03" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xxhashjs@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pierrec/js-xxhash" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pierrec/js-xxhash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pierrec/js-xxhash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cuint@0.2.2", + "author": "Pierre Curto", + "name": "cuint", + "version": "0.2.2", + "description": "Unsigned integers for Javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "778655a425b7d5e5b008c7b5613deeafb9940e74d76e0c32cda2f7db40eb7114f8e6b7e363192de5058bae6389fbf504008dbe7d080a7bf7c28d1f25e13a5183" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cuint@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/pierrec/js-cuint" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pierrec/js-cuint/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pierrec/js-cuint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/raw-loader@0.5.1", + "author": "Tobias Koppers @sokra", + "name": "raw-loader", + "version": "0.5.1", + "description": "raw loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1fee81a82ee698012701e151abd2dcdeb6c6254bc1091faaa74c27d0fd65446bcf6100b4384507c22ade710b23d028f0d46d550020fd50b310307c08e50e9ed" + } + ], + "purl": "pkg:npm/raw-loader@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/raw-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/raw-loader/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/webpack/raw-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-loader@7.3.1", + "author": "J. Tangelder", + "name": "sass-loader", + "version": "7.3.1", + "description": "Sass loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "2688b20f4d18a35a3ad4e26ca0fdacda46f5f4bd7f636a77405702756745ea8a2604629562e672a8759e99105f436b8662c93e087dde0a0b9735fa63ce572968" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/sass-loader@7.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/sass-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/sass-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/sass-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clone-deep@4.0.1", + "author": "Jon Schlinkert", + "name": "clone-deep", + "version": "4.0.1", + "description": "Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives.", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa9d5da3a36995865970b53e4d0f77f80ef7e60d6435c9c7ef941b0b5a25a4a26985edfa0aa9231442b43f2152a19948dffd633b92a70e0eb8c5dc168841ffcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clone-deep@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/clone-deep" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/clone-deep/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/clone-deep.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shallow-clone@3.0.1", + "author": "Jon Schlinkert", + "name": "shallow-clone", + "version": "3.0.1", + "description": "Creates a shallow clone of any JavaScript value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "275cdd5c2932e4698d9ee6ae11244e56edf53104a72e862f972127ea3d99b64e90e441c5221c6432161cbfabee0f39765c4ce846bf39e90c3332058cfd399983" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/shallow-clone@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/shallow-clone" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/shallow-clone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/shallow-clone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/silent-error@1.1.1", + "author": "Stefan Penner", + "name": "silent-error", + "version": "1.1.1", + "description": "stackless unless otherwise requested error", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f88842b235c838bfafe3a5bddcd3f8b21f61b59f350d97b1a9aad9ff9872092bd4bfabfecc09fa0ee2bc153a83b9f6a3c521cd21547bcc6e2389d0d76dc4a2b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright 2018 Stefan Penner \n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/silent-error@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stefanpenner/silent-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stefanpenner/silent-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/stefanpenner/silent-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stats-webpack-plugin@0.6.2", + "author": "Daniel Perez Alvarez", + "name": "stats-webpack-plugin", + "version": "0.6.2", + "description": "Write the stats of a build to a file.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b2a9e48884f8c1b10150b28c1888138392caec3c4b58cbea7ed3ceab5e751b5a179b4768cb33e0bcb630db1a10edd66908b03303b4132c4eabc5f27c5a3c6e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Daniel Perez Alvarez\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stats-webpack-plugin@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/unindented/stats-webpack-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/unindented/stats-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git://github.com/unindented/stats-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/style-loader@0.21.0", + "author": "Tobias Koppers @sokra", + "name": "style-loader", + "version": "0.21.0", + "description": "style loader module for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "81d9e3046a6f54c294c7265950074bbc74601d259ba59ce1ae19eb1a0536874e908049e9b67f35332def95f5dfddf2ee7dd5a0e0a61fc0c3197a156462c831a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/style-loader@0.21.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/style-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/style-loader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/style-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stylus@0.54.8", + "author": "TJ Holowaychuk", + "name": "stylus", + "version": "0.54.8", + "description": "Robust, expressive, and feature-rich CSS superset", + "hashes": [ + { + "alg": "SHA-512", + "content": "bebe783abe0167ba4969fa369a97f465cc00ef8ae9b980996f1ac706c1fc91b7173b049fbc1170b117e918ee4e0f97e11b91c30855bbdfb3ca69ac08ecea8402" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) Automattic \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stylus@0.54.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/stylus/stylus" + }, + { + "type": "issue-tracker", + "url": "https://github.com/stylus/stylus/issues" + }, + { + "type": "vcs", + "url": "git://github.com/stylus/stylus.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-parse@2.0.0", + "author": "TJ Holowaychuk", + "name": "css-parse", + "version": "2.0.0", + "description": "CSS parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "50d2058a4d918126e24f0216d48b05c175a7eafb3e6d876af372ca4d23acc7b34947b58823d7717b09072e5b5f4cb569a68500a47574d75f1ae1165123d14bc0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/css-parse@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reworkcss/css-parse#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reworkcss/css-parse/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reworkcss/css-parse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css@2.2.4", + "author": "TJ Holowaychuk", + "name": "css", + "version": "2.2.4", + "description": "CSS parser / stringifier", + "hashes": [ + { + "alg": "SHA-512", + "content": "a149e3996a72d27888df1fe63cbf1d54423597b3271b7f871f244f1dff981526cafacbce857a6648e703511521d9a382825da0af3ace3edd671cbb8254550b2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reworkcss/css#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reworkcss/css/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reworkcss/css.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mkdirp@1.0.4", + "name": "mkdirp", + "version": "1.0.4", + "description": "Recursively mkdir, like `mkdir -p`", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ffa9f1107c396a45dd86410ab3f982d0039ad5c0a41e4030b9febddc80f8fcb10a3ac2b34d268f2528cecb0edf77300de4f7c0d19d2f127933ffd8aad1c027" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright James Halliday (mail@substack.net) and Isaac Z. Schlueter (i@izs.me)\n\nThis project is free software released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mkdirp@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/node-mkdirp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/node-mkdirp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/isaacs/node-mkdirp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map@0.7.4", + "author": "Nick Fitzgerald", + "name": "source-map", + "version": "0.7.4", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dbae624e31449d115c482af75c273402fa74217bc1546504d7432ebe23be6c90d827dcea10d03640f189c56bb829f2daad2f728f7f5926a344790e802979219" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "\nCopyright (c) 2009-2011, Mozilla Foundation and contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the names of the Mozilla Foundation nor the names of project\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map@0.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mozilla/source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mozilla/source-map/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mozilla/source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stylus-loader@3.0.2", + "author": "Kyle Robinson Young", + "name": "stylus-loader", + "version": "3.0.2", + "description": "Stylus loader for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "f95a263dd67a6b4adaccffb38a78abeb5c99829c3635f963792b1d505e6426e133968de4857858d7d167ea5f10433d464491ad302a3c9c6e42d3878fc95ed250" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2018 Kyle Robinson Young\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stylus-loader@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shama/stylus-loader#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shama/stylus-loader/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/shama/stylus-loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/when@3.6.4", + "name": "when", + "version": "3.6.4", + "description": "A lightweight Promises/A+ and when() implementation, plus other async goodies.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7755543fd17deb0ebae2528834c19e12559d8616f9b02fad85733ec9d646537667684d3d5afe85692fa6a4cf79ef491c0ecff131f7172414cbb0c747105618f5" + } + ], + "purl": "pkg:npm/when@3.6.4", + "externalReferences": [ + { + "type": "website", + "url": "http://cujojs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/cujojs/when/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/cujojs/when.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglifyjs-webpack-plugin@1.3.0", + "author": "webpack Contrib Team", + "name": "uglifyjs-webpack-plugin", + "version": "1.3.0", + "description": "UglifyJS plugin for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cd336d07316ebb9311d134265dbcbca2c04d524fa5b263901ef931b9e55f35369bcdc09f7e578fe9a382c703547d69f57f5abab37de746d94242936facc22af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uglifyjs-webpack-plugin@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@1.9.1", + "author": "Eric Ferraiuolo", + "name": "serialize-javascript", + "version": "1.9.1", + "description": "Serialize JavaScript to a superset of JSON that includes regular expressions and functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d156ffe78589ea4e6ff2c496374f52d28adaf879ebf9c5f8d2bf45d7bd274fe99291ac65b6813fed1dceac8741494bf53a88a86c7d50a1641b0a700ef9ef09d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright 2014 Yahoo! Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n * Neither the name of the Yahoo! Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL YAHOO! INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/serialize-javascript@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yahoo/serialize-javascript" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yahoo/serialize-javascript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yahoo/serialize-javascript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uglify-es@3.3.9", + "author": "Mihai Bazon", + "name": "uglify-es", + "version": "3.3.9", + "description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+", + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "UglifyJS is released under the BSD license:\n\nCopyright 2012-2013 (c) Mihai Bazon \n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions\nare met:\n\n * Redistributions of source code must retain the above\n copyright notice, this list of conditions and the following\n disclaimer.\n\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials\n provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\nOR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR\nTORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF\nTHE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/uglify-es@3.3.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mishoo/UglifyJS2/tree/harmony" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mishoo/UglifyJS2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mishoo/UglifyJS2.git#harmony" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/commander@2.13.0", + "author": "TJ Holowaychuk", + "name": "commander", + "version": "2.13.0", + "description": "the complete solution for node.js command-line programs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/commander@2.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/commander.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/commander.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/commander.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack@4.8.3", + "author": "Tobias Koppers @sokra", + "name": "webpack", + "version": "4.8.3", + "description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b0ecc74820ebff9e4ccfcde7b8a3411dbc2b8f9b14fdf3ebd5a48bf0b5cc1c17543848348da7ddafc1c29ce1111eecd22d1fd7f54b8adaf45b90ef2b9867c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n'Software'), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/webpack@4.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/ast@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "ast", + "version": "1.4.3", + "description": "AST utils for webassemblyjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ba9e96213dc4c70d87bd9e5b0a6bd0b2581c858bc563f07a2f70082d98c01065439ccce65b43c0a7c0c60a602e47119cf1104fa86348df424e1c565237279f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/ast@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-wasm-bytecode", + "version": "1.4.3", + "description": "WASM's Bytecode constants", + "hashes": [ + { + "alg": "SHA-512", + "content": "23b6d2f8768ed0ad3b228f3daa126ffb3d508a94e9bab6a61b05120e4c0469f89c6d2bc270bf76094644b60ca47cdb64e706f40a82d0c169665d3c066cd65479" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wast-parser@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wast-parser", + "version": "1.4.3", + "description": "WebAssembly text format parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "4210ac433a95d02a6c124458c93cd00e294235467ee63f767fe837e5b1c736a4b6d85a69353cb03457c73eaf195997d80a06de72d73e3e88210fec5fcd5161d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-parser@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.4.3", + "author": "Mauro Bringolf", + "group": "@webassemblyjs", + "name": "floating-point-hex-parser", + "version": "1.4.3", + "description": "A function to parse floating point hexadecimal strings as defined by the WebAssembly specification", + "hashes": [ + { + "alg": "SHA-512", + "content": "df34e4485b30c1938f3479f390ff4e36ae1b8c949e29531cb9a8465ee6eb94b9993fc7e64c8279f1d5bb87fcce5568854ae1b67a6dff1c7dc194237bc32bbd47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\r\n\r\nCopyright (c) 2017 Mauro Bringolf\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-code-frame@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-code-frame", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4580712d36c65061a2ab182b6c8ecc018a5e3c429d5a82bcd170fcc26d09680a86936ce5cb27d2119aa4feb8465b7a7a542cb44d16e833dc8e2ec35f2124cf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-code-frame@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wast-printer@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wast-printer", + "version": "1.4.3", + "description": "WebAssembly text format printer", + "hashes": [ + { + "alg": "SHA-512", + "content": "1205e4e1a9dff232a6b9926ca83f2acb96f3d9fac442106f66bbaff9bab03682d6508b63352172824f32c0bdc94c4cfd2adc539409aa4d736b743d5df60343b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-printer@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/long@3.2.0", + "author": "Daniel Wirtz", + "name": "long", + "version": "3.2.0", + "description": "A Long class for representing a 64-bit two's-complement integer value.", + "hashes": [ + { + "alg": "SHA-512", + "content": "658bcf3ce32a5303e80ec6c9691d748902589ccb998514ef1d897ad84acb2045fb460165ce2481514bebb773957dce3b4251c7a733d960fd7b83716fee878992" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\r\n Apache License\r\n Version 2.0, January 2004\r\n http://www.apache.org/licenses/\r\n\r\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n 1. Definitions.\r\n\r\n \"License\" shall mean the terms and conditions for use, reproduction,\r\n and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n \"Licensor\" shall mean the copyright owner or entity authorized by\r\n the copyright owner that is granting the License.\r\n\r\n \"Legal Entity\" shall mean the union of the acting entity and all\r\n other entities that control, are controlled by, or are under common\r\n control with that entity. For the purposes of this definition,\r\n \"control\" means (i) the power, direct or indirect, to cause the\r\n direction or management of such entity, whether by contract or\r\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\r\n outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\r\n exercising permissions granted by this License.\r\n\r\n \"Source\" form shall mean the preferred form for making modifications,\r\n including but not limited to software source code, documentation\r\n source, and configuration files.\r\n\r\n \"Object\" form shall mean any form resulting from mechanical\r\n transformation or translation of a Source form, including but\r\n not limited to compiled object code, generated documentation,\r\n and conversions to other media types.\r\n\r\n \"Work\" shall mean the work of authorship, whether in Source or\r\n Object form, made available under the License, as indicated by a\r\n copyright notice that is included in or attached to the work\r\n (an example is provided in the Appendix below).\r\n\r\n \"Derivative Works\" shall mean any work, whether in Source or Object\r\n form, that is based on (or derived from) the Work and for which the\r\n editorial revisions, annotations, elaborations, or other modifications\r\n represent, as a whole, an original work of authorship. For the purposes\r\n of this License, Derivative Works shall not include works that remain\r\n separable from, or merely link (or bind by name) to the interfaces of,\r\n the Work and Derivative Works thereof.\r\n\r\n \"Contribution\" shall mean any work of authorship, including\r\n the original version of the Work and any modifications or additions\r\n to that Work or Derivative Works thereof, that is intentionally\r\n submitted to Licensor for inclusion in the Work by the copyright owner\r\n or by an individual or Legal Entity authorized to submit on behalf of\r\n the copyright owner. For the purposes of this definition, \"submitted\"\r\n means any form of electronic, verbal, or written communication sent\r\n to the Licensor or its representatives, including but not limited to\r\n communication on electronic mailing lists, source code control systems,\r\n and issue tracking systems that are managed by, or on behalf of, the\r\n Licensor for the purpose of discussing and improving the Work, but\r\n excluding communication that is conspicuously marked or otherwise\r\n designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\r\n on behalf of whom a Contribution has been received by Licensor and\r\n subsequently incorporated within the Work.\r\n\r\n 2. Grant of Copyright License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n copyright license to reproduce, prepare Derivative Works of,\r\n publicly display, publicly perform, sublicense, and distribute the\r\n Work and such Derivative Works in Source or Object form.\r\n\r\n 3. Grant of Patent License. Subject to the terms and conditions of\r\n this License, each Contributor hereby grants to You a perpetual,\r\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r\n (except as stated in this section) patent license to make, have made,\r\n use, offer to sell, sell, import, and otherwise transfer the Work,\r\n where such license applies only to those patent claims licensable\r\n by such Contributor that are necessarily infringed by their\r\n Contribution(s) alone or by combination of their Contribution(s)\r\n with the Work to which such Contribution(s) was submitted. If You\r\n institute patent litigation against any entity (including a\r\n cross-claim or counterclaim in a lawsuit) alleging that the Work\r\n or a Contribution incorporated within the Work constitutes direct\r\n or contributory patent infringement, then any patent licenses\r\n granted to You under this License for that Work shall terminate\r\n as of the date such litigation is filed.\r\n\r\n 4. Redistribution. You may reproduce and distribute copies of the\r\n Work or Derivative Works thereof in any medium, with or without\r\n modifications, and in Source or Object form, provided that You\r\n meet the following conditions:\r\n\r\n (a) You must give any other recipients of the Work or\r\n Derivative Works a copy of this License; and\r\n\r\n (b) You must cause any modified files to carry prominent notices\r\n stating that You changed the files; and\r\n\r\n (c) You must retain, in the Source form of any Derivative Works\r\n that You distribute, all copyright, patent, trademark, and\r\n attribution notices from the Source form of the Work,\r\n excluding those notices that do not pertain to any part of\r\n the Derivative Works; and\r\n\r\n (d) If the Work includes a \"NOTICE\" text file as part of its\r\n distribution, then any Derivative Works that You distribute must\r\n include a readable copy of the attribution notices contained\r\n within such NOTICE file, excluding those notices that do not\r\n pertain to any part of the Derivative Works, in at least one\r\n of the following places: within a NOTICE text file distributed\r\n as part of the Derivative Works; within the Source form or\r\n documentation, if provided along with the Derivative Works; or,\r\n within a display generated by the Derivative Works, if and\r\n wherever such third-party notices normally appear. The contents\r\n of the NOTICE file are for informational purposes only and\r\n do not modify the License. You may add Your own attribution\r\n notices within Derivative Works that You distribute, alongside\r\n or as an addendum to the NOTICE text from the Work, provided\r\n that such additional attribution notices cannot be construed\r\n as modifying the License.\r\n\r\n You may add Your own copyright statement to Your modifications and\r\n may provide additional or different license terms and conditions\r\n for use, reproduction, or distribution of Your modifications, or\r\n for any such Derivative Works as a whole, provided Your use,\r\n reproduction, and distribution of the Work otherwise complies with\r\n the conditions stated in this License.\r\n\r\n 5. Submission of Contributions. Unless You explicitly state otherwise,\r\n any Contribution intentionally submitted for inclusion in the Work\r\n by You to the Licensor shall be under the terms and conditions of\r\n this License, without any additional terms or conditions.\r\n Notwithstanding the above, nothing herein shall supersede or modify\r\n the terms of any separate license agreement you may have executed\r\n with Licensor regarding such Contributions.\r\n\r\n 6. Trademarks. This License does not grant permission to use the trade\r\n names, trademarks, service marks, or product names of the Licensor,\r\n except as required for reasonable and customary use in describing the\r\n origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n 7. Disclaimer of Warranty. Unless required by applicable law or\r\n agreed to in writing, Licensor provides the Work (and each\r\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r\n implied, including, without limitation, any warranties or conditions\r\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r\n PARTICULAR PURPOSE. You are solely responsible for determining the\r\n appropriateness of using or redistributing the Work and assume any\r\n risks associated with Your exercise of permissions under this License.\r\n\r\n 8. Limitation of Liability. In no event and under no legal theory,\r\n whether in tort (including negligence), contract, or otherwise,\r\n unless required by applicable law (such as deliberate and grossly\r\n negligent acts) or agreed to in writing, shall any Contributor be\r\n liable to You for damages, including any direct, indirect, special,\r\n incidental, or consequential damages of any character arising as a\r\n result of this License or out of the use or inability to use the\r\n Work (including but not limited to damages for loss of goodwill,\r\n work stoppage, computer failure or malfunction, or any and all\r\n other commercial damages or losses), even if such Contributor\r\n has been advised of the possibility of such damages.\r\n\r\n 9. Accepting Warranty or Additional Liability. While redistributing\r\n the Work or Derivative Works thereof, You may choose to offer,\r\n and charge a fee for, acceptance of support, warranty, indemnity,\r\n or other liability obligations and/or rights consistent with this\r\n License. However, in accepting such obligations, You may act only\r\n on Your own behalf and on Your sole responsibility, not on behalf\r\n of any other Contributor, and only if You agree to indemnify,\r\n defend, and hold each Contributor harmless for any liability\r\n incurred by, or claims asserted against, such Contributor by reason\r\n of your accepting any such warranty or additional liability.\r\n\r\n END OF TERMS AND CONDITIONS\r\n\r\n APPENDIX: How to apply the Apache License to your work.\r\n\r\n To apply the Apache License to your work, attach the following\r\n boilerplate notice, with the fields enclosed by brackets \"[]\"\r\n replaced with your own identifying information. (Don't include\r\n the brackets!) The text should be enclosed in the appropriate\r\n comment syntax for the file format. We also recommend that a\r\n file or class name and description of purpose be included on the\r\n same \"printed page\" as the copyright notice for easier\r\n identification within third-party archives.\r\n\r\n Copyright [yyyy] [name of copyright owner]\r\n\r\n Licensed under the Apache License, Version 2.0 (the \"License\");\r\n you may not use this file except in compliance with the License.\r\n You may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n Unless required by applicable law or agreed to in writing, software\r\n distributed under the License is distributed on an \"AS IS\" BASIS,\r\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n See the License for the specific language governing permissions and\r\n limitations under the License.\r\n" + } + } + } + ], + "purl": "pkg:npm/long@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dcodeIO/long.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dcodeIO/long.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/dcodeIO/long.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-fsm@1.4.3", + "author": "Mauro Bringolf", + "group": "@webassemblyjs", + "name": "helper-fsm", + "version": "1.4.3", + "description": "FSM implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "248358efa53eef4d8845fede3ee90eb74dfb4709ad1f9f491ef71d59b4d3c878b5f22c6643eb8eb8d85c7427101d3aae0c01f7e7f420165a7763d2aab7226c09" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-fsm@1.4.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/webassemblyjs@1.4.3", + "author": "Sven Sauleau", + "name": "webassemblyjs", + "version": "1.4.3", + "description": "WebAssembly interpreter", + "hashes": [ + { + "alg": "SHA-512", + "content": "e25395d4bbfaa25cf43c9903190129f361de9a9027d78edee815e28d60f3cfd83bff69d279b54ff46560eb6173e5902ce799b1ab5dc60345cbcaf63c5e4c838e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/webassemblyjs@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/validation@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "validation", + "version": "1.4.3", + "description": "Module AST validations", + "hashes": [ + { + "alg": "SHA-512", + "content": "47ead130a7e177d9aad2b8f69a153d03d34a23697f470eb9bc8633cf896e8bb79328f702bb597b899362e1bf467a7f03e364aa87f28689a40d93fc794e7fe205" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/validation@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-parser@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-parser", + "version": "1.4.3", + "description": "WebAssembly binary format parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "297063b65c00dc156e911ff25870bd185f920b305c823d1aee59bdda44ce69ae1c6e369369ae3b6c28d7c3a717e12190a649dc07d3d4da11c6615cb223bc0546" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-parser@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/leb128@1.4.3", + "group": "@webassemblyjs", + "name": "leb128", + "version": "1.4.3", + "description": "LEB128 decoder and encoder", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2ed0b24b48fcee443587c1daacad38589fe5aa30556a6c8da5b4dac7bd9664cc53cef17399d07150e5e55ce2363f4cd1e05dc9f0ac78ce3613c662eb9ffff29" + } + ], + "purl": "pkg:npm/%40webassemblyjs/leb128@1.4.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/leb@0.3.0", + "author": "Dan Bornstein", + "name": "leb", + "version": "0.3.0", + "description": "LEB128 utilities for Node", + "hashes": [ + { + "alg": "SHA-512", + "content": "0daf39250a6b271eb3b88960952b36e38dffc99db9f426f1c393d3c903fda0f7e658e37cbe657a143ec7700f1006f6ffc665173d1792fe701bfb4f2898188743" + } + ], + "purl": "pkg:npm/leb@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Obvious/leb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Obvious/leb/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Obvious/leb.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-edit@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-edit", + "version": "1.4.3", + "description": "> Rewrite a WASM binary", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab3bb0527efbd4f57afcb8a5aa45dc4b4a3325801e63f38a6d72165376bc81ec6ea9be837b6a78c9afdb681787e4943658975f856852bd26eef3a5627a7b6da7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-edit@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-buffer@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-buffer", + "version": "1.4.3", + "description": "Buffer manipulation utility", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bcf8a64787e455f0c52fa1246db93d6c157b24167586f6f6c3cb8ece6b5ebac57fa5d1d0f9b04449db5839fed707f18a3de5ef48377bbb25cdcd6e19d471293" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-buffer@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "helper-wasm-section", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a74c9e78efe1dabdf43f28e7257f715d247a10372f25dfe30bac5afcfc60e25a5f70d8bb254b303a9a834e8650e791cc3158570e287fcaa91acb01d618bc6ac9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-gen@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-gen", + "version": "1.4.3", + "description": "WebAssembly binary format printer", + "hashes": [ + { + "alg": "SHA-512", + "content": "791dfde13f1d1d97e92c9ed4fd9e69152bf19752fadc975111e6e9bfd818739e732e1cf37493c0bb18c1613e17a9ebd4756ebba94dacd27340de406e3491db69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-gen@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40webassemblyjs/wasm-opt@1.4.3", + "author": "Sven Sauleau", + "group": "@webassemblyjs", + "name": "wasm-opt", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6a7e9ec721b8a883b802f5c66a785f3d2b8046f18a8157c389c2158126cbecadca78419d378673d5bd701d5746ed70f29a9153695b8f6541040e1c2f96762b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-opt@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/xtuc/webassemblyjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/xtuc/webassemblyjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/xtuc/webassemblyjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/chrome-trace-event@0.1.3", + "author": "Trent Mick, Sam Saccone", + "name": "chrome-trace-event", + "version": "0.1.3", + "description": "A library to create a trace of your node app per Google's Trace Event format.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b239ddc991ebad68aee1163b0241e08e7f3419f00cd994b352464b57f26ce7d2dd9a1e890d385fd12526387539deb16edab571c5f0b3277d1491c7dc87719bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "# This is the MIT license\n\nCopyright (c) 2015 Joyent Inc. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/chrome-trace-event@0.1.3", + "externalReferences": [ + { + "type": "vcs", + "url": "github.com:samccone/chrome-trace-event" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/enhanced-resolve@4.5.0", + "author": "Tobias Koppers @sokra", + "name": "enhanced-resolve", + "version": "4.5.0", + "description": "Offers a async require.resolve function. It's highly configurable.", + "hashes": [ + { + "alg": "SHA-512", + "content": "65a02ec75ae282ad5eda742bced1e7e21dae82fa73671b3ae2a9de35a87ef0c87f2b4091a8914973e5285e752cabed725fe0e64053cf755a9ba0a009f3d7b423" + } + ], + "purl": "pkg:npm/enhanced-resolve@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/webpack/enhanced-resolve" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/enhanced-resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/webpack/enhanced-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/memory-fs@0.5.0", + "author": "Tobias Koppers @sokra", + "name": "memory-fs", + "version": "0.5.0", + "description": "A simple in-memory filesystem. Holds data in a javascript object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d6b824a0b145e0d715746a3873d0b1cb88620d4fbf16c4d92d863f8e6b9f07c42bebd96970bc0b5385bdd1c86e0c340cbce8c17195a312da026960472d7819" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/memory-fs@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/memory-fs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/memory-fs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/memory-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-middleware@3.7.3", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-middleware", + "version": "3.7.3", + "description": "A development middleware for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "142aea3f2d72cbfb0de94fd268465c1ca4571a5a94d0351a1012f8e6391462807c7e855beb00a76c82751ca231faa5054d6fb726955c0890b167c5404cbe1ef8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-middleware@3.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-dev-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-middleware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-middleware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mime@2.6.0", + "author": "Robert Kieffer", + "name": "mime", + "version": "2.6.0", + "description": "A comprehensive library for mime-type mapping", + "hashes": [ + { + "alg": "SHA-512", + "content": "c74567f2ca48fb0b89d4ee92ee09db69083c3f187834d1dbeca4883661162a23c4e1128ea65be28e7f8d92662699180febc99cef48f611b793151b2bb306907a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 Benjamin Thomas, Robert Kieffer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mime@2.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/broofa/mime#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/broofa/mime/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/broofa/mime.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-dev-server@3.11.3", + "author": "Tobias Koppers @sokra", + "name": "webpack-dev-server", + "version": "3.11.3", + "description": "Serves a webpack app. Updates the browser on changes.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed374e28ab7b1b7b161213ca574ccffa70f473857d60a509df00dd07042c64da39f28648468548bbaea983b3d89015bc03be26b0ff42da42f09b11879ddcffa7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-dev-server@3.11.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/webpack/webpack-dev-server#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/webpack/webpack-dev-server/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/webpack/webpack-dev-server.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-html-community@0.0.8", + "author": "mahdyar", + "name": "ansi-html-community", + "version": "0.0.8", + "description": "An elegant lib that converts the chalked (ANSI) text to HTML. (Community)", + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n" + } + } + } + ], + "purl": "pkg:npm/ansi-html-community@0.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mahdyar/ansi-html-community" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mahdyar/ansi-html-community/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mahdyar/ansi-html-community.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-absolute-url@3.0.3", + "author": "Sindre Sorhus", + "name": "is-absolute-url", + "version": "3.0.3", + "description": "Check if a URL is absolute", + "hashes": [ + { + "alg": "SHA-512", + "content": "bcec7b569aec2b2965c234a42d5efd348869c8b7ebde3029ed569308c5ce247bb89b4130d426767dc8c04b0995d63237056b961c1d35dcce3c7b27a5764f6062" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-absolute-url@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-absolute-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-absolute-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-absolute-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/p-retry@3.0.1", + "author": "Sindre Sorhus", + "name": "p-retry", + "version": "3.0.1", + "description": "Retry a promise-returning or async function", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c4e86e3e6134e44f66b45166f692365ef313707fc6c86e7aa973f212fe274e055872bdeb3498ae4e2607a8723c7bab9a6f5ffea6db7c6ecd53d84f5b8633bdf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/p-retry@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/p-retry#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/p-retry/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/p-retry.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/retry@0.12.0", + "author": "Tim Koschützki", + "name": "retry", + "version": "0.12.0", + "description": "Abstraction for exponential and custom retry strategies for failed operations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4b9224f08d487aad3e79e43b44f6b4d7f81281c8f7eb333100b67944b5d130af73647dfc228a1a9ed9b5800e0f8e4118edf6097a20276607f6450c2180b52a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011:\nTim Koschützki (tim@debuggable.com)\nFelix Geisendörfer (felix@debuggable.com)\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/retry@0.12.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tim-kos/node-retry" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tim-kos/node-retry/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tim-kos/node-retry.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ws@6.2.2", + "author": "Einar Otto Stangvik", + "name": "ws", + "version": "6.2.2", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a372aa8a95cd51d4bbc2943304749ed7cd250463bad12a0ad32568dc260981bd8c9286ee5ae057e9d86460fe4e4422dde79cbe49a7e530e5797ea001e77bb1e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Einar Otto Stangvik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ws@6.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/websockets/ws" + }, + { + "type": "issue-tracker", + "url": "https://github.com/websockets/ws/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/websockets/ws.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-limiter@1.0.1", + "author": "Samuel Reed", + "name": "async-limiter", + "version": "1.0.1", + "description": "asynchronous function queue with adjustable concurrency", + "hashes": [ + { + "alg": "SHA-512", + "content": "72c3a558601c44525a23a9be17658a76730aaf81e1761155064d07fd06c914c0abfae3b6930a21c1740fc70ffd382c69d39af9821541152ca2a22c71de07e435" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2017 Samuel Reed \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async-limiter@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/strml/async-limiter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/strml/async-limiter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/strml/async-limiter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webpack-subresource-integrity@1.5.2", + "author": "Julian Scheid", + "name": "webpack-subresource-integrity", + "version": "1.5.2", + "description": "Webpack plugin for enabling Subresource Integrity", + "hashes": [ + { + "alg": "SHA-512", + "content": "181598068c9a95ba396029705a8a7da9ee99725a7c0885d8188cf5d8e3dc949848ad2a650f1b352ecd490cc1fcc413cfae0d53e8849a4d6f58eb33abc04880cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2015-present Waysact Pty Ltd\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/webpack-subresource-integrity@1.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/waysact/webpack-subresource-integrity#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/waysact/webpack-subresource-integrity/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/waysact/webpack-subresource-integrity.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-path-cwd@2.2.0", + "author": "Sindre Sorhus", + "name": "is-path-cwd", + "version": "2.2.0", + "description": "Check if a path is the current working directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "7274b9e9e47d48f02c70befb8a4efa01356aa0f0114ea3c856430357145a587d3acd3fbaf82cc8ae8611274555be6d19d737c0bf1bf3f62fc3dcfa636aab7937" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-path-cwd@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-path-cwd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-path-cwd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-path-cwd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/animations@6.1.10", + "author": "angular", + "group": "@angular", + "name": "animations", + "version": "6.1.10", + "description": "Angular - animations integration with web-animations", + "hashes": [ + { + "alg": "SHA-512", + "content": "75dfe5abb930deec1f1cf2026a7f29b2eda7b61b94a69ecfbcc2ee3489b45f139b678a0db3496ceaec4a1033e712444aa06762269be6b32cd964df4008c3c400" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/animations@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/cli@6.0.8", + "author": "Angular Authors", + "group": "@angular", + "name": "cli", + "version": "6.0.8", + "description": "CLI tool for Angular", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e11f566ae58a27b61c3ace1e96d3b7e17fef57ac065b0f57dc43432b99bc6589e09f2e54c0741ab22b62dabc508ac1266450c2c5e941ccdfe8e235155949222" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40angular/cli@6.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular-cli" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular-cli/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular-cli.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular-devkit/schematics@0.6.8", + "author": "Angular Authors", + "group": "@angular-devkit", + "name": "schematics", + "version": "0.6.8", + "description": "Angular Schematics - Library", + "hashes": [ + { + "alg": "SHA-512", + "content": "47862a014768eb6c2dae15ffe474911922973535aa7d06fae9913a9bc8e3e8610934529d35731dc4e721c6bd3b2c288a4f17e1d70e86de71b3c48b2effe0f828" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40angular-devkit/schematics@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40schematics/angular@0.6.8", + "author": "Angular Authors", + "group": "@schematics", + "name": "angular", + "version": "0.6.8", + "description": "Schematics specific to Angular", + "hashes": [ + { + "alg": "SHA-512", + "content": "f6446986a4d81b90dffc8f1fbe74f5cccb30d183433cef6d975f2d4195e3e1a9b8ada4fb97d502afe5a4c09765068039a701ba6da584f6c2f4886595fdbcc5fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40schematics/angular@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/typescript@2.7.2", + "author": "Microsoft Corp.", + "name": "typescript", + "version": "2.7.2", + "description": "TypeScript is a language for application scale JavaScript development", + "hashes": [ + { + "alg": "SHA-512", + "content": "1abe29ea714d6a8b9f44863834c76941136683154818cb3815cbbfba37589379c066a93bb2ea73044f62766bdf648947fc2ba3fff76f8bed35f6a12e7bd955d3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": "Apache License\r\n\r\nVersion 2.0, January 2004\r\n\r\nhttp://www.apache.org/licenses/ \r\n\r\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r\n\r\n1. Definitions.\r\n\r\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\r\n\r\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\r\n\r\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\r\n\r\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\r\n\r\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\r\n\r\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\r\n\r\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\r\n\r\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\r\n\r\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\r\n\r\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\r\n\r\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\r\n\r\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\r\n\r\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\r\n\r\nYou must give any other recipients of the Work or Derivative Works a copy of this License; and\r\n\r\nYou must cause any modified files to carry prominent notices stating that You changed the files; and\r\n\r\nYou must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\r\n\r\nIf the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\r\n\r\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\r\n\r\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\r\n\r\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\r\n\r\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\r\n\r\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\r\n\r\nEND OF TERMS AND CONDITIONS\r\n" + } + } + } + ], + "purl": "pkg:npm/typescript@2.7.2", + "externalReferences": [ + { + "type": "website", + "url": "http://typescriptlang.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Microsoft/TypeScript/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Microsoft/TypeScript.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40schematics/update@0.6.8", + "author": "Angular Authors", + "group": "@schematics", + "name": "update", + "version": "0.6.8", + "description": "Schematics specific to updating packages", + "hashes": [ + { + "alg": "SHA-512", + "content": "d54abb2d89f02f6c01c0654280dcfbe90011d77821024fb6bc30c73a2f955f9faeb0731a9f1c9dae9a0c19e5fae8e04f77ecb90f70f63056fef2660713b9b282" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40schematics/update@0.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/devkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/devkit/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/devkit.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-registry-client@8.6.0", + "author": "Isaac Z. Schlueter", + "name": "npm-registry-client", + "version": "8.6.0", + "description": "Client for the npm registry", + "hashes": [ + { + "alg": "SHA-512", + "content": "42ce8fea79e8a6283e63c81bce978dfdd92dfa7ec8c9577c7f8e4d4cca2d1a4e90a3b19f066cf0631ea344ba0e3a02a23276907d8c6cbb24250fc31cde0b8186" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-registry-client@8.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npm-registry-client#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-registry-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-registry-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/npm-package-arg@6.1.1", + "author": "Isaac Z. Schlueter", + "name": "npm-package-arg", + "version": "6.1.1", + "description": "Parse the things that can be arguments to `npm install`", + "hashes": [ + { + "alg": "SHA-512", + "content": "a81a6cb1a2f720e6568b9bc4294296d1c3bb9332de4fe1103bd5bc46c2ce65fefa285f44fcaf7ec07d02eedd3a1d73e9687f161f9c45d4c1312ee0b06d3a9152" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/npm-package-arg@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/npm/npm-package-arg" + }, + { + "type": "issue-tracker", + "url": "https://github.com/npm/npm-package-arg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/npm/npm-package-arg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver-intersect@1.4.0", + "author": "Suneil Nyamathi", + "name": "semver-intersect", + "version": "1.4.0", + "description": "Get the intersection of multiple semver ranges", + "hashes": [ + { + "alg": "SHA-512", + "content": "77c7ef1a0e7270a02ad3e23a9df59e0b1e9f7da5890ac0585341f646ae7afbfcc578f61f4fc997901ded5814a347905eae41cd6797933c8935fcb0586acdf9c5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Suneil Nyamathi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver-intersect@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/snyamathi/semver-intersect#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/snyamathi/semver-intersect/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/snyamathi/semver-intersect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/opn@5.3.0", + "author": "Sindre Sorhus", + "name": "opn", + "version": "5.3.0", + "description": "A better node-open. Opens stuff like websites, files, executables. Cross-platform.", + "hashes": [ + { + "alg": "SHA-512", + "content": "88f0566cf3f83843b3475c5f86918b0e1fb2a4a04eca0ba766133d8c1b40ec54b9b0a8c488c670d0415bf368670ce993657f746562e864a5336b8715b7c31ec4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/opn@5.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/opn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/opn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/opn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@10.1.0", + "author": "Ben Coe", + "name": "yargs-parser", + "version": "10.1.0", + "description": "the mighty option parser used by yargs", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acc027dd3a00abe0c32c4f51b36c427b676b98b9d5b2ac65fc06087fd1ec82ce3fc35d674aaba6bf003b9f9332355803885ba8d869726f4722e10ced247ea07" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software\nfor any purpose with or without fee is hereby granted, provided\nthat the above copyright notice and this permission notice\nappear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES\nOF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE\nLIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES\nOR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\nWHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,\nARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/yargs-parser@10.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yargs/yargs-parser#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yargs/yargs-parser/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yargs/yargs-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/common@6.1.10", + "author": "angular", + "group": "@angular", + "name": "common", + "version": "6.1.10", + "description": "Angular - commonly needed directives and services", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef7c714d260934a7e227b0b502383eb33e65f32f9b95bfef3601d883b3b7c9e9b9ccb0677cfa62749d541a0e16e1dd98fa3c145496d92a1f122896aba8025551" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/common@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/compiler@6.1.10", + "author": "angular", + "group": "@angular", + "name": "compiler", + "version": "6.1.10", + "description": "Angular - the compiler library", + "hashes": [ + { + "alg": "SHA-512", + "content": "14f21bda3df37e80706fabe8feed2041ebbbd21f089c69528ac06bdf13000acff7e7fa7007a91b411f8942252bd03ee4e9002983b02e324beaf1a14d7a58346b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/compiler@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/compiler-cli@6.1.10", + "group": "@angular", + "name": "compiler-cli", + "version": "6.1.10", + "description": "Angular - the compiler CLI for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "18259dc9e3504a717845fccee00d3e587b0d120c4aa65e5aae0e2574b49630d923fc3ae1303e139e6c6147e21563eee278c914070a5cb964678dd39d9db995fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/compiler-cli@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular/tree/master/packages/compiler-cli" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tsickle@0.32.1", + "name": "tsickle", + "version": "0.32.1", + "description": "Transpile TypeScript code to JavaScript with Closure annotations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b45a1350bee3bbcdb4c378eacd2752c628f54b504d248d2769331322c9e644d1cd0cb69bc1f77a7bf3b88e9e32aa50e165d7ec76bf508dfc30cc14e5fa58a74" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2014-2016 Google, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tsickle@0.32.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/tsickle" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/tsickle/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/tsickle.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jasmine-diff@0.1.3", + "author": "Jim Fitzpatrick", + "name": "jasmine-diff", + "version": "0.1.3", + "description": "Jasmine diff matchers", + "hashes": [ + { + "alg": "SHA-512", + "content": "f26f7c42aa1eb4a09106290a9d2ad746be7cebdf00f1b19dae86351435c6c46017108b895780a3a32638af604bd54743c87217b37b59761eba91707a2e2448e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 Jim Fitzpatrick\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jasmine-diff@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jimf/jasmine-diff" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jimf/jasmine-diff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jimf/jasmine-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/core@6.1.10", + "author": "angular", + "group": "@angular", + "name": "core", + "version": "6.1.10", + "description": "Angular - the core framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb5977ac841355d4f8e5e39febf7c1248795995d7499caf1a92e0dff539692e0d3dbd612253652c4672ff108c0cb2badba172a596a4eea055190dd3bad69a43e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/core@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/forms@6.1.10", + "author": "angular", + "group": "@angular", + "name": "forms", + "version": "6.1.10", + "description": "Angular - directives and services for creating forms", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc03f1da4315d7f15b3f90eb638ef649dff37b59be192e93e6e965642b4fdfddabeb6a76464c330c25e2791e756224498d98f733a73701c44d0fb3d605d5d3ec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/forms@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/http@6.1.10", + "author": "angular", + "group": "@angular", + "name": "http", + "version": "6.1.10", + "description": "Angular - the http service", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c3b12ab27b187c7e3db7cbe1b6a1218b59265585bc41068d9e8581e74601ff8e5a74a666552d168681430d48256d65cd6bc4bce9123663b70f8ffaa96eb40b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/http@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/language-service@6.1.10", + "author": "angular", + "group": "@angular", + "name": "language-service", + "version": "6.1.10", + "description": "Angular - language services", + "hashes": [ + { + "alg": "SHA-512", + "content": "9cddbd3afa26836d5e2fc69cc0e4941406305852354ee17052052edfb66cb1f550ad875a57e045c77cafdcfd27294f748771e9fa822458777c537e1462bbc10a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/language-service@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/platform-browser@6.1.10", + "author": "angular", + "group": "@angular", + "name": "platform-browser", + "version": "6.1.10", + "description": "Angular - library for using Angular in a web browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "081ee9a8cc2d81beca8dd1c300996c5dcb34aeb53edb14156a839aa847c9b54aca86d18c2da661f10a2273997dd92a066adb643b0ed261aac03ac5a502c55fbf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/platform-browser@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/platform-browser-dynamic@6.1.10", + "author": "angular", + "group": "@angular", + "name": "platform-browser-dynamic", + "version": "6.1.10", + "description": "Angular - library for using Angular in a web browser with JIT compilation", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e605253214fa322aa926057c89d82acfd685c38a87a80653c0f2599650352fdb206ea07233224758fce91365b772bbf4186b584ad8997d3a57e87a87a729d76" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/platform-browser-dynamic@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40angular/router@6.1.10", + "author": "angular", + "group": "@angular", + "name": "router", + "version": "6.1.10", + "description": "Angular - the routing library", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5e908ddd91dbddeb9a0ca318e381103ed7ab8380f501587858c6276cea980ef2fa1b64db42a3c55a565703c8b521766b52e6438d10bc7488be44d8cd18d816a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40angular/router@6.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/angular/angular/tree/master/packages/router" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/a-big-triangle@1.0.1", + "group": "@types", + "name": "a-big-triangle", + "version": "1.0.1", + "description": "TypeScript definitions for a-big-triangle", + "hashes": [ + { + "alg": "SHA-512", + "content": "527ecbfc166e737634a87ee21fa0e1586e53fc4ccb20f6145e6f3e16f04c53ca73aace82d4785c12e63aca40bda493a6cb809e904581b66d38188936bae0ad50" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/a-big-triangle@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/a-big-triangle" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/abbrev@1.1.2", + "group": "@types", + "name": "abbrev", + "version": "1.1.2", + "description": "TypeScript definitions for abbrev", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a52461e401b4300551c726d15c8d9ccbf6af9c289bf23f02945decfcb3ed3b55d1942a9c8eb8cdad8873ea13681b538f8d227db0a2ed28dcf5a14846b661b7a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/abbrev@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/abbrev" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/abs@1.3.2", + "group": "@types", + "name": "abs", + "version": "1.3.2", + "description": "TypeScript definitions for abs", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3416beceeb666336e135b2ec233be776912da8cd971e2dc7d72eba103fccc62b75bd6f050883f3013ec872683cc954ec0e64b91199509554fc847e7647caf87" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/abs@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/absolute@0.0.29", + "author": "Aya Morisawa", + "group": "@types", + "name": "absolute", + "version": "0.0.29", + "description": "TypeScript definitions for absolute 0.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "737f2d70c2e05a40dda43b84735eb4a9375f9100330bda15ee72b9f370a85db819f0b57d1b0acc48012b3cc73d22766c1bc459742a82bbfe2fa2389b97f8448f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/absolute@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/acc-wizard@0.0.30", + "group": "@types", + "name": "acc-wizard", + "version": "0.0.30", + "description": "TypeScript definitions for acc-wizard", + "hashes": [ + { + "alg": "SHA-512", + "content": "56edeb3ccef356b3febf85e2a38521b4d144af2569784bc7e211f310c260397e15838ed87ed0e36cea0d0f1a52255daa63a706ff54dd6bf85e6d96bfd406efb1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/acc-wizard@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/accept-language-parser@1.5.3", + "group": "@types", + "name": "accept-language-parser", + "version": "1.5.3", + "description": "TypeScript definitions for accept-language-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bca0cdbd3ba9e7442dfffabc1857b181608220348679d8f0b1a811bb3ae22dabda004e7616cbc15f78b2b0beae45ee92188de78148223bcbe97e67d50442955" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/accept-language-parser@1.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/accept-language-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/accepts@1.3.5", + "group": "@types", + "name": "accepts", + "version": "1.3.5", + "description": "TypeScript definitions for accepts", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ce76723fdea4e91c0063339731d47734b0ab0fa180a9f833ff189446b4394f77b7e257da1718621c8d6fd93b12c8be31b3f0c03eb8c648f667ad1e582a6e0c1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/accepts@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/accounting@0.4.2", + "group": "@types", + "name": "accounting", + "version": "0.4.2", + "description": "TypeScript definitions for accounting.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "33c5bab6c2d982e19d45a490326839f0f50cff91e0a03b81195c8c8983468b415990bcc90e3501186611623d49f4e5842c24ea7eec7ea2057228e6c2cdf58982" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/accounting@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/accounting" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ace@0.0.40", + "group": "@types", + "name": "ace", + "version": "0.0.40", + "description": "TypeScript definitions for Ace Ajax.org Cloud9 Editor", + "hashes": [ + { + "alg": "SHA-512", + "content": "92d84c89c5e24ceb92de6a9b6e2bf458c1cf537f6b26cd01eef9f34bb95b10569d45140acb30565165259986b3383a49e25db2df4a14917424f95d6c3d48ac16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ace@0.0.40", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ace-diff@2.1.1", + "group": "@types", + "name": "ace-diff", + "version": "2.1.1", + "description": "TypeScript definitions for ace-diff", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b6edf0a8d98d278cdb2538549ec324614f25df2e156195e114e5a4c8e99a854ca10d27c2ff2c0f98f997dc1ec1d3b70ad35a3057a8e466a841c7e90cadab0d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ace-diff@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ace-diff" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/acl@0.4.41", + "group": "@types", + "name": "acl", + "version": "0.4.41", + "description": "TypeScript definitions for acl", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2aedce10498c32483f82b2c92e5ebd25b2fe9b2e4d013651c9731e2cb33c934c620358bc9bc68d9bde4fec17f3d7f816395915879337256217b33c7945afccb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/acl@0.4.41", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/acl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/bluebird@3.5.36", + "group": "@types", + "name": "bluebird", + "version": "3.5.36", + "description": "TypeScript definitions for bluebird", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c1371e25864c4dedbc7a3f4fbe5bc136f3d7e84aef243bc182936ba786e56080ef9c13bae1f438595323e15313511bd9bee41e414cac5943964ff76c7f9b1f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/bluebird@3.5.36", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bluebird" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/express@4.17.13", + "group": "@types", + "name": "express", + "version": "4.17.13", + "description": "TypeScript definitions for Express", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9b4994cf6932000b19f8f25e74491f9ac60aea9baa97148c6b74029a1ba3da264dfecee52bdf98419604fbbce98972e9be38468804bb4757faa5a0400521378" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/express@4.17.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/body-parser@1.19.2", + "group": "@types", + "name": "body-parser", + "version": "1.19.2", + "description": "TypeScript definitions for body-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "00b6289deea99ba426c19a0081ec8d92c71c4fd438016650e8fbdfc11dfb193eabe855943e0baaeac52634648c5765abefad68428071c0619ae83479a350c2f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/body-parser@1.19.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/connect@3.4.35", + "group": "@types", + "name": "connect", + "version": "3.4.35", + "description": "TypeScript definitions for connect", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d798cafe0a5a8120a412124f15afa98b15cb8e380cea9e8621777ccde77b5d00989eb6452c8d9149f13095c7416450417d9e47de26e72d486720f006357d15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/connect@3.4.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/express-serve-static-core@4.17.30", + "group": "@types", + "name": "express-serve-static-core", + "version": "4.17.30", + "description": "TypeScript definitions for Express", + "hashes": [ + { + "alg": "SHA-512", + "content": "82cb736d35aba36fe715e775597b5ff93b6ba70c47ec682ce112d84cb6de560224510388dd61bf24a8e078e535cd70ef7b3965ba98eb7fc38f21dbd36c869539" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/express-serve-static-core@4.17.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-serve-static-core" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/qs@6.9.7", + "group": "@types", + "name": "qs", + "version": "6.9.7", + "description": "TypeScript definitions for qs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1466b517ad854f4f6a72bb9e040eaa613ac93d50f36a1f5afb8f77fa8d8f097b1eb161c89f6ec6f7c4ec48cb3758f35b648123e3e5497fab1a485a6f0fedd9b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/qs@6.9.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/qs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/range-parser@1.2.4", + "group": "@types", + "name": "range-parser", + "version": "1.2.4", + "description": "TypeScript definitions for range-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "10486c2ec0fa52c0ccd7216102fcb40a3afa5709a9316a850426fdc34ef056e805ef0f677da8f12ee5669e04c8a604bab2f0a79ba55ac3e3198680c22a739fb3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/range-parser@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/range-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/serve-static@1.13.10", + "group": "@types", + "name": "serve-static", + "version": "1.13.10", + "description": "TypeScript definitions for serve-static", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c2907188e30ed980074d92b12ed1bbfee31355fd70ea5be0f27649de6cc390c24a431b1f06f874e58fb47b00123c8bc9cac55c34c2d28f8b50fe94f3a487861" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/serve-static@1.13.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-static" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mime@1.3.2", + "group": "@types", + "name": "mime", + "version": "1.3.2", + "description": "TypeScript definitions for mime", + "hashes": [ + { + "alg": "SHA-512", + "content": "6004f1571811a8d1fa9c7108b2f83a93606873524723d65b1f9896145bff31391c873ddbd627860dae53d1af51ce735d2342a155b75b59237e2965ab4194714f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mime@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redis@2.8.32", + "group": "@types", + "name": "redis", + "version": "2.8.32", + "description": "TypeScript definitions for redis", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee390c2b1706abda76e367b195bb15cee25be7b2aa1d184d978747a10bb6639bfd6c201bb485d71f44771e5792416e024ceaa91c86145b7b7ab69523e01550fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redis@2.8.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redis" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mongodb@4.8.1", + "author": "The MongoDB NodeJS Team", + "name": "mongodb", + "version": "4.8.1", + "description": "The official MongoDB driver for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ec9be837ff01d786304492d9315ec14c66f7779de988d2bdc83ec1346d4fb8fff3e7bcd58a933859704b1b3dc6225aa7bc5ea5c92448384e0b6bed16b0ebb63" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + } + } + } + ], + "purl": "pkg:npm/mongodb@4.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mongodb/node-mongodb-native" + }, + { + "type": "issue-tracker", + "url": "https://jira.mongodb.org/projects/NODE/issues/" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mongodb/node-mongodb-native.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bson@4.6.5", + "author": "The MongoDB NodeJS Team", + "name": "bson", + "version": "4.6.5", + "description": "A bson parser for node.js and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "baaae0723c8e699b077f3ede6bcccb4422ded6ef901944b33199af5ea3b6e020d6ec35a85b5aa237d7e8952c1aee14a77934a0336ca40c8cc5e6471043c73037" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/bson@4.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mongodb/js-bson#readme" + }, + { + "type": "issue-tracker", + "url": "https://jira.mongodb.org/projects/NODE/issues/" + }, + { + "type": "vcs", + "url": "git+https://github.com/mongodb/js-bson.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer@5.7.1", + "author": "Feross Aboukhadijeh", + "name": "buffer", + "version": "5.7.1", + "description": "Node.js Buffer API, for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6afaadd244c3b11a2bcb84135a51d0bae210d34307a327e1f44ff341d5732d4d5130353adf145de00318b25b406eff15841a18d52a051c3210ab532dbeb825a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh, and other contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer@5.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/denque@2.1.0", + "author": "Invertase", + "name": "denque", + "version": "2.1.0", + "description": "The fastest javascript implementation of a double-ended queue. Used by the official Redis, MongoDB, MariaDB & MySQL libraries for Node.js and many other libraries. Maintains compatability with deque.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d5404dc001bfe9c45f1f400a22aa9be0f62ddebeaba0de1a22c1a90ec99030266fbabd97a16e46176749782714be23743133deefe5a6913618fcbf9a0185e93" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2018-present Invertase Limited\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/denque@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://docs.page/invertase/denque" + }, + { + "type": "issue-tracker", + "url": "https://github.com/invertase/denque/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/invertase/denque.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mongodb-connection-string-url@2.5.3", + "name": "mongodb-connection-string-url", + "version": "2.5.3", + "description": "MongoDB connection strings, based on the WhatWG URL API", + "hashes": [ + { + "alg": "SHA-512", + "content": "7fefd6b040fec45e01ef897793d57f5e44d58f9fdfc451f6a394e829777c2328b952133eb0ef6ed00a5ed7b32f97f1a465a16d3341d09f3006e4e4e684ac3eb5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n Copyright 2020 MongoDB Inc.\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n" + } + } + } + ], + "purl": "pkg:npm/mongodb-connection-string-url@2.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mongodb-js/mongodb-connection-string-url" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mongodb-js/mongodb-connection-string-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mongodb-js/mongodb-connection-string-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/whatwg-url@8.2.2", + "group": "@types", + "name": "whatwg-url", + "version": "8.2.2", + "description": "TypeScript definitions for whatwg-url", + "hashes": [ + { + "alg": "SHA-512", + "content": "16d42ed74456827dc3f54e1a6b3770204db2ce98664c94440ea35d3831eb6eb66698ca88d2f321782ffa344fc9d58bde6a3f07f9e95af98c164e3ab93c69ae84" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/whatwg-url@8.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/whatwg-url" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/webidl-conversions@6.1.1", + "group": "@types", + "name": "webidl-conversions", + "version": "6.1.1", + "description": "TypeScript definitions for webidl-conversions", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c06a109d4e156e0850d02d3ed1ecf93fbea78e6c534bdd8a91c85660f80a803ff5b5ff0df11da231b96ed6b3342a4db20138f45c22d609228bb78bf9a9a6edd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/webidl-conversions@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webidl-conversions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/whatwg-url@11.0.0", + "author": "Sebastian Mayr", + "name": "whatwg-url", + "version": "11.0.0", + "description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery", + "hashes": [ + { + "alg": "SHA-512", + "content": "44a4fc1c4c4ca68631e2280c895318f3794de947884ca265050faf47ff1927c38275288ddd1c02abef601f4f97ce3d3ee48accea2e23ffa2eebf36d921080471" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "The MIT License (MIT)\n\nCopyright (c) Sebastian Mayr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/whatwg-url@11.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jsdom/whatwg-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jsdom/whatwg-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jsdom/whatwg-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tr46@3.0.0", + "author": "Sebastian Mayr", + "name": "tr46", + "version": "3.0.0", + "description": "An implementation of the Unicode UTS #46: Unicode IDNA Compatibility Processing", + "hashes": [ + { + "alg": "SHA-512", + "content": "97b16f7c01e5726ba5a7c92bf9f969419995c2dbbb9df455ecd66e8ed3743aa112f042f83b87b4aaaccbd030b9800bf1fd90bff6593aae1714c18be406706760" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) Sebastian Mayr\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tr46@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jsdom/tr46#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jsdom/tr46/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jsdom/tr46.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@7.0.0", + "author": "Domenic Denicola", + "name": "webidl-conversions", + "version": "7.0.0", + "description": "Implements the WebIDL algorithms for converting to and from JavaScript values", + "hashes": [ + { + "alg": "SHA-512", + "content": "57075d06e903ceeef5a1f7c0411f7be6e9c1206a9f299a4cfbc657eb24a4f27621568a39098699cb3b77601bd8b51b4ef9aa0696ac4f83f07cecd19567f7eeea" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "contentType": "text/markdown", + "content": "# The BSD 2-Clause License\n\nCopyright (c) 2014, Domenic Denicola\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/webidl-conversions@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jsdom/webidl-conversions#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jsdom/webidl-conversions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jsdom/webidl-conversions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/socks@2.7.0", + "author": "Josh Glazebrook", + "name": "socks", + "version": "2.7.0", + "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1c9ce7bdcb856e88d5142c937bd86accdba04d3a356c7cf5c8fa3fbdf0f93211fb085eba1ae687f28d3f85cc6be7ff11ecef753626da01600571f47978aae48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 Josh Glazebrook\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/socks@2.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JoshGlazebrook/socks/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JoshGlazebrook/socks/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JoshGlazebrook/socks.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ip@2.0.0", + "author": "Fedor Indutny", + "name": "ip", + "version": "2.0.0", + "description": "[![](https://badge.fury.io/js/ip.svg)](https://www.npmjs.com/package/ip)", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ee1313d8522bbaa8c0506f8974e9e726e93eae8f386687e31e25c5bdc1af3d3e8033e69bdde333e0379589575d3899be92d93d40c0d200681ef424dacb41686" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/ip@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/indutny/node-ip" + }, + { + "type": "issue-tracker", + "url": "https://github.com/indutny/node-ip/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/indutny/node-ip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/smart-buffer@4.2.0", + "author": "Josh Glazebrook", + "name": "smart-buffer", + "version": "4.2.0", + "description": "smart-buffer is a Buffer wrapper that adds automatic read & write offset tracking, string operations, data insertions, and more.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7884ad0787cacfa90976c577371ec681a0e5ca576d0c4e83e4717bf06c84962c4b3eeb8b01ab9905827da42431dbd4faf2f72acfd1dc6b088f5145c8bb4572a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2017 Josh Glazebrook\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/smart-buffer@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/JoshGlazebrook/smart-buffer/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/JoshGlazebrook/smart-buffer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/JoshGlazebrook/smart-buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/acorn@4.0.6", + "group": "@types", + "name": "acorn", + "version": "4.0.6", + "description": "TypeScript definitions for Acorn", + "hashes": [ + { + "alg": "SHA-512", + "content": "bde4139d63fed43ff16f156b3c2df31e70994634ab29f85b314944038de23192eeec4b274ed90992522ec2b08f6ce8bc624bc3400896d39550405befcfda2279" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/acorn@4.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/acorn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/estree@1.0.0", + "group": "@types", + "name": "estree", + "version": "1.0.0", + "description": "TypeScript definitions for estree", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ae96a5cc0d44d80170a366793a26d2073e2829e79715b43803aceda01d1c21c89b68db5fb5cdb542b4e601d8bd45f70e2a090d2b3865819c17b414d4e210921" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/estree@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/estree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/actioncable@0.0.2", + "author": "Vincent Zhu", + "group": "@types", + "name": "actioncable", + "version": "0.0.2", + "description": "TypeScript definitions for ActionCable", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2a726722080bcf3353649137f38ef48aba255c49becb85d8dc6048fe05d010610a3f07569194e4071d07f89764b5d028a1f04cc61e9d342b0d5546635f71d52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/actioncable@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/actions-on-google@1.10.3", + "group": "@types", + "name": "actions-on-google", + "version": "1.10.3", + "description": "TypeScript definitions for actions-on-google", + "hashes": [ + { + "alg": "SHA-512", + "content": "193a82afa5d72bc625304d900fcf196fc4daa901204276e7effae1103e7a97158d9d1535248c8d4029d710489de7d13ef1af85c8d2fab5c04847f96c3991da70" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/actions-on-google@1.10.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-access@14.0.6", + "group": "@types", + "name": "activex-access", + "version": "14.0.6", + "description": "TypeScript definitions for Microsoft Access 14.0 Object Library - Access", + "hashes": [ + { + "alg": "SHA-512", + "content": "f973e33bdb6eed91bf443f8ae931e4ac6d67fef10c0029f655f969f7481a3c4d616935abe83f33cf6c4a4ca2e7508f81087869005a7184afabb9158a0853f1ca" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-access@14.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-adodb@6.1.8", + "group": "@types", + "name": "activex-adodb", + "version": "6.1.8", + "description": "TypeScript definitions for Microsoft ActiveX Data Objects 6.0 Library - ADODB", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff88cf46594caebf769ad37a0879e3028d9e23578d066c45765990567da0d4b2e9852cf021cd0e67c6d8be65c362e0d105c498fcf0e526984fb11cd9337895ba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-adodb@6.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/activex-adodb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-interop@0.0.1", + "group": "@types", + "name": "activex-interop", + "version": "0.0.1", + "description": "TypeScript definitions for Javascript Automation interop", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7348c20e5e1ca4ee6b16298e363701174293188f4a65e02641d93fa4bf68db0214090b0f75cd6c077ac40d100163ac1e38e24d9bc8e726fd6b80f847fb0b50b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-interop@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/activex-helpers@1.0.3", + "author": "Zev Spitz", + "name": "activex-helpers", + "version": "1.0.3", + "description": "Event handler management, and parameterized property setters, for ActiveX objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "f314421b887908921c815dba1175957de68dc66b4857afa68489ca285f5248fe7118a745954ca4205e7cf3549b0cf0f977b501a37e026cc77293d4866cc142ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\r\n\r\nCopyright (c) 2017 Zev Spitz\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/activex-helpers@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zspitz/activex-js-helpers#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zspitz/activex-js-helpers/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zspitz/activex-js-helpers.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-dao@16.0.3", + "group": "@types", + "name": "activex-dao", + "version": "16.0.3", + "description": "TypeScript definitions for Microsoft Office 16.0 Access Database Engine Object Library - DAO", + "hashes": [ + { + "alg": "SHA-512", + "content": "42703b6f4b2ab1dbf6c8617d25802d3296f296ac9a75bab8e77532c1da9fd54c4f45ec4547970b733b74cd8d5389be604b97376f7fe44d93777965a0283bdf2b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-dao@16.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-office@16.0.3", + "group": "@types", + "name": "activex-office", + "version": "16.0.3", + "description": "TypeScript definitions for Microsoft Office 16.0 Object Library - Office", + "hashes": [ + { + "alg": "SHA-512", + "content": "80a16063a93608e9f12e227fa5cb4aea950ab452ceb86677ebe04119bfe04718321c3c80db7e536cb8588fcbfdae70597d16fdb55307424eaa406bbab8bcf780" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-office@16.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-outlook@14.0.5", + "group": "@types", + "name": "activex-outlook", + "version": "14.0.5", + "description": "TypeScript definitions for non-npm package Microsoft Outlook 14.0 Object Library - Outlook", + "hashes": [ + { + "alg": "SHA-512", + "content": "08eb3a39bff3b1fa232c8855ed66633323c9641b08a7df15277492f11a216569290d274123d4ceb173c440d9e946ff0f7aba8cb4caa58c1ccffc4e0cbabf4961" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-outlook@14.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-stdole@2.0.5", + "group": "@types", + "name": "activex-stdole", + "version": "2.0.5", + "description": "TypeScript definitions for non-npm package OLE Automation - stdole", + "hashes": [ + { + "alg": "SHA-512", + "content": "4291e2ba374420329f107e2809ad1f46ee82d15ec013c1e8fb2273e64ec6ba1c2efc08b292895182cb6a13b0a1ec19e5e6cb06e9a4b54da476c816d7b98cce7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-stdole@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-vbide@14.0.3", + "group": "@types", + "name": "activex-vbide", + "version": "14.0.3", + "description": "TypeScript definitions for non-npm package Microsoft Visual Basic for Applications Extensibility 5.3 - VBIDE", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e34dfd5144c22a8af615bb8f13718674d58b27890131ec56df3cd8c79e1a808d3fb7e91058e4fc3e1a19c065672d8a4d9aed19a04fa728ffe60f71b715b9133" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-vbide@14.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-adox@6.0.4", + "group": "@types", + "name": "activex-adox", + "version": "6.0.4", + "description": "TypeScript definitions for Microsoft ADO Extensions 6.0 for DDL and Security - ADOX", + "hashes": [ + { + "alg": "SHA-512", + "content": "920227079d8ece2cfc8f461f7dd28ea6a392d486660b217c6bf7db32c99403028230c4bd19c4931f693cefb426d6687f6ae06e827d848d118cce931d59b6aa38" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-adox@6.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-diskquota@1.0.5", + "group": "@types", + "name": "activex-diskquota", + "version": "1.0.5", + "description": "TypeScript definitions for DiskQuotaTypeLibrary", + "hashes": [ + { + "alg": "SHA-512", + "content": "69f7a9d427eb3932489a5a0c8b12cff24bb0aad28c4a89f04643a3a6e31e9367d632ec64b19a32966ec2c4d554dae47938ff99b5c0d35b5652eceb472898966e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-diskquota@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/activex-diskquota" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-excel@14.0.6", + "group": "@types", + "name": "activex-excel", + "version": "14.0.6", + "description": "TypeScript definitions for Microsoft Excel 14.0 Object Library - Excel", + "hashes": [ + { + "alg": "SHA-512", + "content": "70ac28882dc47bb0c7bb1e455c679095f4bba0da026523291d7e3f83dcbc8bc66c515127d3043276b7d3fdd6a4088d025027ba44914c350502477d52a3685d7e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-excel@14.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-faxcomexlib@1.0.5", + "group": "@types", + "name": "activex-faxcomexlib", + "version": "1.0.5", + "description": "TypeScript definitions for Microsoft Fax Service Extended COM Type Library - FAXCOMEXLib", + "hashes": [ + { + "alg": "SHA-512", + "content": "42124aa5e6290ca969c18f6847843db159a137382a50cde447f5ce0dd12d44c222d2669be064ce60444d41851881b34f82a88f96c795d4348afcb31f46b1e9f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-faxcomexlib@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/activex-faxcomexlib" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-infopath@3.0.4", + "group": "@types", + "name": "activex-infopath", + "version": "3.0.4", + "description": "TypeScript definitions for non-npm package Microsoft InfoPath 3.0 Type Library - InfoPath", + "hashes": [ + { + "alg": "SHA-512", + "content": "35c1a4e38f0365dc83a0cdf4a0f6a780a7e67363904121113020337f3da5f40f077d28565a0565344775659fa410c09b06121f9d28b1afb3f7de565daedd4e69" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-infopath@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-mshtml@4.0.6", + "group": "@types", + "name": "activex-mshtml", + "version": "4.0.6", + "description": "TypeScript definitions for Microsoft HTML Object Library - MSHTML", + "hashes": [ + { + "alg": "SHA-512", + "content": "df602b6147361fd4f779eeaf8534c7dda776781f8d1e6e34ed7fa1d21dc72625b190c44150206ef7c26c3e6f41dcac20f9db22cabd5e617adfe3305bd47c4b9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-mshtml@4.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-msxml2@6.0.5", + "group": "@types", + "name": "activex-msxml2", + "version": "6.0.5", + "description": "TypeScript definitions for non-npm package Microsoft XML, v6.0 - MSXML2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d1ed3d0cf104d5f783bb9a4a1dc121464738502d4fe4c217869c34eb5f536780156cf6cd45c4a89684f4487d87a97b0f53116359554810127021767d2aacb3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-msxml2@6.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-iwshruntimelibrary@0.0.1", + "group": "@types", + "name": "activex-iwshruntimelibrary", + "version": "0.0.1", + "description": "TypeScript definitions for Windows Script Host Runtime Object Model", + "hashes": [ + { + "alg": "SHA-512", + "content": "47ee888eb00e0fb20058cea1732d5d7f902d68220876c700b8bcf564517f895e4eb812d08fc53e888e3590d87b65f1fa2c81012621ae3ee03097e0afa3340dcb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-iwshruntimelibrary@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-libreoffice@5.3.6", + "group": "@types", + "name": "activex-libreoffice", + "version": "5.3.6", + "description": "TypeScript definitions for LibreOffice", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8572fd19f5532ee7ccb7788abf4ae8cd282d610f2ba86e271bbd9f9493853657770fe618abce5eee02fe5bb713402b1e62a3f60ece83dc3204e436e7adfcbc1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-libreoffice@5.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-msforms@2.0.4", + "group": "@types", + "name": "activex-msforms", + "version": "2.0.4", + "description": "TypeScript definitions for non-npm package Microsoft Forms 2.0 Object Library - MSForms", + "hashes": [ + { + "alg": "SHA-512", + "content": "03a5ece7d277727b2ea2d8e0e78b8f822b8ac6e1ea463e04fa8060c720431e9babeb08a8fa1b7bdd66d3ddeebc2c5d2d6db020d838b7493e794aaf330b443d0f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-msforms@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-powerpoint@14.0.4", + "group": "@types", + "name": "activex-powerpoint", + "version": "14.0.4", + "description": "TypeScript definitions for non-npm package Microsoft PowerPoint 14.0 Object Library - PowerPoint", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a26feec475c089265a1d33962a21fa44b9e8e934604764fe9051a02205b4ac0048c2542576af3eaf3b1f564607478215473f4c67cbf2641fc60861250278935" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-powerpoint@14.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-scripting@1.0.8", + "group": "@types", + "name": "activex-scripting", + "version": "1.0.8", + "description": "TypeScript definitions for Microsoft Scripting Runtime", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bdc6c203e75e69fed3c5542399462a1dee537e7957e1980a6ba089d99c61a7f884a122655197e4aa14eefd0d9d73d4ea1863eae3c2ee16331a84cc1e6e7d947" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-scripting@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/activex-scripting" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-shdocvw@1.1.4", + "group": "@types", + "name": "activex-shdocvw", + "version": "1.1.4", + "description": "TypeScript definitions for Microsoft Internet Controls - SHDocVw", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d10cc6951108a8109b9d99ac03e19af32c5115f9a34d9b88d596ad8efed30d553c5de09d9b5293376f98edc8bfd93d04f9e6ccce8a6be6984d190407c899dcb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-shdocvw@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/activex-shdocvw" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-shell@1.0.4", + "group": "@types", + "name": "activex-shell", + "version": "1.0.4", + "description": "TypeScript definitions for Microsoft Shell Controls And Automation - Shell32", + "hashes": [ + { + "alg": "SHA-512", + "content": "85bda07b4e1035595213bc2614ac0a44b24fed17a807b05c6c5dedd72b9c04357c69571f12e2fc39888e217b42fb7e7bb21532a1d9b86f335881d8839ce68dd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-shell@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/activex-shell" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-wia@2.0.7", + "group": "@types", + "name": "activex-wia", + "version": "2.0.7", + "description": "TypeScript definitions for Windows Image Acquisition", + "hashes": [ + { + "alg": "SHA-512", + "content": "b500baf0d1b72ea49b101dbfe902d778b303ce5a5e9fec7f7c4c0e857db919012df4c621a3f98358df6cfc5723cbe7364bec04083f346b6eb16ea34a10dee8b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-wia@2.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/activex-word@14.0.4", + "group": "@types", + "name": "activex-word", + "version": "14.0.4", + "description": "TypeScript definitions for non-npm package Microsoft Word 14.0 Object Library - Word", + "hashes": [ + { + "alg": "SHA-512", + "content": "24de2b7aa8b1799ea6343bf1a8ec8dddd211fc4ca9d6bfd5c7d48dd32c2c600fb1743d983aea09836af8de51bba6712912446a89fc9179aa67d827c83c7580d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/activex-word@14.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/adal-angular@1.0.2", + "group": "@types", + "name": "adal-angular", + "version": "1.0.2", + "description": "TypeScript definitions for adal-angular", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7f63fa05abeabcfec6327d90a95716758793a0b329db0491b81228945461124a58780a1f9a5ef1dfbafe59a944986e9d090f664bd4bfb1d53dcdb0bb5fa82d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/adal-angular@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/adal-angular" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/add-zero@1.0.1", + "group": "@types", + "name": "add-zero", + "version": "1.0.1", + "description": "TypeScript definitions for add-zero", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4a5cbe38164cda0f20b3833ac4922bfd29c1609483adb1b4aeadc5cb80ad59043ac6c6fee408e7eb8c24e87ce136b3088c20f1f6e14290dd80a162f1298c508" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/add-zero@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/add2home@2.0.30", + "group": "@types", + "name": "add2home", + "version": "2.0.30", + "description": "TypeScript definitions for add2home", + "hashes": [ + { + "alg": "SHA-512", + "content": "73e221f80404864aef90644a6f4cb45a12290492261768acf0d840d19966b7b2fc06522ed1188448b5e23c39dce24abce806122a9b17afb1b39494832f6439f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/add2home@2.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/adm-zip@0.4.34", + "group": "@types", + "name": "adm-zip", + "version": "0.4.34", + "description": "TypeScript definitions for adm-zip", + "hashes": [ + { + "alg": "SHA-512", + "content": "f13a182cb01886445f7269a58eb2a2db6813da9aaeee118c0ed3913f57a6c081069a051364eb1a0e3cd61735b93767eb705473ff9d025ade330350b127bde999" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/adm-zip@0.4.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/adone@0.6.30", + "group": "@types", + "name": "adone", + "version": "0.6.30", + "description": "TypeScript definitions for adone", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4ac555a10cd2883d30d5de75c115d02bc26a0e3272660704117c7caa13aae3db00b5be15554a3c5e733f4177f556b77ffd6200488f6edbc5a53fc89eecc2112" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/adone@0.6.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/async@3.2.15", + "group": "@types", + "name": "async", + "version": "3.2.15", + "description": "TypeScript definitions for Async", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c098f7f3bc5037d66468a99c9356c80932cbdbca7478dbd5134f18667ec502ad61a1dff7f13abcea06d6933c9b27e14b734efe156f4fbf3bb0804566faf4de2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/async@3.2.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/async" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/benchmark@2.1.1", + "group": "@types", + "name": "benchmark", + "version": "2.1.1", + "description": "TypeScript definitions for Benchmark", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e674d39aae9492c676f70c4dab445385b04ca8a972d42feec7f274864b6e6fb3e252d34d7c6ddf9c5b931af6f76590f9a84c7490e9ef04505305331784e25fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/benchmark@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/benchmark" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/lodash@4.14.182", + "group": "@types", + "name": "lodash", + "version": "4.14.182", + "description": "TypeScript definitions for Lo-Dash", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd31f28aac9000ff407c0468e2917e68219cca243de2d5ff22cd88ec7a1f351aa860b80dd4f068396bb6ff34c0e73331ccfe4416eb4cb56b4600544a51ef7ad5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/lodash@4.14.182", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/aframe@0.7.2", + "group": "@types", + "name": "aframe", + "version": "0.7.2", + "description": "TypeScript definitions for AFRAME", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f648872eae4055bc7d3179471dc5223c0fb3b25d6e823fc6dd3f1daeccb7ba02ed65a166e23ddfc7408588ecd0c0357bfb2fdae4997eed08674ba3881a37317" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/aframe@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/three@0.143.0", + "group": "@types", + "name": "three", + "version": "0.143.0", + "description": "TypeScript definitions for three", + "hashes": [ + { + "alg": "SHA-512", + "content": "7393e89d73adf31939ab8ca09b28ce5f811cf8503b8307dd70c4ff3ef784f71ac9b3fd030dc7f6949916ae111c9afc7665e7d009005ca200019c6a81d0fe0eb0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/three@0.143.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/three" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/webxr@0.5.0", + "group": "@types", + "name": "webxr", + "version": "0.5.0", + "description": "TypeScript definitions for webxr", + "hashes": [ + { + "alg": "SHA-512", + "content": "2143033d25e76086c43b621eade10572072a7c34443a099b1aab6b32954fa4009353aa65b582f01e0564ae762fd1785611c8e2a3db1811f204ce09f773b9c3a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/webxr@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webxr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/tween.js@18.6.1", + "group": "@types", + "name": "tween.js", + "version": "18.6.1", + "description": "Stub TypeScript definitions entry for @tweenjs/tween.js, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c9b0b29442d1cf32fc44ce1f48cb545bf02f9ad6af0846b66c632db52d7e25f66855b6f7e43f343ba7b480db937662f0a6d1d119d15d32ff970f3a7188fdab7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/tween.js@18.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tweenjs/tween.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tweenjs/tween.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tweenjs/tween.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40tweenjs/tween.js@18.6.4", + "author": "tween.js contributors", + "group": "@tweenjs", + "name": "tween.js", + "version": "18.6.4", + "description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "941f65323baa8edb89af1eff90e92a401b6596ca4f20dfbde8ebd309e2768f9144ce29e80174dd00c1670c0413d4a54f4659d87c1aeac6da8febabc3338d31c5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2010-2012 Tween.js authors.\n\nEasing equations Copyright (c) 2001 Robert Penner http://robertpenner.com/easing/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40tweenjs/tween.js@18.6.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tweenjs/tween.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tweenjs/tween.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tweenjs/tween.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/agenda@1.0.3", + "group": "@types", + "name": "agenda", + "version": "1.0.3", + "description": "TypeScript definitions for Agenda", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b297f4b3979923ef85f7150275980d9038b55733ece106abb520c3bc3092b70fedfba85930c5e52be8fc20685953f4cb867d390b85845213c163a8dc5ed4e19" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/agenda@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mongodb@4.0.7", + "group": "@types", + "name": "mongodb", + "version": "4.0.7", + "description": "Stub TypeScript definitions entry for mongodb, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "94f5183e9cc0e376da5ea9dddfa719f71c68ae9af26f15c3ced7952823c0769d78a691ed1491e75d8bcda6606fb4c5136f97ca5d5bfab156f3a352c791684997" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mongodb@4.0.7" + }, + { + "type": "library", + "bom-ref": "pkg:npm/mongodb@3.7.3", + "author": "The MongoDB NodeJS Team", + "name": "mongodb", + "version": "3.7.3", + "description": "The official MongoDB driver for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ec9be837ff01d786304492d9315ec14c66f7779de988d2bdc83ec1346d4fb8fff3e7bcd58a933859704b1b3dc6225aa7bc5ea5c92448384e0b6bed16b0ebb63" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License." + } + } + } + ], + "purl": "pkg:npm/mongodb@3.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mongodb/node-mongodb-native" + }, + { + "type": "issue-tracker", + "url": "https://jira.mongodb.org/projects/NODE/issues/" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/mongodb/node-mongodb-native.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bl@2.2.1", + "name": "bl", + "version": "2.2.1", + "description": "Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8f7aca75c340c45f5379e748bfb8657f4eab9c54be0033fa604e115237f42af6c8b5fc317d6881ecd41c43f15fd05341e87873ba71045302e6272cf2aad5ee2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright (c) 2013-2018 bl contributors\n----------------------------------\n\n*bl contributors listed at *\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bl@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rvagg/bl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rvagg/bl/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rvagg/bl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bson@1.1.6", + "author": "Christian Amor Kvalheim", + "name": "bson", + "version": "1.1.6", + "description": "A bson parser for node.js and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "baaae0723c8e699b077f3ede6bcccb4422ded6ef901944b33199af5ea3b6e020d6ec35a85b5aa237d7e8952c1aee14a77934a0336ca40c8cc5e6471043c73037" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/bson@1.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mongodb/js-bson#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mongodb/js-bson/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mongodb/js-bson.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/denque@1.5.1", + "author": "Invertase", + "name": "denque", + "version": "1.5.1", + "description": "The fastest javascript implementation of a double-ended queue. Used by the official Redis, MongoDB, MariaDB & MySQL libraries for Node.js and many other libraries. Maintains compatability with deque.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d5404dc001bfe9c45f1f400a22aa9be0f62ddebeaba0de1a22c1a90ec99030266fbabd97a16e46176749782714be23743133deefe5a6913618fcbf9a0185e93" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright (c) 2018 Mike Diarmid (Salakar) \n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this library except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/denque@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://docs.page/invertase/denque" + }, + { + "type": "issue-tracker", + "url": "https://github.com/invertase/denque/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/invertase/denque.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/optional-require@1.1.8", + "author": "Joel Chen", + "name": "optional-require", + "version": "1.1.8", + "description": "NodeJS Require that let you handle module not found error without try/catch", + "hashes": [ + { + "alg": "SHA-512", + "content": "8eaf37a9a51bd30360f4aaefd5ce4e43ee7c10afaf1dd7ba6813f32ef3cfa899bcf54416b2f4ae172f57fce48d26715e48e2a8edbb44d27f0d976fa713ecf99c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "purl": "pkg:npm/optional-require@1.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jchip/optional-require#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jchip/optional-require/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jchip/optional-require.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-at@1.0.6", + "author": "Joel Chen", + "name": "require-at", + "version": "1.0.6", + "description": "Call require pretending your are at another directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee2d5ab896cc52b5c401908e43454d26099c4f654e28f465d98189c20a47a42f4213dd4cbf8ff85182149b8721189688dfcd590ead495227058a2eb81daa5df2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "purl": "pkg:npm/require-at@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jchip/require-at#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jchip/require-at/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jchip/require-at.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/aggregate-error@1.0.1", + "group": "@types", + "name": "aggregate-error", + "version": "1.0.1", + "description": "Stub TypeScript definitions entry for aggregate-error, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "6dd42e541c9245a97808072f0f9f5eb7a9608a2c8711770d66fa4d0d8441f8cfcf46caad9c5d624e41b60c402f9536079f29b007138e08ddfc60665a9e69c9d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/aggregate-error@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/aggregate-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/aggregate-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/aggregate-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aggregate-error@4.0.1", + "author": "Sindre Sorhus", + "name": "aggregate-error", + "version": "4.0.1", + "description": "Create an error from multiple errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "d29a0fd13ede97a56adebb2d47c327e15fc842ba412cee8f3a4512acded187263e185fc89c2152850cec437f53db98241e12e048b072c80cfe2a36fe7362fdf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (https://sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aggregate-error@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/aggregate-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/aggregate-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/aggregate-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-stack@4.2.0", + "author": "Sindre Sorhus", + "name": "clean-stack", + "version": "4.2.0", + "description": "Clean up error stack traces", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d8bfa5cfc68c8e0e2dfa0e9f7beab881b52636ed5985a3e30aa8453d402096c93add10f0e883e45603bc505878ba55ba7ad63e5ce1c773cd7d4d89d9f0b545a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (https://sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clean-stack@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/clean-stack#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/clean-stack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/clean-stack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@5.0.0", + "author": "Sindre Sorhus", + "name": "escape-string-regexp", + "version": "5.0.0", + "description": "Escape RegExp special characters", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdb468ac1e455105af95ad7a53c47faa06852326b6a86cf00eb366099b982ab6dd494306e88d5908641179f911561b8e9081959deec1437e4349fa35aaf26a16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (https://sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/escape-string-regexp@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/escape-string-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/indent-string@5.0.0", + "author": "Sindre Sorhus", + "name": "indent-string", + "version": "5.0.0", + "description": "Indent each line in a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "6aac031564a04a07d1684c1aa39960e4a11c55dff66be0f5aefa06ecd762966633d0dc1193a4ad5a959dcff1e9937e0c28fa71eecf17c54aa299f7102ba80696" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (https://sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/indent-string@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/indent-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/indent-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/indent-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/agora-rtc-sdk@2.6.1", + "group": "@types", + "name": "agora-rtc-sdk", + "version": "2.6.1", + "description": "TypeScript definitions for agora-rtc-sdk", + "hashes": [ + { + "alg": "SHA-512", + "content": "8cf62cccbc51722601499b06f7b48843a2720666ddd969e838370ce95fa929d0305b73d8575fce74a5e6dbef2a91e3ce5f2501444368d48e1bd28bf2daf64f6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/agora-rtc-sdk@2.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ajv-errors@1.0.3", + "group": "@types", + "name": "ajv-errors", + "version": "1.0.3", + "description": "TypeScript definitions for ajv-errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "957bc0b6f28be058b2c6883e0b399afc03c68d115b006522329b03d844140c23305b49b85141308fe14902e44d2a00590faf264483b71ad47668e1d5dc00d50d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ajv-errors@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/alertify@0.3.31", + "group": "@types", + "name": "alertify", + "version": "0.3.31", + "description": "TypeScript definitions for alertify", + "hashes": [ + { + "alg": "SHA-512", + "content": "c50574efb93fde245d00f3ffaeb3046f8b73a31680d7bb62f9fb80597abf049bb5cc5814051cd8ef254e6c19f7c620f955ada884b14db410438d6c0958d06af5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/alertify@0.3.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/alertify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/alexa-sdk@1.1.2", + "group": "@types", + "name": "alexa-sdk", + "version": "1.1.2", + "description": "TypeScript definitions for Alexa SDK for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec382990d1121de897ae3eb759bca67323f53a9d5bbc18d3713a5dfdd270938d33f95a287b04121737f386a2967eef908219e08f2d199a414b41cd7a47b11c62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/alexa-sdk@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/alexa-voice-service@0.0.0", + "group": "@types", + "name": "alexa-voice-service", + "version": "0.0.0", + "description": "TypeScript definitions for alexa-voice-service", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a62c71752b5f57ad5f2b7c5372b1256f583573b200d5a6c88b37f4207333833310c63cac988d9001123a6b7fc9018a4c1f6e26a9f286c326c705600e7309738" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/alexa-voice-service@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/algebra.js@0.2.2", + "group": "@types", + "name": "algebra.js", + "version": "0.2.2", + "description": "TypeScript definitions for algebra.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "e896aeea6a8a0bede00ac601e67c94ab4a32908b8a4375fc46b86a38b5e39bdc9249386e3cd3faebc42f2bc0bcbf24f1654b3e96a813bd59b4c0ba13be8e56df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/algebra.js@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/algebra.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/algoliasearch@3.34.11", + "group": "@types", + "name": "algoliasearch", + "version": "3.34.11", + "description": "TypeScript definitions for algoliasearch-client-javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "14531ba665c21dc81bca99ce518f7c48312888b7366d73b9d60c605f4db2a5bf2cad96676423d5ffc54a927b84b60af55648182eba8b8b90686336515678ba17" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/algoliasearch@3.34.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/allure-js-commons@0.0.0", + "group": "@types", + "name": "allure-js-commons", + "version": "0.0.0", + "description": "TypeScript definitions for allure-js-commons", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ef4443041a6874a19210d7577fbede814afe820f4c376dead545116ba600d5911840bbe50592b783ad1add97ed353c58dfeff27494957552b855c914b6b4e58" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/allure-js-commons@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/alt@0.16.40", + "group": "@types", + "name": "alt", + "version": "0.16.40", + "description": "TypeScript definitions for Alt", + "hashes": [ + { + "alg": "SHA-512", + "content": "01c596cbf440a6f9e4b1d0f920aaa5a9d3922e492d6879a4c8af30711c934e21c4b8a6c8b357bf0e5a9c56936ed1ee402f773c5f8a8ee6f49f909b67aee5f503" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/alt@0.16.40", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/alt" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react@18.0.15", + "group": "@types", + "name": "react", + "version": "18.0.15", + "description": "TypeScript definitions for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b3dc1b4bb88607d6e59db2feb05d8761a3386a8f6d280f8fc79360cd5c89f5905b26a7dc7c77d401e859cf85f91b85dd8f80438db7d435c7f79b9308df14ba3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react@18.0.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/prop-types@15.7.5", + "group": "@types", + "name": "prop-types", + "version": "15.7.5", + "description": "TypeScript definitions for prop-types", + "hashes": [ + { + "alg": "SHA-512", + "content": "24207c0ba4a70e841fd1c37272a77fdf903b3237272be653a84ee3b9d4baa3bbadc540a0ea298983740adaacc72acce54e3723d9c9fe370301da2f7ab9ba63ef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/prop-types@15.7.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prop-types" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scheduler@0.16.2", + "group": "@types", + "name": "scheduler", + "version": "0.16.2", + "description": "TypeScript definitions for scheduler", + "hashes": [ + { + "alg": "SHA-512", + "content": "869a501010e69708450172895f62a758b62ee7231f8bdd726b33dbda5fa56c98b05bec1da3580d79103edd180d48edfd5985f67ae7b2e35284c27a9eb14d897b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scheduler@0.16.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scheduler" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/csstype@3.1.0", + "author": "Fredrik Nicol", + "name": "csstype", + "version": "3.1.0", + "description": "Strict TypeScript and Flow types for style based on MDN data", + "hashes": [ + { + "alg": "SHA-512", + "content": "b97d4a1bec7d87984826c68a47dc4751e52b6b17fc20e0cec2af492cd3eae81c01d386bfc60a6adeb731e3b979059bb9cc13e5803df8dad7647b71e89bf9c944" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017-2018 Fredrik Nicol\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/csstype@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/frenic/csstype#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/frenic/csstype/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/frenic/csstype.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amazon-cognito-auth-js@1.3.0", + "group": "@types", + "name": "amazon-cognito-auth-js", + "version": "1.3.0", + "description": "TypeScript definitions for amazon-cognito-auth-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c2de484a91acd18f25f4a9a1940374b23473b17b5a9774173cea1985096fa266e6afcf9b96a45404e1170b7ec7df3c189b1b56eb95b0b8e67ecc3e5fdb1cfa4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amazon-cognito-auth-js@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amazon-cognito-auth-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amazon-product-api@0.0.33", + "group": "@types", + "name": "amazon-product-api", + "version": "0.0.33", + "description": "TypeScript definitions for amazon-product-api", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a0b30d5d7a017ba1fe89591485d1cf2559252c70756bfd216c9763053300a6b3ae066c3de170de3b0bbbb7a6bf0b6f415c59b17a725da5219c13832410516d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amazon-product-api@0.0.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amcharts@3.21.7", + "group": "@types", + "name": "amcharts", + "version": "3.21.7", + "description": "TypeScript definitions for amCharts", + "hashes": [ + { + "alg": "SHA-512", + "content": "fedb0151c27507be84a41089b4f6480f26d031572e3a54e348c7f9acc3de2adf944153494a6d6b56eec8d471a31bf465ab7069590dbf1ce2e8716afd716c7df2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amcharts@3.21.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amcharts" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amp@0.3.1", + "group": "@types", + "name": "amp", + "version": "0.3.1", + "description": "TypeScript definitions for amp", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab209576a9094395d04642899548d2cd4dfde18ffc26acc3577d7dd77acc044f5436c49e21a9d480e32460ce3f5fcdce8b8327dc932321159cf7d802b135181b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amp@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amp-message@0.1.1", + "group": "@types", + "name": "amp-message", + "version": "0.1.1", + "description": "TypeScript definitions for amp-message", + "hashes": [ + { + "alg": "SHA-512", + "content": "b42570cd1ed9288ef47f899bc7cfa5390ef762ede49fcac3cf074f7075b0126719a90be22bdb8df63d5d6751f044044df187870161b8aa710261716005c4ffe4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amp-message@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amp-message" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amphtml-validator@1.0.1", + "group": "@types", + "name": "amphtml-validator", + "version": "1.0.1", + "description": "TypeScript definitions for amphtml-validator", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d613b7f2e8ab42f94c34295fc70268ee1f6181fe8f32b245e5be655647b98e56c2c3c9ba7e5ebc24cc4791154f701a358a791301346b31fb90d1abbb14b00c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amphtml-validator@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amplify@1.1.25", + "group": "@types", + "name": "amplify", + "version": "1.1.25", + "description": "TypeScript definitions for AmplifyJs", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6aeb5fc4b370bfafc361e4fa294580fb654d4725ca5caeacab3d8e542dbdf45ac81f623776b0122e9ad26d6aaf218fe727170fefc9119a310c97137adf4a82e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amplify@1.1.25", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amplify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/jquery@3.5.14", + "group": "@types", + "name": "jquery", + "version": "3.5.14", + "description": "TypeScript definitions for jquery", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f582d31131bce2550904ae14d09927b68c5c3010d03f66bf8fa6b0a417adef16af98b793d9e0094aaa099e365c209fb761b1710af3cf1e216db9db41290bec6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/jquery@3.5.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sizzle@2.3.3", + "group": "@types", + "name": "sizzle", + "version": "2.3.3", + "description": "TypeScript definitions for sizzle", + "hashes": [ + { + "alg": "SHA-512", + "content": "25833cc7d106175eb76c4ca1749069476417d51e676822470bcb9c272949df0f7f09505ab24750f16a817fc32642b775911be9fdae134bc1c9f9bc7347b64961" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sizzle@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amplify-deferred@1.1.34", + "group": "@types", + "name": "amplify-deferred", + "version": "1.1.34", + "description": "TypeScript definitions for AmplifyJs (using JQuery Deferred)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d744dc8317eee5e13aebc16f9aa3f5d082d6641e7b01234c800366e899a00607c0c7004d211235544c988b8b904ba6774a16d0bba99eedf75aceafa4410d78f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amplify-deferred@1.1.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amplitude-js@2.12.5", + "author": "Arvydas Sidorenko", + "group": "@types", + "name": "amplitude-js", + "version": "2.12.5", + "description": "TypeScript definitions for Amplitude SDK 2.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "09b2bda8f74f270334ff80755bf4213dafe9ec9109e4c29f01791243673cf4dae2a1f57e11ea67e42132d31e5aab663704f87fec8918f6965cb6e0c56db9ff53" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/amplitude-js@2.12.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amqp@0.2.5", + "group": "@types", + "name": "amqp", + "version": "0.2.5", + "description": "TypeScript definitions for amqp", + "hashes": [ + { + "alg": "SHA-512", + "content": "928a6cb7f8073e1410a1d32970033186cacc457e0ecb9b2298597afbb63799a731d7fe71cc702f3c408bc858d20799a4013539e9f2f61d030128ae82439a00c2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amqp@0.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amqp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amqp-connection-manager@2.0.12", + "group": "@types", + "name": "amqp-connection-manager", + "version": "2.0.12", + "description": "TypeScript definitions for amqp-connection-manager", + "hashes": [ + { + "alg": "SHA-512", + "content": "d865f58c6e840a9117405d17ebc8134d973c310f0603474cda601dd62ad3a5694acc62a51b3081b5bd589ea2c7a3334db282ed188e945d2a74ab4ea35352c0ea" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amqp-connection-manager@2.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amqp-connection-manager" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amqplib@0.5.17", + "group": "@types", + "name": "amqplib", + "version": "0.5.17", + "description": "TypeScript definitions for amqplib", + "hashes": [ + { + "alg": "SHA-512", + "content": "4489aa88b3f5b300ea5815bc517f620575443b0e8c633366c5d5ea7de9837ddc2d52f75333f5b4b364654ae31520691185a5afa640bd3bf37cd55cf34307c06f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amqplib@0.5.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/amqp-rpc@0.0.31", + "group": "@types", + "name": "amqp-rpc", + "version": "0.0.31", + "description": "TypeScript definitions for amqp-rpc", + "hashes": [ + { + "alg": "SHA-512", + "content": "2368577bb2b303d274e1d3df3a1c2975c649fb4927eb3f931094e459b7da35b5e4f06e3d35451d8593faef08331fb4fc905c1fd76979ee772a50ed93af62fe17" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/amqp-rpc@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/analytics-node@0.0.32", + "group": "@types", + "name": "analytics-node", + "version": "0.0.32", + "description": "TypeScript definitions for Segment's analytics.js for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "658aed426c0a251b204b4061463be4c6310424310544470cfafef80033d79c6cad4b3712216e9111a1a0edfa71939f2417aab2dbbd9eeb7d51f0c1e61abac773" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/analytics-node@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/anchor-js@4.2.1", + "group": "@types", + "name": "anchor-js", + "version": "4.2.1", + "description": "TypeScript definitions for anchor-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "226fa61d559a79f73dd2d82f2dfe527979ce06491481bace9201cb4cf96964f01afec35290266741ef8da6eb2f18b49c7b0e1bcb013a79d6983a2dca5bc7cf81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/anchor-js@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/anchor-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular@1.8.4", + "group": "@types", + "name": "angular", + "version": "1.8.4", + "description": "TypeScript definitions for Angular JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0f4bf9dc256872c49b2776c5b507a4daf03e268bdef1d7222d4aefab90b0f2b54de844887608502332e25c798c05021f7e0c8a219dd58cd10040f4e5361efd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular@1.8.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-agility@0.0.31", + "group": "@types", + "name": "angular-agility", + "version": "0.0.31", + "description": "TypeScript definitions for AngularAgility", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad359e981b7c63c5f69d9a1a2281472eeeab0b3081abfe780e3cc5f8a132e50d5de2c577345122cc96883f522a1b3cb57efeb8a48348b8f0015b4642ba9d718f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-agility@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-animate@1.5.11", + "group": "@types", + "name": "angular-animate", + "version": "1.5.11", + "description": "TypeScript definitions for Angular JS (ngAnimate module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "2492f604cf694cbcf4d28a97874f649f11ce8ca2c16ccc9bf64f7f0cd596bd0a267b8da23060fe47dfa229a157ea79ef9a53278683b5c0e196be73851e192e8e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-animate@1.5.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-animate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-block-ui@0.2.6", + "group": "@types", + "name": "angular-block-ui", + "version": "0.2.6", + "description": "TypeScript definitions for angular-block-ui", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ed3dbd5a4c4e176ccba7b125945849213eb0ecb53ddc5b5b7de179f52331fd47c0d90b83ca4b93d22f380136d3085d53b564bb19e301e11d914123c8be696f9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-block-ui@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-block-ui" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-bootstrap-calendar@0.0.38", + "group": "@types", + "name": "angular-bootstrap-calendar", + "version": "0.0.38", + "description": "TypeScript definitions for angular-bootstrap-calendar", + "hashes": [ + { + "alg": "SHA-512", + "content": "16c63fb6e009261bd2289306dece6766ddaa1880ff3de9fa6a4a6b2a2f6236beafb5ae1a05a018aa36cc228daf9550244bb68dc4d42a6f3f6b2118a523e461bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-bootstrap-calendar@0.0.38", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/moment@2.29.4", + "author": "Iskren Ivov Chernev", + "name": "moment", + "version": "2.29.4", + "description": "Parse, validate, manipulate, and display dates", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4b0bd48ec6349cd8717abced82cae4c3362bc4768cf622fc892468fa5fc0c9d1e1727eccc4d1088477e897981bd43f7587c528c51ffbc8b00d04374d1c82bf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/moment@2.29.4", + "externalReferences": [ + { + "type": "website", + "url": "https://momentjs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/moment/moment/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/moment/moment.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-bootstrap-lightbox@0.0.29", + "author": "Roland Zwaga", + "group": "@types", + "name": "angular-bootstrap-lightbox", + "version": "0.0.29", + "description": "TypeScript definitions for angular-bootstrap-lightbox", + "hashes": [ + { + "alg": "SHA-512", + "content": "7909ca4db5d0c6c00530652f1c7f074a52cefa1c532b090664ad47e28af6e6e1530c0fb5a27cea6ee923487a9f1787df111d200f3030ee8d332177bc44e36282" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/angular-bootstrap-lightbox@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-breadcrumb@0.4.23", + "group": "@types", + "name": "angular-breadcrumb", + "version": "0.4.23", + "description": "TypeScript definitions for angular-breadcrumb", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c6091f6ce98e3136fcebebc22ead53702ac66f509e635d9cdfcc61761fa4fd09ca0e4cb2f4ae6e3c1aa3c9b6bd6428b3f5d171f88a4ada58f9ee2a69a2076b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-breadcrumb@0.4.23", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-breadcrumb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-ui-router@1.1.41", + "group": "@types", + "name": "angular-ui-router", + "version": "1.1.41", + "description": "TypeScript definitions for Angular JS (ui.router module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d50f2da513f0160e65600f6ea6981f3a31e16af2d158a1dacba5fe5ce1516c293913b54b5e4d3b2374b42c429147061639bfd25b21dbcb6ae7988975fa32401" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-ui-router@1.1.41", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-ui-router" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-clipboard@1.5.2", + "group": "@types", + "name": "angular-clipboard", + "version": "1.5.2", + "description": "TypeScript definitions for angular-clipboard", + "hashes": [ + { + "alg": "SHA-512", + "content": "fba59c9849375edba9f4622ff2bc3a9d2679dee4fe5d26b538f586ac5a2ab59b43cbd12e8b59da0adb91e69397d2ed2901ef319d25a19f6fbe340c28cda3557f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-clipboard@1.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-cookie@4.1.32", + "group": "@types", + "name": "angular-cookie", + "version": "4.1.32", + "description": "TypeScript definitions for angular-cookie", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddb31809f42cb6acc477a5622d1b0254b7249223c97e98ac439e4e92c8a201bb9c4ff859a5ad90be4ceab9aa33f1e208e4ee15372c94eaa922fa7f6ba915a088" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-cookie@4.1.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-cookie" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-cookies@1.8.1", + "group": "@types", + "name": "angular-cookies", + "version": "1.8.1", + "description": "TypeScript definitions for Angular JS (ngCookies module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1c73f62d25349140d16b6d7323f675bc8cb2960246358f436454ab5b281aa1acfe0ecf4b53d3f1ae83f1a392cf3b9d71117d3ffe7c19cb59007e44589c78a25" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-cookies@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-cookies" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-deferred-bootstrap@0.1.8", + "group": "@types", + "name": "angular-deferred-bootstrap", + "version": "0.1.8", + "description": "TypeScript definitions for angular-deferred-bootstrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc7f64c58799051811599b65916de75fda9894552e2e7bfa254216aba0ebf732ba9dffe83a7fd64bf7cf59463410a79a2b97a4ce192f5af29173ca42253c38b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-deferred-bootstrap@0.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-deferred-bootstrap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-desktop-notification@1.1.3", + "group": "@types", + "name": "angular-desktop-notification", + "version": "1.1.3", + "description": "TypeScript definitions for angular-desktop-notification", + "hashes": [ + { + "alg": "SHA-512", + "content": "69d4edd71399cecba65e834218936acfcfcc3f03f3cddd7a8c7926890368cdd0b0cd75067da43b62236f263b04099def17cae9d19fbabe6983f3f6096245e1d6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-desktop-notification@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-desktop-notification" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-dialog-service@5.2.32", + "group": "@types", + "name": "angular-dialog-service", + "version": "5.2.32", + "description": "TypeScript definitions for Angular Dialog Service", + "hashes": [ + { + "alg": "SHA-512", + "content": "0913eb85433ba81a6532b077268703c3897d4d349de6f9203a6c28157c273969410da1f48b268b64ba12fed4938401b3eae6d0a47e027cdbdd466ca6d16ec50c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-dialog-service@5.2.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-dialog-service" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-ui-bootstrap@0.13.47", + "group": "@types", + "name": "angular-ui-bootstrap", + "version": "0.13.47", + "description": "TypeScript definitions for Angular UI Bootstrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "f07330d8c47d94f66df3e03829fe81153d892bed3f11172933cf24fe47b03c139775757391099c274f2d34f84520f2c5f3d76229f03a5f71d9293049afa3cca1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-ui-bootstrap@0.13.47", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-dynamic-locale@0.1.35", + "group": "@types", + "name": "angular-dynamic-locale", + "version": "0.1.35", + "description": "Stub TypeScript definitions entry for angular-dynamic-locale, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "3273b9ab253b1e94921c352fa5ff849bdb260cb8d11060a0b7a49196b7f762586554d1ea2af11a77c18bdab8859127bf3650ed35d524b9d22fa46402a3647d97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-dynamic-locale@0.1.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lgalfaso/angular-dynamic-locale#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lgalfaso/angular-dynamic-locale/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lgalfaso/angular-dynamic-locale.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/angular-dynamic-locale@0.1.38", + "name": "angular-dynamic-locale", + "version": "0.1.38", + "description": "A minimal module that adds the ability to dynamically change the locale", + "hashes": [ + { + "alg": "SHA-512", + "content": "3be6d6bc23642219de7410983d4818cd5af35e5698c0df0a7b85e9a17a060eee3323258d75a140ccc5acb81f9d9ce0fba4aae9f2956493e4a13d21959e3ff7b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2013 Lucas Galfasó\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/angular-dynamic-locale@0.1.38", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lgalfaso/angular-dynamic-locale#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lgalfaso/angular-dynamic-locale/issues" + }, + { + "type": "vcs", + "url": "git://github.com/lgalfaso/angular-dynamic-locale.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-environment@1.0.33", + "group": "@types", + "name": "angular-environment", + "version": "1.0.33", + "description": "TypeScript definitions for angular-environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6b33dceda0455c106d89c0db16fece1f973debc5a1d5572a4f5fb5c06e92cfaade9826f622616dea6e11e0c07f727d17ff1ca8690eca7698a3eb3f21bb38054" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-environment@1.0.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-environment" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-es@0.0.5", + "group": "@types", + "name": "angular-es", + "version": "0.0.5", + "description": "TypeScript definitions for angular-es", + "hashes": [ + { + "alg": "SHA-512", + "content": "77d8e422d3e09375e95cd6f9b1ca49d3cdab7bb49b294dca985b5d2e2b0ccb61ee441ffa1fcbb84b85720ce9afdd662f60033b3e0c3c17a24872a5f263f1c5a7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-es@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-feature-flags@1.4.6", + "group": "@types", + "name": "angular-feature-flags", + "version": "1.4.6", + "description": "TypeScript definitions for angular-feature-flags", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f381d7a6c72cdffad3e8455f002e445c5a6abb053dc9af815dfad1ea233001c0f5bdd8d59dea83b24563402b79eb12e467c5925cb1413b7b10233a160847099" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-feature-flags@1.4.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-file-saver@1.1.4", + "group": "@types", + "name": "angular-file-saver", + "version": "1.1.4", + "description": "TypeScript definitions for angular-file-saver", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e1e036773e9f930b8d58b52b8ad917dde7d386a990b2916b9e223be42bde60e4106cb26f3539cbce6fca2bc91bee5e08897b1a58cad4b1094c5ed285eeaf82a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-file-saver@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-file-upload@2.5.1", + "group": "@types", + "name": "angular-file-upload", + "version": "2.5.1", + "description": "TypeScript definitions for angular-file-upload", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a5efa0dd8499b358b754b67cfc051b6701256603c57cc6e85f01785dda6db0b86aec876eb55f71821dbc9be5c56398f736cecdcb3c0a8ebcb67541bb12ea69c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-file-upload@2.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-formly@7.2.36", + "group": "@types", + "name": "angular-formly", + "version": "7.2.36", + "description": "TypeScript definitions for angular-formly", + "hashes": [ + { + "alg": "SHA-512", + "content": "cda96deafbf558f1cc8379e64e5ee210398f8215b198593471bcbb09e743d1310d2d0bb5d5daf47095960c47cd70afbc358503887c288b5542ef8e3c13a2eab9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-formly@7.2.36", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-formly" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-fullscreen@1.0.33", + "group": "@types", + "name": "angular-fullscreen", + "version": "1.0.33", + "description": "TypeScript definitions for AngularJS HTML5 Fullscreen", + "hashes": [ + { + "alg": "SHA-512", + "content": "8110edc8f0cc1de501c2103d3375d8d6c9498ba04dbfb3d18c4082ffb926d8c33e4bd75481fd2c6720e0594cd43bfd9f0907962ccc12ed92503d1e5b55244a1d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-fullscreen@1.0.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-fullscreen" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-gettext@2.1.34", + "group": "@types", + "name": "angular-gettext", + "version": "2.1.34", + "description": "TypeScript definitions for angular-gettext", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b3c95611c22108e073fe157c6fb4580affeaa70ee03bf3cea207361d09d5c456a7b083be51e98e69151d5e0b737c1e6c580d3f14343d3bd9d2a3d1cc601d953" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-gettext@2.1.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-google-analytics@1.1.33", + "group": "@types", + "name": "angular-google-analytics", + "version": "1.1.33", + "description": "TypeScript definitions for angular-google-analytics", + "hashes": [ + { + "alg": "SHA-512", + "content": "bb9fe4d50ec4acd1fef03fa4dbf0e8c30ba63ddb3f7d0e5946b0d15cb2811fe86256dac6cf18afd491379c6098229469b73355dfde7892c99510cbab972a8f9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-google-analytics@1.1.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-gridster@0.13.7", + "group": "@types", + "name": "angular-gridster", + "version": "0.13.7", + "description": "TypeScript definitions for angular-gridster (gridster module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "52072839ddec87a7f61433798b1ac338d08aae8b0e1fade21af53bd547b0215c4b290dfcc3ed4e89f1464ae52815db28743bd9e08acc165e54249897613b639b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-gridster@0.13.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-gridster" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-growl-v2@0.7.2", + "group": "@types", + "name": "angular-growl-v2", + "version": "0.7.2", + "description": "TypeScript definitions for Angular Growl 2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6493921bf977b22fb4bc1eda1613394745cec0adf881cba382fc7970a0c68e71371bcd23986e2b576fa157ad89a0d0c399eeccad303b4c6e0aaed5c878a2f95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-growl-v2@0.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-growl-v2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-hotkeys@1.7.3", + "group": "@types", + "name": "angular-hotkeys", + "version": "1.7.3", + "description": "TypeScript definitions for angular-hotkeys", + "hashes": [ + { + "alg": "SHA-512", + "content": "c01ee786b3b369c733a2f52207a5b6bc6071a08e30207281de962f06ae07920b0d692126372c09dd83df18416065a06947edceefd7769f087a5c5a3c4777159e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-hotkeys@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-hotkeys" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-http-auth@1.2.33", + "group": "@types", + "name": "angular-http-auth", + "version": "1.2.33", + "description": "TypeScript definitions for angular-http-auth", + "hashes": [ + { + "alg": "SHA-512", + "content": "03ef629857a48aeb7ac5b4258d06d1a1538856c22dc7169968b118916b861aacfb943a8af38f97b116a8e78b9ac1d67df44bf9e30e58410ecd4d5bcee6afeacb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-http-auth@1.2.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-httpi@0.0.31", + "group": "@types", + "name": "angular-httpi", + "version": "0.0.31", + "description": "TypeScript definitions for angular-httpi", + "hashes": [ + { + "alg": "SHA-512", + "content": "f6d60fbd4e57017badc5145ff14e5e2426b83f4cd25bc075d42d6aaa119fe0ad01a773cbcc9bcec6202f5698c3f42ae35eec22f01127507747da049b50dd6893" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-httpi@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-idle@1.1.31", + "group": "@types", + "name": "angular-idle", + "version": "1.1.31", + "description": "TypeScript definitions for ng-idle", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd64017810c1f8f20f4490a63e384cd0154972b7f6c30d516716a5c7cb974c518123df3c4dfb44123a113378c854e59765e59c7f187ee1168c8e9ca3f46a43fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-idle@1.1.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-jwt@0.0.29", + "group": "@types", + "name": "angular-jwt", + "version": "0.0.29", + "description": "TypeScript definitions for angular-jwt", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd2c638b834e3f9a2e2dee471963a5b32513faf3158d830193dd2d38656360db4715bd1a9d53ba9168bf00aecf93ad0da2c87eeb744eb7b4c3f444a70add964d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-jwt@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-load@0.4.29", + "group": "@types", + "name": "angular-load", + "version": "0.4.29", + "description": "TypeScript definitions for angular-load", + "hashes": [ + { + "alg": "SHA-512", + "content": "1943b42c24a14d1249272bd662f4bf54b9a085e59cd4805bb00f89b9f95077b5192d343c7f88b3b295829b8c9a5a3935cddfa33fe7c3eb01aa31802850bf00d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-load@0.4.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-loading-bar@0.0.35", + "group": "@types", + "name": "angular-loading-bar", + "version": "0.0.35", + "description": "TypeScript definitions for angular-loading-bar", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8d6d7eaffbdbfaf5699aa7327424b47a8d9d6b9808f0a983c9d86609d96e26442d3e1905c341e36900c244e61d333b32799e32ca7b0c28c4bf1bec70379d1cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-loading-bar@0.0.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-local-storage@0.6.2", + "group": "@types", + "name": "angular-local-storage", + "version": "0.6.2", + "description": "TypeScript definitions for angular-local-storage", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b87b14801f25c40e02c4dec0b4187bbc3f95a20d72a1114ba88af06943d77c4ddce4a2f57f364222a2bd862eeaf4ec8596fde9ef4475e1a969040f915801d04" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-local-storage@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-localforage@1.2.37", + "group": "@types", + "name": "angular-localforage", + "version": "1.2.37", + "description": "TypeScript definitions for angular-localForage", + "hashes": [ + { + "alg": "SHA-512", + "content": "b15f13aefbd519c7026010520be87d696dc41412874edb42560ade1844218ae9c27d498228539dee7e6b9daf3e71319fa2b48dcf2ac3488b67fb21f566c91177" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-localforage@1.2.37", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-localforage" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/localforage@1.10.0", + "author": "Mozilla", + "name": "localforage", + "version": "1.10.0", + "description": "Offline storage, improved.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d78fc7d5a5fb8730419a687bb063ddf8038c92422b1ccdd9d4f0321a0662800d47d69e4ee403673325b3be90044ed1baf3f742e290b49dccb7f8f3c6cd76473e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright 2014 Mozilla\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/localforage@1.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/localForage/localForage" + }, + { + "type": "issue-tracker", + "url": "http://github.com/localForage/localForage/issues" + }, + { + "type": "vcs", + "url": "git://github.com/localForage/localForage.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-locker@2.0.34", + "group": "@types", + "name": "angular-locker", + "version": "2.0.34", + "description": "TypeScript definitions for Angular Locker", + "hashes": [ + { + "alg": "SHA-512", + "content": "736f889fcfbdb888a7f2e2154a33e720e6cf00a7fbc1c1d95efa5564fc77925d6f28668ac86207214a4605a3fcdbd8b90b20cec2efaa2690162b05a3fe3a730a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-locker@2.0.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-locker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-material@1.1.73", + "group": "@types", + "name": "angular-material", + "version": "1.1.73", + "description": "TypeScript definitions for angular-material", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d1ea8f623f12d721401145d52749794850dce6bff4ed99563d39e5faa3f9bea2ee149c8874aeb5c6ec27ff913f5951f9de1edf91caaa486db922504337d670f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-material@1.1.73", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-material" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-media-queries@0.6.21", + "group": "@types", + "name": "angular-media-queries", + "version": "0.6.21", + "description": "TypeScript definitions for Angular matchMedia (angular.matchMedia module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3456ab1a3febc64736261f359ea5cb1a615f6420903a8351809a13308d3f163e15ed5d58509a2c74b6cc24e722cbb86874d843159778abc856e34ea30ebfd1d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-media-queries@0.6.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-meteor@0.8.36", + "group": "@types", + "name": "angular-meteor", + "version": "0.8.36", + "description": "TypeScript definitions for Angular JS Meteor (angular.meteor module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "85910308f6bdf7ce4e9917a43a7e0af411d0fe4f7a050fdf3e8e10cf3284bd991f50a23db24f1b597927dd6c079d0792ae2a84c3b5a62842accfb3b0d09aa35b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-meteor@0.8.36", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-meteor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/meteor@2.7.1", + "group": "@types", + "name": "meteor", + "version": "2.7.1", + "description": "TypeScript definitions for Meteor", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cba0328a29545b2c8502035172e35faf2e3462e8cd6232bddb1afab41f3ffae92ada62e890d0c8add6a97663867fecea3ef585d852291396683049334f13a3c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/meteor@2.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/meteor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/underscore@1.11.4", + "group": "@types", + "name": "underscore", + "version": "1.11.4", + "description": "TypeScript definitions for Underscore", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8ee020f610b3a3c3cb5ab14ac086f9e7d96e00d191023af3230a2bc9af8800f691a08effaac4a598f462d331510af1e8fce41c503a8714c84ee122699241872" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/underscore@1.11.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/underscore" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-mocks@1.7.1", + "group": "@types", + "name": "angular-mocks", + "version": "1.7.1", + "description": "TypeScript definitions for Angular JS (ngMock, ngMockE2E module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3891a40bf2c3065080d5efacdb277317e9aa8f9e0ed699fcfdd6e76cf9670d4051d3752bba28364d232a4865501dad69c97eaadf2f9572b1a09e8d35b725523" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-mocks@1.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-mocks" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-modal@0.5.33", + "group": "@types", + "name": "angular-modal", + "version": "0.5.33", + "description": "TypeScript definitions for angular-modal", + "hashes": [ + { + "alg": "SHA-512", + "content": "165e5600d0e9cf30f436ea47e382973b0195b534af87e23b28b6690e170bb75201e28695ebc4294eb753b140c750bff63b5dcac044c0313dee3b8a7d17d1d5fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-modal@0.5.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-modal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-notifications@0.0.31", + "group": "@types", + "name": "angular-notifications", + "version": "0.0.31", + "description": "TypeScript definitions for angular-notifications", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce365a0f46ca605b9ceb49b7a8a37e3f1ae346e94920e9ebf883883ccb928040ac078bfbfd3e007277abe518fa9515548a2f3ce43006685ed56a8dda813c8f0e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-notifications@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-notify@2.5.34", + "group": "@types", + "name": "angular-notify", + "version": "2.5.34", + "description": "TypeScript definitions for angular-notify", + "hashes": [ + { + "alg": "SHA-512", + "content": "2128ea863624a1368020c219ae7ff7bf422f7fbab5ee0b77b043865cc53c0e91adf81aaee1fdbf3b68e05c0ac39a012898427da4033b7e6266866c25e4527350" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-notify@2.5.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-notify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-oauth2@4.1.5", + "group": "@types", + "name": "angular-oauth2", + "version": "4.1.5", + "description": "TypeScript definitions for angular-oauth2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ea192e8df63200d4c23f5c40dd38fcee900d8f128f24d93feb677e8b8db17eec8ffbc715f41eb7eb22f4a6f0e4b1e0aaf77efa835cd677f2188ee18973aed6e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-oauth2@4.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-oauth2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-odata-resources@0.0.31", + "group": "@types", + "name": "angular-odata-resources", + "version": "0.0.31", + "description": "TypeScript definitions for OData Angular Resources", + "hashes": [ + { + "alg": "SHA-512", + "content": "a36aed7e99165d5f4afc124ec1aaf486b0fedb371e4510b362189f4823caa638082f3ee93a864a92ec1d61b7f8a03cb2fb29c914f1031a83c6f47c3854fcdeea" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-odata-resources@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-pdfjs-viewer@1.0.1", + "group": "@types", + "name": "angular-pdfjs-viewer", + "version": "1.0.1", + "description": "TypeScript definitions for angular-pdfjs-viewer", + "hashes": [ + { + "alg": "SHA-512", + "content": "50040f5f1c804c007a16cfe20aec029ad1d2accb55ea69df331545f6b5affe69d4e9489720d5831beccbfe2b9102d528f1b6b11d09f030f9dd9f5441ee17b2ee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-pdfjs-viewer@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-permission@2.3.23", + "group": "@types", + "name": "angular-permission", + "version": "2.3.23", + "description": "TypeScript definitions for angular-permission", + "hashes": [ + { + "alg": "SHA-512", + "content": "7eee3c1e686c52d2135672dcaebda9ec476468337d66e6dfbb243ae70e28001de21bf07dbcead19d722811ecd38991c140681e5323f3f4a5cbf20e39a6a3f50b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-permission@2.3.23", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-permission" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-promise-tracker@2.2.5", + "group": "@types", + "name": "angular-promise-tracker", + "version": "2.2.5", + "description": "TypeScript definitions for angular-promise-tracker", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbb91faee8362abb732d3e7989c290f18c9e6bbd9a869dc5ec6f3542c667e081a583aa9bdeeac80bdc56c28bd985579e906bb5c25ff9daa0ce22cec7a57f2477" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-promise-tracker@2.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-promise-tracker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-q-spread@0.0.6", + "group": "@types", + "name": "angular-q-spread", + "version": "0.0.6", + "description": "TypeScript definitions for angular-q-spread module", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f8e752ef7a21a3fd9183b2e27f4aedbdb5ce1f9b7219be5d6455c041f54f6606c4cf3ba084b492cf0b30cacc3dc73760a35a88c48e9f8a68822a2cdb5ee37fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-q-spread@0.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-resource@1.5.17", + "group": "@types", + "name": "angular-resource", + "version": "1.5.17", + "description": "TypeScript definitions for Angular JS (ngResource module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cfcb1bab6f4ab1932b5063fcf0ba732b771fc795bf9567535e8aaded2f527e1ed755bc0d4080d7064d8e5aa271f7baa6cb9caac10127516dfbed0314f71825e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-resource@1.5.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-resource" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-route@1.7.2", + "group": "@types", + "name": "angular-route", + "version": "1.7.2", + "description": "TypeScript definitions for Angular JS (ngRoute module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ce53a014295bbfeff2d9903a553339840f4ffb90bdf12ea2f36b78cd9808e0104a5406c29331171718013c5ee2d2d76dd98c66c6e79536406c3683e8efccd7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-route@1.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-route" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-sanitize@1.8.1", + "group": "@types", + "name": "angular-sanitize", + "version": "1.8.1", + "description": "TypeScript definitions for Angular JS (ngSanitize module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b50ea4ca2ed0e625afe64df2166a6acd36817b5662085e7eae51a09b22ceff896dbb610b5cc3c39eadfc2800b03671d55ae2c92575e7d95f937cc17052f179ab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-sanitize@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-sanitize" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-scenario@1.3.32", + "group": "@types", + "name": "angular-scenario", + "version": "1.3.32", + "description": "TypeScript definitions for Angular Scenario Testing (ngScenario module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "8270f597d1a389128cc66f6c9f58d7732203232604c63ab504a42aff3f72d57ea91a27f4db1eb76fa8954f6c0e770c749531eb6a0e660f3eb3b2b7f5d77a0dcc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-scenario@1.3.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-scenario" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-scroll@0.0.31", + "group": "@types", + "name": "angular-scroll", + "version": "0.0.31", + "description": "TypeScript definitions for angular-scroll", + "hashes": [ + { + "alg": "SHA-512", + "content": "593f0a4fff3a21d563df2657da6aad9d884502dfbdf8333a0eafd734ba3be73a7f410df0a894a25c59588a8f1e613b56cea32e3bdb1edb72243843df478e4e6b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-scroll@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-signalr-hub@1.5.33", + "group": "@types", + "name": "angular-signalr-hub", + "version": "1.5.33", + "description": "TypeScript definitions for angular-signalr-hub", + "hashes": [ + { + "alg": "SHA-512", + "content": "03136eb7e51dcb49241ce67b31ad62d2fc0968091857973e735d90f5567483ab7a10559dfb3525b9c91f82b99960717725fd620e486962c36c8f3a4858e9cc6f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-signalr-hub@1.5.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-signalr-hub" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/signalr@2.2.37", + "group": "@types", + "name": "signalr", + "version": "2.2.37", + "description": "TypeScript definitions for SignalR", + "hashes": [ + { + "alg": "SHA-512", + "content": "39acbd23771ebf1c1f42573ccbad053ddb6c911a9808f98331961a98e6dc0fe92bd6e0c2fc499f393ff6026aca87fe09435e3cc966d391a76777c64b339b4e14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/signalr@2.2.37", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/signalr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-spinner@0.5.32", + "group": "@types", + "name": "angular-spinner", + "version": "0.5.32", + "description": "TypeScript definitions for angular-spinner.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "daf2a5392cf130c9903ccd29c57199e34258922c116ee2af8fa7885d482caed87a29bf738a49f00821bbc98b282053f52c6d31ae0292f246e3728f2515d1ab2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-spinner@0.5.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-storage@0.0.32", + "group": "@types", + "name": "angular-storage", + "version": "0.0.32", + "description": "TypeScript definitions for angular-storage", + "hashes": [ + { + "alg": "SHA-512", + "content": "bda299812fb632f3af1378f0c8808ee4848264d4d953a89deda69fceb7aad972046c756a770f3d69938818e0d95126a850abec27ea2b59ae4d3ef48599145bda" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-storage@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-strap@2.3.2", + "group": "@types", + "name": "angular-strap", + "version": "2.3.2", + "description": "TypeScript definitions for angular-strap", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2831395920e1993b35f83614a2894562c7edb90126e7806b139652f87cd76585f21a5f39c2a0795d7bab5eee8b470c52aa8fab3bb7c2bf4728332d81dab7de0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-strap@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-strap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-toastr@1.6.35", + "group": "@types", + "name": "angular-toastr", + "version": "1.6.35", + "description": "TypeScript definitions for Angular Toastr", + "hashes": [ + { + "alg": "SHA-512", + "content": "83a78b1d00bff4b7542a69a1926e35909338414d6ee1f0b8659049f844438b7cd0a73aa31ccdab21bb587a05b67da6639a2b3225f779c01fbde1a661ea6ae1d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-toastr@1.6.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-toastr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-toasty@1.0.32", + "group": "@types", + "name": "angular-toasty", + "version": "1.0.32", + "description": "TypeScript definitions for Angular Toasty", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa57521b0bb396df4585ab1f2070e0d382484673b9b12597d9d093e418aaa9065b7711c3067d280bd3d2e263d7b9e1e7a8fbfeb2d16b076c9c299b8d8d4b6da6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-toasty@1.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-toasty" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-tooltips@1.2.2", + "group": "@types", + "name": "angular-tooltips", + "version": "1.2.2", + "description": "TypeScript definitions for angular-tooltips", + "hashes": [ + { + "alg": "SHA-512", + "content": "71c8144ab7445b0a7d7fd58748d7e452f3235758422fdcf3e26b2523c39d2327c1a0d3f84113e62b5e17e971f0e53c9107d3fa9ea96ff12b563119fa75ab9193" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-tooltips@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-tooltips" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-translate@2.19.0", + "group": "@types", + "name": "angular-translate", + "version": "2.19.0", + "description": "TypeScript definitions for Angular Translate (pascalprecht.translate module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "0640cce67967c5b67523c9a6c4653ece1c11f57ff2ad8c23eeb0cda4cf4871be87cb2d52a13c17f31e8ae112bbd69c284a8695b264cab92956ff05b3fa03bf2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-translate@2.19.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-translate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-ui-notification@0.0.4", + "group": "@types", + "name": "angular-ui-notification", + "version": "0.0.4", + "description": "TypeScript definitions for angular-ui-notification", + "hashes": [ + { + "alg": "SHA-512", + "content": "88142c3096e6a1326d59813b625ebd12b08e74a823bc54a105c071c74272c795551428e3e236e89fc9aea65760ada28e8e1e308f01d886df96a701e651294471" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-ui-notification@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-ui-scroll@1.3.34", + "group": "@types", + "name": "angular-ui-scroll", + "version": "1.3.34", + "description": "TypeScript definitions for Angular JS (ui.scroll module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "a258b5992eddf9e918fe53e08a56d7f2190ac9c5eebfa8d790fff8f41a71651b5901ebba242e3d5d62699946cdf71df1ad6e126bd82b7473a8cb9bc7556c3707" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-ui-scroll@1.3.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-ui-sortable@0.13.36", + "group": "@types", + "name": "angular-ui-sortable", + "version": "0.13.36", + "description": "TypeScript definitions for angular.ui.sortable module", + "hashes": [ + { + "alg": "SHA-512", + "content": "0efef379e46ed23b799dc1d96375dce406ff7494d28f47ce328b27e5ad5f1553b56d14b8fb36887b77ccf7060147a7e74cd71680fde16bb75d4f2a5a9346504a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-ui-sortable@0.13.36", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-ui-sortable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/jqueryui@1.12.16", + "group": "@types", + "name": "jqueryui", + "version": "1.12.16", + "description": "TypeScript definitions for jQueryUI", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea1b80403a4d96ca3d6b26944fd6a604e037923d363827945acf94bc399b6899b09074a0fc72ec40ea1aa7f0f9baf78df5e3f097bd8de39065f85ae9e71c86d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/jqueryui@1.12.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jqueryui" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-ui-tree@2.8.31", + "group": "@types", + "name": "angular-ui-tree", + "version": "2.8.31", + "description": "TypeScript definitions for angular-ui-tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "018b907e7a2d5bbcdfc14a50e9ad629ff9704a5cf50ac96c891376c85cfb83133b35d176fa6785d7a9181593f4a5416c7ae9884d36b4d8d2116db3816c05d167" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-ui-tree@2.8.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-websocket@2.0.9", + "group": "@types", + "name": "angular-websocket", + "version": "2.0.9", + "description": "TypeScript definitions for angular-websocket", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf19712cb94eed44a5b7ee3c596e1f8e5ca24cb9f5cff683d7e07f4148775a8de5a886007f3760488e897a38c31a645e523d7326058c2b46e724bdb489e1cf90" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-websocket@2.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angular-websocket" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-wizard@0.6.33", + "group": "@types", + "name": "angular-wizard", + "version": "0.6.33", + "description": "TypeScript definitions for Angular Wizard", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef89269761b2c451beeae6caeba10de86970b180a30de62eec99b1173b0808cb53fba862618b5fce967000e4ff4c0c888879b6477c6932ff5249a8df73fbb80a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-wizard@0.6.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular-xeditable@0.2.7", + "group": "@types", + "name": "angular-xeditable", + "version": "0.2.7", + "description": "TypeScript definitions for Angular xEditable (angular.xeditable module)", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a6a2f1c6a5aa9bff754bb97dddde3c102108d5128b84bfe698431d146700a1aeda2a447f2f66db54026cb87bca95e50dc33acf16eb8122b53bf371c14c75c3f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular-xeditable@0.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angular.throttle@0.0.31", + "group": "@types", + "name": "angular.throttle", + "version": "0.0.31", + "description": "TypeScript definitions for angular.throttle", + "hashes": [ + { + "alg": "SHA-512", + "content": "53c0e5faf6a3d12cb3d7b838a2bdb17991f8b2db358609732cc68253cb08a870b07f9ee8e603f4fb3e903d5858f14b4934e6b9c3db1318ec6e013cfa7dbda91b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angular.throttle@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angularfire@0.8.34", + "group": "@types", + "name": "angularfire", + "version": "0.8.34", + "description": "TypeScript definitions for AngularFire", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a57b2441b31a78824e60b59356f2270f85057a40bf6f6966a79badd5d4abfa24638ba60d15007f6cc4a65955ff92a5e4baa8bec8cf0bb4f731cf0cee5c7a1d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angularfire@0.8.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/firebase@2.4.32", + "group": "@types", + "name": "firebase", + "version": "2.4.32", + "description": "TypeScript definitions for Firebase API", + "hashes": [ + { + "alg": "SHA-512", + "content": "587b83909ab83e31f71f39a8816b2d5ffafefdcd1d185abb1757d9f4b813fc1e3387fd1fa6cd1f5312c336db92259f8f2c8a66fc400b06172a66bd2ab44cbce6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/firebase@2.4.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angularlocalstorage@0.1.33", + "group": "@types", + "name": "angularlocalstorage", + "version": "0.1.33", + "description": "TypeScript definitions for AngularLocalStorage", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e9d61f5073fab03d8aa3839ac8cf412d00011f7a02f1e1f7b5febdb90f603229432f2052404a8c73d2796983e731edfb93ef7b80ed99a999af5c9a52136fc65" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angularlocalstorage@0.1.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/angularlocalstorage" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/angulartics@1.4.1", + "group": "@types", + "name": "angulartics", + "version": "1.4.1", + "description": "TypeScript definitions for Angulartics", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f0f26e2e881807a93847314d565359aa479980e4ff36cd6d098576c2b53169f720415392a744a972d143a52b4f32e0796ab51adc0996f09fb58b40bf8f49aec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/angulartics@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/animation-frame@0.1.29", + "author": "Qinfeng Chen", + "group": "@types", + "name": "animation-frame", + "version": "0.1.29", + "description": "TypeScript definitions for animation-frame 0.1.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "51a30adcfe0cf757fa7e5198def663a067295986726bc44076c9d4a1473fe19a67ab404bdbd364d18e30b19524d2a9fab58bcdd3c91db19a89028bd62e875ea7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/animation-frame@0.1.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/animejs@2.0.2", + "group": "@types", + "name": "animejs", + "version": "2.0.2", + "description": "TypeScript definitions for animejs", + "hashes": [ + { + "alg": "SHA-512", + "content": "002ca6150e6a812ad9351d45aa393b5aff601fa74581e8e7da0a4b92471e5b14cace2bd126cb215f8c6105500b82f17bf6051d5e230244876eb0def6f17a5e18" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/animejs@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/annyang@2.6.2", + "group": "@types", + "name": "annyang", + "version": "2.6.2", + "description": "TypeScript definitions for annyang", + "hashes": [ + { + "alg": "SHA-512", + "content": "87e88c49387314d45b3156f7159104a169e9aed22271ca6deb961c430a6442533c26ca659a738d62c8004c1d53924a3f75bc2ed46c9f361d5337609e189efdef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/annyang@2.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/annyang" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ansi-colors@1.0.1", + "group": "@types", + "name": "ansi-colors", + "version": "1.0.1", + "description": "TypeScript definitions for ansi-colors", + "hashes": [ + { + "alg": "SHA-512", + "content": "97ff6d93436292c7ff2396e818450d9fd899d9bd045b71d311624ce1641153152c0a6e93a68926c165f4ad44a90fca8733472bdedea04baafb75f12bc751e785" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ansi-colors@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ansi-escapes@3.0.1", + "group": "@types", + "name": "ansi-escapes", + "version": "3.0.1", + "description": "TypeScript definitions for ansi-escapes", + "hashes": [ + { + "alg": "SHA-512", + "content": "183fd02d41b14afcb7c8641bfa6d76aac46d3f8a7f75ec0d78f0dbe45f2a575f425ee3be82d6ec98c8e3b029691bf36ef38cbc485d733caad39d06470e23d482" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ansi-escapes@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ansi-regex@3.0.0", + "group": "@types", + "name": "ansi-regex", + "version": "3.0.0", + "description": "TypeScript definitions for ansi-regex", + "hashes": [ + { + "alg": "SHA-512", + "content": "d78fc7ad202964b6c7708330eba446381f5dfa790ce1efc41c0642d3ae4f582cb31af75029a256bc082e6a4d72a6b589deca7b23ec8bbfbb89c4b565758800e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ansi-regex@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ansi-styles@3.2.1", + "group": "@types", + "name": "ansi-styles", + "version": "3.2.1", + "description": "TypeScript definitions for ansi-styles", + "hashes": [ + { + "alg": "SHA-512", + "content": "5056bb99f2a04aeb57753f9e973268f1496bec51e02cd03282554839961714d255404466f033eb7303eb7ade41624eba2c113b7f09b55e85468bbe8c26443aa3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ansi-styles@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/color-name@1.1.1", + "group": "@types", + "name": "color-name", + "version": "1.1.1", + "description": "TypeScript definitions for color-name", + "hashes": [ + { + "alg": "SHA-512", + "content": "aebf8e432023c737bb1a05ab49a270c9d1d2b48847ab696f63704e0b6323eca9f323b5cad14c354ce39d23d943a1a8c46d258b898828a387f5479d5ead07e13d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/color-name@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ansicolors@0.0.30", + "author": "rogierschouten", + "group": "@types", + "name": "ansicolors", + "version": "0.0.30", + "description": "TypeScript definitions for ansicolors", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffc633b02444307edbeb13f8127a4a94d2b676812f1beecd7e67b5578a881c185991eb2dc691499fab4bc6dd3ecb64816108c32ce0100248c44ecf26700b5af8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/ansicolors@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/antlr4@4.7.2", + "group": "@types", + "name": "antlr4", + "version": "4.7.2", + "description": "TypeScript definitions for antlr4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bfa3404b365ae295203b640926a1874d14417d90d33a4dac6afbae8127c22dab514dddaaf94b56d08eee6fd9a3cc44619bb696a86c418bcf3a1e72642d888810" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/antlr4@4.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/any-db@2.1.32", + "group": "@types", + "name": "any-db", + "version": "2.1.32", + "description": "TypeScript definitions for any-db", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2a9d7bad4b56b2c033492b1faf4b0d841ae625e2d3427a02fe77eaae41bf5ef24f2fb189539461d5c5085bcce437fa2149c87da923fb573118e319071ca1198" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/any-db@2.1.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/any-db" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/any-db-transaction@2.2.31", + "group": "@types", + "name": "any-db-transaction", + "version": "2.2.31", + "description": "TypeScript definitions for any-db-transaction", + "hashes": [ + { + "alg": "SHA-512", + "content": "2bb269d4d2e7a0e21c8b242bcf253c185eb2fb8e76f9625b48220562b89ac6cf1518cea2e39a9e2017df6c25290cd21e459a1c46534ff261eff6bfb4a0463b85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/any-db-transaction@2.2.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/any-db-transaction" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/anybar@2.0.2", + "group": "@types", + "name": "anybar", + "version": "2.0.2", + "description": "TypeScript definitions for anybar", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e321b16180f2c53d65dfbf9979fdf4a5bd898c4ae371bfcd452f3161a422d2f59bfaf57205e99e602f4e4b1ad34bd4919ae0372b3660b126e19d2354f1c288f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/anybar@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/anymatch@1.3.1", + "group": "@types", + "name": "anymatch", + "version": "1.3.1", + "description": "TypeScript definitions for anymatch", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffe0913d7a410e9a3644af42ebc3776f670ebced027f907d68f8a31eca034131e2be719239b74e17605140e623a235930f2ea742f3239aa4572311f9e558f1c4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/anymatch@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/apex.js@2.0.5", + "group": "@types", + "name": "apex.js", + "version": "2.0.5", + "description": "TypeScript definitions for apex.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "c75032350e5421ba5aa7c364b753682255e5387c9a34a9652efab912c092f0b3b108c6e1d9c1c2f6dd81396a25551e030eb0d451a1ecf70465dd24ccfaf2c94b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/apex.js@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/aws-lambda@8.10.101", + "group": "@types", + "name": "aws-lambda", + "version": "8.10.101", + "description": "TypeScript definitions for AWS Lambda", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3881e1b255cd07f4ff5a19b720fef9038796a426ad1b11fded8b31cd47677581c9b4c2ca7d219fd25baacfc6f8232458b739e5710dcf164ca0808e865ba20ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/aws-lambda@8.10.101", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aws-lambda" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/aphrodite@0.5.13", + "group": "@types", + "name": "aphrodite", + "version": "0.5.13", + "description": "TypeScript definitions for Aphrodite", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4b8bafa62d06202ab418a29561f3233c3211e07f68ec45b0ebb907aacc658e4570b856a8187fa1ffd7c4c1fcf4a5289202ed037c2084bc6a801804c1afbe10f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/aphrodite@0.5.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/csstype@2.6.20", + "author": "Fredrik Nicol", + "name": "csstype", + "version": "2.6.20", + "description": "Strict TypeScript and Flow types for style based on MDN data", + "hashes": [ + { + "alg": "SHA-512", + "content": "b97d4a1bec7d87984826c68a47dc4751e52b6b17fc20e0cec2af492cd3eae81c01d386bfc60a6adeb731e3b979059bb9cc13e5803df8dad7647b71e89bf9c944" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017-2018 Fredrik Nicol\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/csstype@2.6.20", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/frenic/csstype#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/frenic/csstype/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/frenic/csstype.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/api-error-handler@1.0.33", + "group": "@types", + "name": "api-error-handler", + "version": "1.0.33", + "description": "TypeScript definitions for api-error-handler", + "hashes": [ + { + "alg": "SHA-512", + "content": "72ec75b8edd07f7d3f22e9b6c051bc2501b0b88ec2ad4d72130944621ff57cef45723869d25963935bd9425d5175655945ee458064948d0595206d67ec942aa2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/api-error-handler@1.0.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/api-error-handler" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/apicache@1.6.1", + "group": "@types", + "name": "apicache", + "version": "1.6.1", + "description": "TypeScript definitions for apicache", + "hashes": [ + { + "alg": "SHA-512", + "content": "bcd521f25a689cc8c838f195a74e317fd6af6f99494d1eaa496dc84b744e9ae80c14bbcd5f02379cf0b52679e803acf2102ec71ea5b42c67ee2d2b9edf60bd75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/apicache@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/apicache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/apigee-access@0.0.4", + "author": "Casper Skydt", + "group": "@types", + "name": "apigee-access", + "version": "0.0.4", + "description": "TypeScript definitions for apigee-access", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ee98d4ba11ec58456b3781c13e0f60e9ce34ca7c08691634610f170c915b0623816c85885adcdb58dffc2b37586f74ee8424c09a58d67017466723f02b75149" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/apigee-access@0.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/apollo-codegen@0.20.3", + "group": "@types", + "name": "apollo-codegen", + "version": "0.20.3", + "description": "TypeScript definitions for apollo-codegen", + "hashes": [ + { + "alg": "SHA-512", + "content": "aba5b5c6b577a4e13039f6d980a7b4105ef5286f2ae971f105a7f47398b689fc30c4c1651d978511d9baf0a7d4b7cefdab1394e087d19418b8f70cb729d7136a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/apollo-codegen@0.20.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/graphql@14.7.0", + "name": "graphql", + "version": "14.7.0", + "description": "A Query Language and Runtime which can target any service.", + "hashes": [ + { + "alg": "SHA-512", + "content": "419e412fc64efc1db4540f003dab86060dc6c84819d7d79dbafa4b5a8ab9c7b80c9969c7a32f2b95058f2e65a016fa35c8d82348414c7ac992e11ea93ebef1a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 GraphQL Contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/graphql@14.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/graphql/graphql-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/graphql/graphql-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/graphql/graphql-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/iterall@1.3.0", + "author": "Lee Byron", + "name": "iterall", + "version": "1.3.0", + "description": "Minimal zero-dependency utilities for using JavaScript Iterables in all environments.", + "hashes": [ + { + "alg": "SHA-512", + "content": "419f6a38c745f902c7c72d50229507514d43e694b6086d8febd2c5e8be823e33d803f5cc3a6295dcf6696b01e80231cdc81d2cc1d5534717584f8b5b05bc6ac2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2016 Lee Byron\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/iterall@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/leebyron/iterall" + }, + { + "type": "issue-tracker", + "url": "https://github.com/leebyron/iterall/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/leebyron/iterall.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/apollo-upload-client@8.1.3", + "group": "@types", + "name": "apollo-upload-client", + "version": "8.1.3", + "description": "TypeScript definitions for apollo-upload-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "1346e63279170488876394e5f94d58ba6ef49687bddc0395ecafbfdc4fe819c7691f88b35f8a30c2ef82cf58510e491869c1da84a2421f3d3148b88bfc435198" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/apollo-upload-client@8.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/extract-files@8.1.1", + "group": "@types", + "name": "extract-files", + "version": "8.1.1", + "description": "TypeScript definitions for extract-files", + "hashes": [ + { + "alg": "SHA-512", + "content": "74c249a81ab286c7c92ae2bba7b1f2c8d9a48bbaa3d40970854296c7a2ab53b8b52b64f648fb14b125135859abfec10cd6af2b7d1f23e48c94998ac36eb85f8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/extract-files@8.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/extract-files" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/apollo-link@1.2.14", + "author": "Evans Hauser", + "name": "apollo-link", + "version": "1.2.14", + "description": "Flexible, lightweight transport layer for GraphQL", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7aec230414fee4386d49674664619c110dadfaf70e4f223b4c8efad077f1e7215f0546c1d1a8ba8afa801942715ad430dd66d3ad1d38be68c216e846ad0b68e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 - 2017 Meteor Development Group, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/apollo-link@1.2.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/apollographql/apollo-link#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apollographql/apollo-link/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/apollographql/apollo-link.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/apollo-utilities@1.3.4", + "author": "James Baxley", + "name": "apollo-utilities", + "version": "1.3.4", + "description": "Utilities for working with GraphQL ASTs", + "hashes": [ + { + "alg": "SHA-512", + "content": "a64da1896ac25cc032d9f44fc04ca1be46be9aac3378feb426bd6d4588b9c6bbbede4a3de0723da3a94ad024f7dffc3844397159c8667610c2aef76bfa91c28a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 Meteor Development Group, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/apollo-utilities@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/apollographql/apollo-client#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apollographql/apollo-client/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/apollographql/apollo-client.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40wry/equality@0.1.11", + "author": "Ben Newman", + "group": "@wry", + "name": "equality", + "version": "0.1.11", + "description": "Structural equality checking for JavaScript values", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b011504351538396c410e5d7ee2d44b9fd37fb8ea50aca12981e6562e1f3c1e9b0cc39f5af50f2662a04b567b65afec388defcd6b78f8eef20a22ffef432880" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Ben Newman\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40wry/equality@0.1.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/benjamn/wryware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjamn/wryware/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/benjamn/wryware.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ts-invariant@0.4.4", + "author": "Ben Newman", + "name": "ts-invariant", + "version": "0.4.4", + "description": "TypeScript implementation of invariant(condition, message)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b84b5690533fb1d66f44d3432f7121bb8595a706ae961c10b3357c9abb5c75e13c9cdd34055f6602643cf1192b06116097d80c82f8c92c041c65b9cf5c8f6694" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2019 Apollo GraphQL\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ts-invariant@0.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/apollographql/invariant-packages" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apollographql/invariant-packages/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/apollographql/invariant-packages.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/zen-observable-ts@0.8.21", + "author": "Evans Hauser", + "name": "zen-observable-ts", + "version": "0.8.21", + "description": "An Implementation of ES Observables in Typescript", + "hashes": [ + { + "alg": "SHA-512", + "content": "623df25f079173c2dd44cac20bc9c87389248d679c3c05158744c8d0e52b597c7a697efdd2f2dc0e559c6ba238becc82187dcba56c6ad1d25170c385a15aa67a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2018 zenparsing (Kevin Smith)\nCopyright (c) 2016 - 2018 Meteor Development Group, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/zen-observable-ts@0.8.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenparsing/zen-observable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apollographql/apollo-link/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/apollographql/apollo-link.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/zen-observable@0.8.15", + "name": "zen-observable", + "version": "0.8.15", + "description": "An Implementation of ES Observables", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d0d8f0bb47daec971f389dd341641fc392ff15f1f644a64f3744b817b587747f0520123b1e327d4381a8e1db1e92f106d90056bda76a95084b9864d82f7b475" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2018 zenparsing (Kevin Smith)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/zen-observable@0.8.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zenparsing/zen-observable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zenparsing/zen-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zenparsing/zen-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/apollo-link-http-common@0.2.16", + "author": "Evans Hauser", + "name": "apollo-link-http-common", + "version": "0.2.16", + "description": "Http utilities for Apollo Link shared across all links using http", + "hashes": [ + { + "alg": "SHA-512", + "content": "dad221388ae7685e146d01dfee48de400fc4992a2b07bf87c89208ad48c938a0609d7c2e7b18bc68c79c465a9320359cc955c27aa2e1527ced31ae9b387fe34e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 - 2017 Meteor Development Group, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/apollo-link-http-common@0.2.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/apollographql/apollo-link#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/apollographql/apollo-link/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/apollographql/apollo-link.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/app-root-dir@0.1.1", + "group": "@types", + "name": "app-root-dir", + "version": "0.1.1", + "description": "TypeScript definitions for app-root-dir", + "hashes": [ + { + "alg": "SHA-512", + "content": "375afc7271797435b1dc8ff03e949b49202831ed801a53db89f73b4bc3a7f31ad5d31097510bb08e5457205fd4b90577cb8d31f3f48a9821527ee8f8d17c73e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/app-root-dir@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/app-root-dir" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/app-root-path@1.2.4", + "author": "Shant Marouti", + "group": "@types", + "name": "app-root-path", + "version": "1.2.4", + "description": "TypeScript definitions for app-root-path 1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca1511a1799637fcdfc363175dc39d513c1ee425a1cd15ad6f846cdbe2701a9ba19b68712c2ce30128bf688bb255e241dc8ca4b35b5e687c8e11f34d9a5b5dbd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/app-root-path@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/appdmg@0.5.2", + "group": "@types", + "name": "appdmg", + "version": "0.5.2", + "description": "TypeScript definitions for appdmg", + "hashes": [ + { + "alg": "SHA-512", + "content": "e26c6e4ceab37e3f7b6824a31005b94d87fff4363d22f8d4417f78f074d8ef1af744987ef928218701a87a881ce87f030bf303d678a39501a8be048d431a20f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/appdmg@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/appdmg" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/appframework@2.0.30", + "group": "@types", + "name": "appframework", + "version": "2.0.30", + "description": "TypeScript definitions for AppFramework", + "hashes": [ + { + "alg": "SHA-512", + "content": "40164545977e7e410d6c1b9b3cbf9f4e7bbb42a4fe09d83593874498f624074f8c87376dfa26b457368e8a5ebba7edde4242527ee1a6100fce7f926cef3b5e8f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/appframework@2.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/appframework" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/applepayjs@3.0.4", + "group": "@types", + "name": "applepayjs", + "version": "3.0.4", + "description": "TypeScript definitions for Apple Pay JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "46a695656cb52a3e1ed4fa14a0e23cb80fb852eb8ba627101717d4f58ff1589159153ea6141e0f8a263dd75883c4593ba5dbda8f91ca1fb56c5918ac45c6b546" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/applepayjs@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/applepayjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/appletvjs@0.0.29", + "author": "Adam Valverde", + "group": "@types", + "name": "appletvjs", + "version": "0.0.29", + "description": "TypeScript definitions for AppleTVJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbe3c7464c32ba793391ea38aae1d896594ef61aa50e2fd4fc04a1cb9a09382f591fc8544035cabe2cce78663995461fbbe6078a7cc0951baecaf0abbb1f0572" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/appletvjs@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/applicationinsights-js@1.0.9", + "group": "@types", + "name": "applicationinsights-js", + "version": "1.0.9", + "description": "TypeScript definitions for ApplicationInsights-JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5fd810501484606a8c648a2e58b384369ef84f4363c5b7d15f80373ec4befe5cf8b7b3849cab346e027f054410a0967cb356fc04ce73ad75fa86444cd43a40b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/applicationinsights-js@1.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/aqb@2.1.1", + "group": "@types", + "name": "aqb", + "version": "2.1.1", + "description": "TypeScript definitions for aqbjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "f573302c0afff4e83dafdc9220a71126282e43478bda734df0ddc7733be3763668f12a94c98dbfc9aad97e94a1254b8f9483b27d4e7919439808ee313c5c9f1d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/aqb@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/aqb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/arangodb@3.5.13", + "group": "@types", + "name": "arangodb", + "version": "3.5.13", + "description": "TypeScript definitions for ArangoDB", + "hashes": [ + { + "alg": "SHA-512", + "content": "d55d2fb31cd6edd9dc2f4c02fa30a011629dbe6519b6111defdcb3c3cbe0091e97d2356d654b093f60989ee05e3925c614578bcf484a283dee3fae9b8dce3dcf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/arangodb@3.5.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/arangodb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/arbiter@1.0.30", + "group": "@types", + "name": "arbiter", + "version": "1.0.30", + "description": "TypeScript definitions for Arbiter.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a55333bf784f877d7e7b623b26e3de657bb052272986505b7d2cfdf6138c4a38931509321a43a26d944f6c716292336a0dcd7c88a8e84dbb449d5b92942f75c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/arbiter@1.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/arbiter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/arcgis-js-api@4.24.0", + "group": "@types", + "name": "arcgis-js-api", + "version": "4.24.0", + "description": "TypeScript definitions for ArcGIS API for JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "421e98c35838701ab5506a17d7123e1bee0d8316604e09928fa21d57c084f64ec845d3ce6481de102e591c38dff779a08db0fcbf2b4f6561d5bdc62cd45fcf0f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/arcgis-js-api@4.24.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/arcgis-js-api" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/arcgis-rest-api@10.4.5", + "group": "@types", + "name": "arcgis-rest-api", + "version": "10.4.5", + "description": "TypeScript definitions for ArcGIS REST API", + "hashes": [ + { + "alg": "SHA-512", + "content": "321a538f769a51120584aea9051179d320875b94e96deb82d44f358eea2f7cd7ac48eb21b109c2ce5b9d86906122bda9373a654c195fceb4fb44a88b6791774f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/arcgis-rest-api@10.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/arcgis-rest-api" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/arcgis-to-geojson-utils@1.0.2", + "group": "@types", + "name": "arcgis-to-geojson-utils", + "version": "1.0.2", + "description": "TypeScript definitions for arcgis-to-geojson-utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "4169903aca571c4033255a748583bd8910e9d4a92e63131a56cd881dda90f8e30c5a1ccca1ed4ad214d86d95f9b22edb17ca57f03be25915f20d866509d18557" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/arcgis-to-geojson-utils@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/geojson@7946.0.10", + "group": "@types", + "name": "geojson", + "version": "7946.0.10", + "description": "TypeScript definitions for geojson", + "hashes": [ + { + "alg": "SHA-512", + "content": "3668742b7896409ce7893b8f45c267e61c5791f0754f5a6007cf520628393e5250539ca871acdebb88c04c995a03419814a58ca8376f61e9a84a7176a5780b54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/geojson@7946.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/geojson" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/archiver@2.1.3", + "group": "@types", + "name": "archiver", + "version": "2.1.3", + "description": "TypeScript definitions for archiver", + "hashes": [ + { + "alg": "SHA-512", + "content": "c77edd8fa56f57c8c0ae3beabd93feab3e7edb8a8ec2015eb0b32f9fdf2e373f2a79b8c283ebad7aaaae45ff66a9ac7185c33b4b5bcf978605841b36fda6dc15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/archiver@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/glob@7.2.0", + "group": "@types", + "name": "glob", + "version": "7.2.0", + "description": "TypeScript definitions for Glob", + "hashes": [ + { + "alg": "SHA-512", + "content": "654c5bcca97421f2482d34bab7b8a9e5f41033f2774c962e6c39b79cc6e0b9b34d612eb6797794a682d40bcffb7c93621581d3ac63d09fb86ca435332075f750" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/glob@7.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/minimatch@3.0.5", + "group": "@types", + "name": "minimatch", + "version": "3.0.5", + "description": "TypeScript definitions for Minimatch", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a5cfde3d874d86cf6b9908c1b00d44834b56019537430e06d61e2fbcd65dbdb5000b52dbf3e2b0188b9ba85611392da828aba0dea805256eb1ef5bf9970e075" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/minimatch@3.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimatch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/archy@0.0.31", + "group": "@types", + "name": "archy", + "version": "0.0.31", + "description": "TypeScript definitions for archy", + "hashes": [ + { + "alg": "SHA-512", + "content": "bfe7718b3b055725e00f712916ea93f588dd1236c998fc4d7f54085fda2164e871875645db286abf7bd869eba6f65837560861c52e52d1aeb295d37d27d94f11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/archy@0.0.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/are-we-there-yet@1.1.0", + "group": "@types", + "name": "are-we-there-yet", + "version": "1.1.0", + "description": "TypeScript definitions for are-we-there-yet", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f0921f5765eaf53098900c15632fc5f1ba3201db8cd25541312901cb17885ad8697c23c2ef133a8ee6d44e3f00a56f0bd24c02adbd1bb3af1a094d10da3d34e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/are-we-there-yet@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/forwarded@0.1.0", + "group": "@types", + "name": "forwarded", + "version": "0.1.0", + "description": "TypeScript definitions for forwarded", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cc01ab5280314b809f66faeaa61af448799a232196099852a43d3f9328538e46030d809ae36809d87ebe3ae060e7daaf7c54a9fb5619315f6b6c6cee85bed8a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/forwarded@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/fossil-delta@1.0.0", + "group": "@types", + "name": "fossil-delta", + "version": "1.0.0", + "description": "TypeScript definitions for fossil-delta", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4a21cf45d372548061518c6a360fae3056bccf5653076653f67e4c7223976e80b1382c9120038b629dff76c65a5d49d69d7beef1362e61bdcec1c74ef258350" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/fossil-delta@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/foundation@5.5.31", + "group": "@types", + "name": "foundation", + "version": "5.5.31", + "description": "TypeScript definitions for Foundation", + "hashes": [ + { + "alg": "SHA-512", + "content": "975721f6a3ebc13ad3838381c2482d442d6a72d4c6873c4a9cecefddac008c2b96713c260b772c7335cf9e8a4221b8c5c86241c508dace30aa67f97c841dfa32" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/foundation@5.5.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/foundation" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/fpsmeter@0.3.31", + "group": "@types", + "name": "fpsmeter", + "version": "0.3.31", + "description": "TypeScript definitions for FPSmeter", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f1329560eafe8390b8c2a51100420a0ef8f1ba472ddeba82aaac6fedc81141afb951682453d09fc665887f06b50e2379c85ecf688118132f334a345e09ce7ad" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/fpsmeter@0.3.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fpsmeter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/framebus@2.0.1", + "group": "@types", + "name": "framebus", + "version": "2.0.1", + "description": "TypeScript definitions for framebus", + "hashes": [ + { + "alg": "SHA-512", + "content": "aabd9a730d3450a02ac73cf003ec16db1bbd027fdce8632adf3bc4ff81618456c52c45769379f5ef2aaa47a3efc0bd5d3b0953b099caa52c967569ca1eb9b574" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/framebus@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/freedom@0.6.35", + "group": "@types", + "name": "freedom", + "version": "0.6.35", + "description": "TypeScript definitions for freedom", + "hashes": [ + { + "alg": "SHA-512", + "content": "08045bcfc35e173b4e97305ab6b175bc8ac14cac31e7b8eaf1b5e74cf065a9044f8157e6cb06f0e274106359b71d04aa3660cc3ca28650bbe2dfd9431a89d730" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/freedom@0.6.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/freedom" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/freeport@1.0.22", + "group": "@types", + "name": "freeport", + "version": "1.0.22", + "description": "TypeScript definitions for freeport", + "hashes": [ + { + "alg": "SHA-512", + "content": "506838b393c33d7657924ac76ab53597a5836d42f137783bc5412d75b35ff4742153f2670a3d46d7fc591d99908c2d2e5aa3752e5074474c4e964de4e6cbe04d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/freeport@1.0.22", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/freeport" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/fresh@0.5.0", + "group": "@types", + "name": "fresh", + "version": "0.5.0", + "description": "TypeScript definitions for fresh", + "hashes": [ + { + "alg": "SHA-512", + "content": "7863f3bb273ac19337b121c9745ecd3368d6e81ff1b01d35e11aa0fe20daeb1634da695fcb5c3f4c4dac62147cbdb1f193324e5e21a8e8db88937c64df9bec81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/fresh@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/freshy@1.0.1", + "group": "@types", + "name": "freshy", + "version": "1.0.1", + "description": "TypeScript definitions for freshy", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b76870ccafe4b5662f323d002d87042923ca17307a5a47631ce6d3385cff4458051f99778ac44782ab1882b8917df11e629445dd9a50863c20ed066307742de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/freshy@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/friendly-errors-webpack-plugin@0.1.4", + "group": "@types", + "name": "friendly-errors-webpack-plugin", + "version": "0.1.4", + "description": "TypeScript definitions for friendly-errors-webpack-plugin", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f243abf92e9268f3b45006ef02939a3ba1b4117e5992ae4a2dc73bed1e0501509757803430f8f005eeb4a09724488f8582718a741b1a8e1acef58d8f93d627c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/friendly-errors-webpack-plugin@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/friendly-errors-webpack-plugin" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/webpack@4.41.32", + "group": "@types", + "name": "webpack", + "version": "4.41.32", + "description": "TypeScript definitions for webpack", + "hashes": [ + { + "alg": "SHA-512", + "content": "71bfb48a88a5ffba33e7fffbb59512c1bad200dfcd587ad0ca5cf9716f06d1d593705fe0fbf75274c94a559b29058b8c00dd7e5a7c07ae4c6246b2dcc1dd077a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/webpack@4.41.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/tapable@1.0.8", + "group": "@types", + "name": "tapable", + "version": "1.0.8", + "description": "TypeScript definitions for tapable", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a98b1b95ae1d8e74d99abafb53e75a3777ccf5da9e8bb455bd8a7ed4efd75eaff9307a38dd35c8500b950c9f9bbf2b136833b5471ceb3f97c292f2e1f184e0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/tapable@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tapable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/uglify-js@3.16.0", + "group": "@types", + "name": "uglify-js", + "version": "3.16.0", + "description": "TypeScript definitions for UglifyJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "d32794afdd8bdebd062d19c13afb582b5bf64a3a8c22a4031cc97b18b6fe9762fcfba2d215610458422056c3dd327e4898b33cab3593f3114fb50629a7c728d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/uglify-js@3.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uglify-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/webpack-sources@3.2.0", + "group": "@types", + "name": "webpack-sources", + "version": "3.2.0", + "description": "TypeScript definitions for webpack-sources", + "hashes": [ + { + "alg": "SHA-512", + "content": "16ded81f794455143a96cf24e057f5a01e2337aa32fd7994ead40848a7617e1fb5991faf899169852e962f422bb433b3bde7e6260e5ad2ced9428457c2a4c416" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/webpack-sources@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-sources" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/source-list-map@0.1.2", + "group": "@types", + "name": "source-list-map", + "version": "0.1.2", + "description": "TypeScript definitions for source-list-map", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b92beca697c2d3a3d6d6248feb1027c83eb1a0c5da5e35b8fe779de5c0de108d6d4c0b09648549acfa0b5dce2813794c81af4f7ebbc070388637317bc775cb0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/source-list-map@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/frisby@2.0.14", + "group": "@types", + "name": "frisby", + "version": "2.0.14", + "description": "TypeScript definitions for Frisby", + "hashes": [ + { + "alg": "SHA-512", + "content": "a89f443b07009970f2b1fc79cbd5280658dde432991030d31747b66af96b593b2c31f00ae6ef5bea80efc26b09ba19ff0f29da9501aec812245d69aad559f91f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/frisby@2.0.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/frisby" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/node-fetch@2.6.2", + "group": "@types", + "name": "node-fetch", + "version": "2.6.2", + "description": "TypeScript definitions for node-fetch", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c7aa196ae6378448bcb5f536212da909d3b90dba65d68dc0ddc57b0b50c259eae7bc559263e242cf41513fda6747877c59ce2345d71a69bb9970992e771d1f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/node-fetch@2.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-fetch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/form-data@3.0.1", + "author": "Felix Geisendörfer", + "name": "form-data", + "version": "3.0.1", + "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b6d4ddd63a6104511824e81f462ce13846e58e15fdbc2e187da8661e3651aae150d7525272dad876b2504d53c1a9f04ce5a1864e89b649eede5e708ac54a354" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/form-data@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/form-data/form-data#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/form-data/form-data/issues" + }, + { + "type": "vcs", + "url": "git://github.com/form-data/form-data.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/joi@17.6.0", + "name": "joi", + "version": "17.6.0", + "description": "Object schema validation", + "hashes": [ + { + "alg": "SHA-512", + "content": "397e5d1ba0d36dcaff91b3058f4286631b9ec3af473dc004dcafec669115da73fa7bf8ff0b41d5f8736204f0804b1771e53ec33286b4b3c51e1d63276fa9f6cf" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2012-2020, Sideway. Inc, and project contributors.
\nCopyright (c) 2012-2014, Walmart.
\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/joi@17.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sideway/joi#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sideway/joi/issues" + }, + { + "type": "vcs", + "url": "git://github.com/sideway/joi.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40hapi/hoek@9.3.0", + "group": "@hapi", + "name": "hoek", + "version": "9.3.0", + "description": "General purpose node utilities", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdceab7f85099661e50bd6f905a36fcc0705bfb1d9d901da5740f8fc736505dbc59ef42af11238918761c8f0a5ed78fea16bd3590f2e8e1a92e772c88007ba29" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2011-2020, Sideway Inc, and project contributors \nCopyright (c) 2011-2014, Walmart \nCopyright (c) 2011, Yahoo Inc.\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40hapi/hoek@9.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/hoek#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/hoek/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hapijs/hoek.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40hapi/topo@5.1.0", + "group": "@hapi", + "name": "topo", + "version": "5.1.0", + "description": "Topological sorting with grouping support", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e84192898a0ece6f404c01805f70993c77bed0b4e7bb5a8e28c7b7dfd65418a0d3406fa8f0718d6771da32d9ef70419cef372ece0d90982642bc93399c02702" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2012-2020, Sideway Inc, and project contributors \nCopyright (c) 2012-2014, Walmart. \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40hapi/topo@5.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/hapijs/topo#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hapijs/topo/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hapijs/topo.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sideway/address@4.1.4", + "group": "@sideway", + "name": "address", + "version": "4.1.4", + "description": "Email address and domain validation", + "hashes": [ + { + "alg": "SHA-512", + "content": "eefc2afab3875568f25f156547be80827be1cbc23dae9ce3a2c4c44af9a135e5ce5dd659075e4597e4c8f71d52887647e49bf6c1319db92c450c86aad26dc353" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2019-2020, Sideway, Inc. and Project contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40sideway/address@4.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sideway/address#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sideway/address/issues" + }, + { + "type": "vcs", + "url": "git://github.com/sideway/address.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sideway/formula@3.0.0", + "group": "@sideway", + "name": "formula", + "version": "3.0.0", + "description": "Math and string formula parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc77bbc19e0d39755f92845bf13e68b6210d5654fb6b72008b0ec7e4cdbe18efbd08381c55452c5f5cda940ced0a6c323abd9151318976007e66f495aa67479a" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2019-2020, Sideway. Inc, and project contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n * The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40sideway/formula@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sideway/formula#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sideway/formula/issues" + }, + { + "type": "vcs", + "url": "git://github.com/sideway/formula.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40sideway/pinpoint@2.0.0", + "group": "@sideway", + "name": "pinpoint", + "version": "2.0.0", + "description": "Return the filename and line number of the calling function", + "hashes": [ + { + "alg": "SHA-512", + "content": "44d88ea133e4a6d16d495cd07af63fc96b59c1ffd1c725673f2fce700f4704cdcc9460e704460be41e351f43139f451e73c1e2fb6a94b537c6d9659906631e8d" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2019-2020, Sideway. Inc, and project contributors \n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* The names of any contributors may not be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS OFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/%40sideway/pinpoint@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sideway/pinpoint#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sideway/pinpoint/issues" + }, + { + "type": "vcs", + "url": "git://github.com/sideway/pinpoint.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/from@0.1.29", + "author": "Bart van der Schoor", + "group": "@types", + "name": "from", + "version": "0.1.29", + "description": "TypeScript definitions for from v0.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "12b75607bb8767dcb8623042333caaae8caa6611d7968b59a00a67a2ea7f1ec98c5f4071c213f509334dd9e898cda428b70291823a7b56b1457e62f1d455e20f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/from@0.1.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/from2@2.3.1", + "group": "@types", + "name": "from2", + "version": "2.3.1", + "description": "TypeScript definitions for from2", + "hashes": [ + { + "alg": "SHA-512", + "content": "97b90ab6884073987408a87abc532fe56716bd0c78d0a13a7509de520db68bc7359b0c6154f6cdefcd5b62db3f9985f1481ad0321371921c20d7c418d0c7de3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/from2@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/from2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/fromjs@2.1.31", + "group": "@types", + "name": "fromjs", + "version": "2.1.31", + "description": "TypeScript definitions for fromjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "87105086f81681c68e8e88c196ed3984cc59388ce07b9c3a1b31177ff71c4391c20f6bdc7866b4f05413512b4e7ade1862a13a9e59c512abc4ca37b2962cf86e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/fromjs@2.1.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/fromnow@2.0.28", + "author": "Martin Bukovics", + "group": "@types", + "name": "fromnow", + "version": "2.0.28", + "description": "TypeScript definitions for fromnow v2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f94ffa6ed69b9674195b8fb651490984d63b921d468800b3f261aaeabfa334e1dc8995cb21b2008ee564b84dfaf51166e4effe2b1d22681527e5d783b78244f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/fromnow@2.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-infinite-calendar@2.3.6", + "group": "@types", + "name": "react-infinite-calendar", + "version": "2.3.6", + "description": "TypeScript definitions for react-infinite-calendar", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d1aafc0207b207ae96ab57ebc7aba396e4868bacad14fe0d4d891091259a3b7930f9d6af91508c87c4d221cc1e95d69cf305236ee43d09b983146e327fc916a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-infinite-calendar@2.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-infinite-calendar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-infinite-scroll-component@4.2.5", + "group": "@types", + "name": "react-infinite-scroll-component", + "version": "4.2.5", + "description": "TypeScript definitions for react-infinite-scroll-component", + "hashes": [ + { + "alg": "SHA-512", + "content": "568db292ab2f013785800033d0806f3bb7e0a71f50da41c6fca24944d4eb7562f4ea08531b4b7f97ffa8635679665e4f2682c0ac41eef03e18ab4903f23c7ca3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-infinite-scroll-component@4.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-infinite-scroller@1.2.3", + "group": "@types", + "name": "react-infinite-scroller", + "version": "1.2.3", + "description": "TypeScript definitions for react-infinite-scroller", + "hashes": [ + { + "alg": "SHA-512", + "content": "97ad097245683be77198a5b67841bb8db962129213b1326f44f4def7b19ace3179fb295a800bb261d5e5f1863d0d0b133fd42386a18a6513a49f382c706272d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-infinite-scroller@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-infinite-scroller" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-input-calendar@0.0.34", + "group": "@types", + "name": "react-input-calendar", + "version": "0.0.34", + "description": "TypeScript definitions for react-input-calendar", + "hashes": [ + { + "alg": "SHA-512", + "content": "b54524dcbe1e60d5ff1c1dbacf0234c037d54c4635c24ee8f348098948173f14c236285b2ede9518181b9f4ad4d4445371383f1db8720e8005881cb612787914" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-input-calendar@0.0.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-input-mask@1.2.4", + "group": "@types", + "name": "react-input-mask", + "version": "1.2.4", + "description": "TypeScript definitions for react-input-mask", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1bf97a3566c051e49516971a6633236832d179e3b8177c478255625e97f327543f25d8133249c26b9303027222c59970ec6bc77f62caec1b42a5273d22f9f36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-input-mask@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-input-mask" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-intl@2.3.18", + "group": "@types", + "name": "react-intl", + "version": "2.3.18", + "description": "TypeScript definitions for react-intl", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d5349b38f7353129166783c56e20b13cf3a62285db1fdf22ebe6f1e4f7326b985f12c9148adecc4d4af8a400ac4d92ff615f9e57053252873e829099db36382" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-intl@2.3.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-intl-redux@0.1.16", + "group": "@types", + "name": "react-intl-redux", + "version": "0.1.16", + "description": "TypeScript definitions for react-intl-redux", + "hashes": [ + { + "alg": "SHA-512", + "content": "41ce2caf07cb2fd941ea588b4977e3b727da86c52bba5de5cc7d3c42404eb8462b519363b533f11f45b2909c4ff85f888998a4539c45c4d49abadac8f175a696" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-intl-redux@0.1.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-intl-redux" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-redux@6.0.20", + "group": "@types", + "name": "react-redux", + "version": "6.0.20", + "description": "TypeScript definitions for react-redux", + "hashes": [ + { + "alg": "SHA-512", + "content": "24a9bae219f130121b4aa0fa66d89a786ccdb809724ecfea1ef6b34c51b5ca32ed9a0f0d0d55e1a660b326c547458f5692be8aabf7c30388dadcdc3674fb1afc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-redux@6.0.20", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-redux" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux@4.2.0", + "name": "redux", + "version": "4.2.0", + "description": "Predictable state container for JavaScript apps", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1206670a288b88478304dbdfc078d5279792fe86f06aece6895b36a9b53409027b5a3efc4826a7e78db684882cf3688cfe5e65482dfa8033739bd1a5cb3df8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "http://redux.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/runtime@7.18.9", + "author": "The Babel Team", + "group": "@babel", + "name": "runtime", + "version": "7.18.9", + "description": "babel's modular runtime helpers", + "hashes": [ + { + "alg": "SHA-512", + "content": "964a970dcbe5153e6bbc48e2bbaf9060efb5197ac41d1a362ceb52ec4e06b57e4448864e81ea6ab19055223e8fbfe6baceab326bd5428222b52802b806f24303" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/runtime@7.18.9", + "externalReferences": [ + { + "type": "website", + "url": "https://babel.dev/docs/en/next/babel-runtime" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.13.9", + "author": "Ben Newman", + "name": "regenerator-runtime", + "version": "0.13.9", + "description": "Runtime for Regenerator-compiled generator and async functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f463f249e1586eb3230e77fa36e5ade3754a8dfdb0bce4416c6a82fd3aa9b2fcee1e7c287ec61a7bca3d8410eb23f7be2abcc91c5bc0305332758c1fcc6f10b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/regenerator-runtime@0.13.9", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/facebook/regenerator/tree/master/packages/runtime" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-intl@3.12.1", + "author": "Eric Ferraiuolo", + "name": "react-intl", + "version": "3.12.1", + "description": "Internationalize React apps. This library provides React components and an API to format dates, numbers, and strings, including pluralization and handling translations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "720ba65b6f66c11388ab2a7c3574ad62ca089b6efef05aa7c729222d26b05a33b118805e2ee37ffa9dacade8b949122e99c25e7ce90e2073fe343724d394601e" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright 2019 Oath Inc.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\n * Neither the name of the Oath Inc. nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL Oath INC. BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/react-intl@3.12.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/react-intl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/react-intl/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/formatjs/react-intl.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40formatjs/intl-displaynames@1.2.10", + "author": "Linjie Ding", + "group": "@formatjs", + "name": "intl-displaynames", + "version": "1.2.10", + "description": "Polyfill for: https://tc39.es/proposal-intl-displaynames", + "hashes": [ + { + "alg": "SHA-512", + "content": "191380d913fafbb3aebb45a71c517bf0ee57214ee905f235f56335aa6f7797a3055a26d493aee709f5422b754060990bcbc2fc6718e4613d7554801fbd2cfcc2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2019 FormatJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40formatjs/intl-displaynames@1.2.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40formatjs/intl-utils@2.3.0", + "author": "Long Ho", + "group": "@formatjs", + "name": "intl-utils", + "version": "2.3.0", + "description": "Smartly determine best unit for relative time format", + "hashes": [ + { + "alg": "SHA-512", + "content": "29693cd143c8ccf99483e3f4aca87a4eab29470d06e9ebb1d4fb89afecf3e3b7ed31a67d403c1b1b31d96edcd6925e6181ac8cfeaaca46eb659510bb0ffbd55d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2019 FormatJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40formatjs/intl-utils@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40formatjs/intl-listformat@1.4.8", + "author": "Long Ho", + "group": "@formatjs", + "name": "intl-listformat", + "version": "1.4.8", + "description": "Formats JS list in a i18n-safe way", + "hashes": [ + { + "alg": "SHA-512", + "content": "58d3109448347b9d1566b1889200f99fbf8300c1adddba0a8b518900b7e114cca6b2525be62fb95b35b1ca3ff76bddbd67a30016c9b34482632aebfe07128039" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2019 FormatJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40formatjs/intl-listformat@1.4.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40formatjs/intl-relativetimeformat@4.5.16", + "author": "Long Ho", + "group": "@formatjs", + "name": "intl-relativetimeformat", + "version": "4.5.16", + "description": "Formats JavaScript dates to relative time strings.", + "hashes": [ + { + "alg": "SHA-512", + "content": "210d21698f7ba07007e4e61477290d89ea5dc845a3dd2013f85a7d66947ce68bf624d885c7ed765969719554bc7a17729dc0b664cb7f4b0148cb686e2b6fbafc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2019 FormatJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40formatjs/intl-relativetimeformat@4.5.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40formatjs/intl-unified-numberformat@3.3.7", + "author": "Long Ho", + "group": "@formatjs", + "name": "intl-unified-numberformat", + "version": "3.3.7", + "description": "Ponyfill for intl unified numberformat proposal", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a75a02d11f3080813f5ecaddce4b7e111e8c83edd3c362145cb8a9feffa2afda49c317c226e3727abe5496e879b5c3addf36add9213d5c164ed1b953b73ec6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2019 FormatJS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40formatjs/intl-unified-numberformat@3.3.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/hoist-non-react-statics@3.3.1", + "group": "@types", + "name": "hoist-non-react-statics", + "version": "3.3.1", + "description": "TypeScript definitions for hoist-non-react-statics", + "hashes": [ + { + "alg": "SHA-512", + "content": "88c22a8a4a3aa282eb4e1d63a17a1d24ae57f7178400b4f590ce46dd92e10f786ccf105d2047790bbe54f37e03f662dc20d803e0ec997f9b905e392e632756bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/hoist-non-react-statics@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hoist-non-react-statics@3.3.2", + "author": "Michael Ridgway", + "name": "hoist-non-react-statics", + "version": "3.3.2", + "description": "Copies non-react specific statics from a child component to a parent component", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe01a2bf18bc24f296366fd6d234a6cdc30fa5fa4f2dcddd63fe86c615f6850f621a3dda0df925578113ecd8caa528a72e9279bda7daf62886204660d7449f07" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Software License Agreement (BSD License)\n========================================\n\nCopyright (c) 2015, Yahoo! Inc. All rights reserved.\n----------------------------------------------------\n\nRedistribution and use of this software in source and binary forms, with or\nwithout modification, are permitted provided that the following conditions are\nmet:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n * Neither the name of Yahoo! Inc. nor the names of YUI's contributors may be\n used to endorse or promote products derived from this software without\n specific prior written permission of Yahoo! Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/hoist-non-react-statics@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mridgway/hoist-non-react-statics#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mridgway/hoist-non-react-statics/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mridgway/hoist-non-react-statics.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-is@16.13.1", + "name": "react-is", + "version": "16.13.1", + "description": "Brand checking of React Elements.", + "hashes": [ + { + "alg": "SHA-512", + "content": "db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-is@16.13.1", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/invariant@2.2.35", + "group": "@types", + "name": "invariant", + "version": "2.2.35", + "description": "TypeScript definitions for invariant", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f15f557d3fccdd24f6106add601f2634c63dde7e5f209cc56388cf62098eb2dbb963f8fa105a4823b7c8c3aa6a2f3ea50b90a56929183c277ea242203e12d12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/invariant@2.2.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/invariant" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/intl-format-cache@4.3.1", + "author": "Eric Ferraiuolo", + "name": "intl-format-cache", + "version": "4.3.1", + "description": "A memoizer factory for Intl format constructors.", + "hashes": [ + { + "alg": "SHA-512", + "content": "384518340ec3d3a6a0a8f39885b4e49744fc1c0dd0292bb05a1d478829449e977dbf0ecdfb75ec42de6267419411c869e425b57d093fb5aaf2f8db1b177c90d5" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2019, Oath Inc.\n\nLicensed under the terms of the New BSD license. See below for terms.\n\nRedistribution and use of this software in source and binary forms,\nwith or without modification, are permitted provided that the following\nconditions are met:\n\n- Redistributions of source code must retain the above\n copyright notice, this list of conditions and the\n following disclaimer.\n\n- Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n- Neither the name of Oath Inc. nor the names of its\n contributors may be used to endorse or promote products\n derived from this software without specific prior\n written permission of Oath Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/intl-format-cache@4.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/intl-messageformat@7.8.4", + "author": "Eric Ferraiuolo", + "name": "intl-messageformat", + "version": "7.8.4", + "description": "Formats ICU Message strings with number, date, plural, and select placeholders to create localized messages.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c92d1c2c4482282623b1e08e197b95e29c499bf6ee4dfc822759f3423af21e649e865a6d6d96e7f5f9e593523da5e2e8a591866e38f8eb21c7893004675a8e4c" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2019, Oath Inc.\n\nLicensed under the terms of the New BSD license. See below for terms.\n\nRedistribution and use of this software in source and binary forms,\nwith or without modification, are permitted provided that the following\nconditions are met:\n\n- Redistributions of source code must retain the above\n copyright notice, this list of conditions and the\n following disclaimer.\n\n- Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n- Neither the name of Oath Inc. nor the names of its\n contributors may be used to endorse or promote products\n derived from this software without specific prior\n written permission of Oath Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/intl-messageformat@7.8.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/intl-messageformat-parser@3.6.4", + "author": "Eric Ferraiuolo", + "name": "intl-messageformat-parser", + "version": "3.6.4", + "description": "Parses ICU Message strings into an AST via JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4603c6c2e7b4989b685f6031f0498ccc9cedb718e7bdaee0c7443b98a278a002eb4d9bed982780c3932ccf63dc8d6e1db4287f87bbcdffc1890b164ed6ebfe38" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2019, Oath Inc.\n\nLicensed under the terms of the New BSD license. See below for terms.\n\nRedistribution and use of this software in source and binary forms,\nwith or without modification, are permitted provided that the following\nconditions are met:\n\n- Redistributions of source code must retain the above\n copyright notice, this list of conditions and the\n following disclaimer.\n\n- Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the\n following disclaimer in the documentation and/or other\n materials provided with the distribution.\n\n- Neither the name of Oath Inc. nor the names of its\n contributors may be used to endorse or promote products\n derived from this software without specific prior\n written permission of Oath Inc.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/intl-messageformat-parser@3.6.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/formatjs/formatjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/formatjs/formatjs/issues" + }, + { + "type": "vcs", + "url": "git://github.com/formatjs/formatjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shallow-equal@1.2.1", + "author": "Misha Moroshko", + "name": "shallow-equal", + "version": "1.2.1", + "description": "Minimalistic shallow equality check for arrays/objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b8bc90e31c73016a266e4fd34f6fad7a09298b7fad7c8dac2dbf7b2e7cb97a8af2bc5a8723028e7c717c1b455d5c82ac47d106effa252dea6d397aa11ad8844" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright © 2016 Misha Moroshko\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the “Software”), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/shallow-equal@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/moroshko/shallow-equal#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/moroshko/shallow-equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/moroshko/shallow-equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-is@16.7.2", + "group": "@types", + "name": "react-is", + "version": "16.7.2", + "description": "TypeScript definitions for react-is", + "hashes": [ + { + "alg": "SHA-512", + "content": "add414bbd27e454cf855cafbebc5324f3bfe7d91b3281cb5fcf3e16b14dfcc07da1d25b8f9bd28940e9ccd72d9bfb3ceeff92d6c7bb8d64729006ed9e3a92f0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-is@16.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react@16.14.29", + "group": "@types", + "name": "react", + "version": "16.14.29", + "description": "TypeScript definitions for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b3dc1b4bb88607d6e59db2feb05d8761a3386a8f6d280f8fc79360cd5c89f5905b26a7dc7c77d401e859cf85f91b85dd8f80438db7d435c7f79b9308df14ba3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react@16.14.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-is-deprecated@0.1.9", + "group": "@types", + "name": "react-is-deprecated", + "version": "0.1.9", + "description": "TypeScript definitions for react-is-deprecated", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef5af491bdcd1711703b57193b87c3de210686975a739413148a84def6284697a18bdae5fe516ca0fc3f4b7c5eaf52c4d5c6dca128fef0af0311da1ea8810ac3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-is-deprecated@0.1.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-joyride@1.11.1", + "group": "@types", + "name": "react-joyride", + "version": "1.11.1", + "description": "TypeScript definitions for react-joyride", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cd77d454bc348dbfdf9f73ae70db152514142d919e7fd0c2983d4316b2e63a63802ffbaa0a49663b436a0277014683678dcbba6522f985d7474f100f7b42f2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-joyride@1.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-js-pagination@3.0.4", + "group": "@types", + "name": "react-js-pagination", + "version": "3.0.4", + "description": "TypeScript definitions for react-js-pagination", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca46bedbb799e8c83d726c13dac00380b9f78a3f6155fa4fbb9764f98ff4935c52e765993b3d0b2679f8cb854a1a647899ffed1b919aec3a1dcbfc667e207416" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-js-pagination@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-js-pagination" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-json@0.2.3", + "group": "@types", + "name": "react-json", + "version": "0.2.3", + "description": "TypeScript definitions for react-json", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2c4e58dba6043a1ca94be43e1dd1bda930825cf8c09da8b2eaa3b26705d9259f1253b538675320c1cc143e55e21183c891f6c8553ce85dc0682281594236d47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-json@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-json" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-json-pretty@1.7.0", + "group": "@types", + "name": "react-json-pretty", + "version": "1.7.0", + "description": "TypeScript definitions for react-json-pretty", + "hashes": [ + { + "alg": "SHA-512", + "content": "c80a9eedb779b57d8d4c0b7d2420177a85c35e382f15c31b526f26c5607120c3ef3b87934993cce5cb7d9f3a5343104f97186f3be6d8d8d7d2b5386c9d702415" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-json-pretty@1.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-json-tree@0.6.11", + "group": "@types", + "name": "react-json-tree", + "version": "0.6.11", + "description": "TypeScript definitions for react-json-tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cfd127f46478c28b51472c9c61fe92dac5a7af116e882e55760b90e7dc46454e42e35a4bfe1157ff97fcefb66a14f59c2e3bfdd32957962bfef4d140f1ba74f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-json-tree@0.6.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-jsonschema-form@1.7.8", + "group": "@types", + "name": "react-jsonschema-form", + "version": "1.7.8", + "description": "TypeScript definitions for react-jsonschema-form", + "hashes": [ + { + "alg": "SHA-512", + "content": "a05c8d39af150d2b758c6378afea6b4c50f68688d906ca8ba139117e8f97bc0351ded68b51e30994686d38ffa1a62fe4d7d3b1a446f6e1365c88c990c8f67d4c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-jsonschema-form@1.7.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-jsonschema-form" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/json-schema@7.0.11", + "group": "@types", + "name": "json-schema", + "version": "7.0.11", + "description": "TypeScript definitions for json-schema 4.0, 6.0 and", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0ebaf1b548de14b38adecfeb72970c30095d69b223553a425e33701459435683f8c3418dbe1c4ff8e38cb981cfa306646a0123a6d8e7a1e5cd5ac47a1bc1129" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/json-schema@7.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/json-schema" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-lazyload@2.6.0", + "group": "@types", + "name": "react-lazyload", + "version": "2.6.0", + "description": "TypeScript definitions for react-lazyload ver", + "hashes": [ + { + "alg": "SHA-512", + "content": "540bfa8b9440dcef3643ccaeba04d7b2619e70539fe4620b7882de51d2d4b3ef0f416d5983e6deb72dc17d3ea05c7765ff06f73d9ba394cf6b6d1777c5a6fd57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-lazyload@2.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-lazylog@3.1.1", + "group": "@types", + "name": "react-lazylog", + "version": "3.1.1", + "description": "TypeScript definitions for react-lazylog", + "hashes": [ + { + "alg": "SHA-512", + "content": "d55d011b9963b9ef8013cc5f71a0d23556a9aaab50e07b2ab5aa4c624d9b3b1992ff3c19b66054c665ee4d2fda5ebec3867e7d8d7b3a4e14b74a02b7748d10ab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-lazylog@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/immutable@4.1.0", + "author": "Lee Byron", + "name": "immutable", + "version": "4.1.0", + "description": "Immutable Data Collections", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0d92ea954c0f23a86d50e9cf948254ce0f5c610b506d8ca23b5e4097464647acde66d7cfd7b27529f10f3d1a440eff3fb45a3a274af97414b84361fb69e3a9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present, Lee Byron and other contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/immutable@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://immutable-js.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/immutable-js/immutable-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/immutable-js/immutable-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-leaflet@1.9.3", + "group": "@types", + "name": "react-leaflet", + "version": "1.9.3", + "description": "TypeScript definitions for react-leaflet", + "hashes": [ + { + "alg": "SHA-512", + "content": "e13d19c96facb11545f7a134eae4ed378a57d5cd2b4ad3a62d72aa1210bc9911e0e2ed9aade40a4dfcc05f704cd04169c353a883309d73a2b3b02ece777d87db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-leaflet@1.9.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-leaflet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/leaflet@1.7.11", + "group": "@types", + "name": "leaflet", + "version": "1.7.11", + "description": "TypeScript definitions for Leaflet.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "570018a26da97c801ffe92e3d5547968b96d778b4eb47caf7da2653580a87a3ccfda7bb9d8facc8b57a1b0b44c512f9b81a7e620828157570c7ca792fae27456" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/leaflet@1.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/leaflet" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-list@0.8.7", + "group": "@types", + "name": "react-list", + "version": "0.8.7", + "description": "TypeScript definitions for react-list", + "hashes": [ + { + "alg": "SHA-512", + "content": "4da3f064dc7eb0d6367633163ea7fcd527e29a7588a1bfe38d96d026425164c7ff1ba66efa0169528a2effbd0c91985b2a14449357933591666e8901c0099b06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-list@0.8.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-list" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-loadable@5.5.6", + "group": "@types", + "name": "react-loadable", + "version": "5.5.6", + "description": "TypeScript definitions for react-loadable", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8cef11ffc1ac19c4dc9b6ecfdaefa264a54b0c938cfa031061f76714b48072daf2bb11862e8ad41b0b895a634846cf47b4e51fa6438e1878732d1f653e80cb3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-loadable@5.5.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-loadable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-loader@2.4.5", + "group": "@types", + "name": "react-loader", + "version": "2.4.5", + "description": "TypeScript definitions for react-loader", + "hashes": [ + { + "alg": "SHA-512", + "content": "781b672b11b1fc1fb3ea448e32254160b3d99972d90d5a02852624e7b37dd4764a075c123c80873eb82f9610b98fc63b3027e8611b78fde991c21d8e408845ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-loader@2.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-loader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-mailchimp-subscribe@2.1.1", + "group": "@types", + "name": "react-mailchimp-subscribe", + "version": "2.1.1", + "description": "TypeScript definitions for react-mailchimp-subscribe", + "hashes": [ + { + "alg": "SHA-512", + "content": "89ceabb8b6837658308fde0278c2ff1461e231a71707dd9b65b9898a634a573adcd78eff84e44f0b2de767830718a06264d56a8b8341997d6937a8b729b83524" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-mailchimp-subscribe@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-mailchimp-subscribe" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-map-gl@3.3.3", + "group": "@types", + "name": "react-map-gl", + "version": "3.3.3", + "description": "TypeScript definitions for react-map-gl", + "hashes": [ + { + "alg": "SHA-512", + "content": "27f51ede58279e9eeb36067e831a05f19b08edb1aec1d1558972371706fd469e15a3305ec0f1c23665efc768a6eab1933eb8d5b0f820a1a2cf3d7c30230e565e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-map-gl@3.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mapbox-gl@2.7.4", + "group": "@types", + "name": "mapbox-gl", + "version": "2.7.4", + "description": "TypeScript definitions for Mapbox GL JS", + "hashes": [ + { + "alg": "SHA-512", + "content": "bac4d509662198bb7eb5e4395371e148164820714ba7a7d05c7ff540e9dde319c3b6f353516a3c9fa532440e24523f38086a4748115e17f30d701746075a70a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mapbox-gl@2.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mapbox-gl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-maskedinput@4.0.6", + "group": "@types", + "name": "react-maskedinput", + "version": "4.0.6", + "description": "TypeScript definitions for react-maskedinput", + "hashes": [ + { + "alg": "SHA-512", + "content": "acb9b4b7809c084d2c9ac3958194f3c13fda9830c1875b0be3a57e576d8921ec828626c233b39edd335293aea824ad1f1e2b210f2cd183ba5dfac1f8b28cc6aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-maskedinput@4.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-maskedinput" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-mce@0.6.3", + "group": "@types", + "name": "react-mce", + "version": "0.6.3", + "description": "TypeScript definitions for react-mce", + "hashes": [ + { + "alg": "SHA-512", + "content": "60c1553fe80f6c1d942321c3602d845e6d7d8b031e9f8a847dcff753a57669eea75b84a00197390f6afe1cfd872acb817d524ce10b2db0d2376cf7cd52aabcbf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-mce@0.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-mce" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/tinymce@4.6.5", + "group": "@types", + "name": "tinymce", + "version": "4.6.5", + "description": "TypeScript definitions for TinyMCE", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b981d122f39ad4798117cd7970026f4ccef7cc23c4a8a156c130b2cdfc14137839c758db51580901e8e37db3496159962b9a34a02cfad649ef3aae372200211" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/tinymce@4.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tinymce" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-mdl@1.7.31", + "group": "@types", + "name": "react-mdl", + "version": "1.7.31", + "description": "TypeScript definitions for react-mdl", + "hashes": [ + { + "alg": "SHA-512", + "content": "30e214daa5f22ff00f271b77cb89aa2df5cad6c19dfb3c356ae39d00c61306c746f8c78ed769373de4d4c6d9014639eb64772028b5da4d1fccffc563c5b0938c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-mdl@1.7.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-mdl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-measure@2.0.8", + "group": "@types", + "name": "react-measure", + "version": "2.0.8", + "description": "TypeScript definitions for react-measure", + "hashes": [ + { + "alg": "SHA-512", + "content": "3eee3f850ff500a54de9e7e86b0b5c33e977efa598388f1ed5f88cea2af8a5d2e41e29430a424b8d41af026d2658a274184ea1ceee79c82adc27fc4dc84745c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-measure@2.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-measure" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-mixin@2.0.32", + "group": "@types", + "name": "react-mixin", + "version": "2.0.32", + "description": "TypeScript definitions for react-mixin", + "hashes": [ + { + "alg": "SHA-512", + "content": "38e17fab2163fe144fb3060a4b5a0ea7f7570df666810a30090047b495c9d68e1c6e4401c4aecc11cf69b9c6372054a2f4b2b0618cb36968f5d904aa6e191202" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-mixin@2.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-modal@3.13.1", + "group": "@types", + "name": "react-modal", + "version": "3.13.1", + "description": "TypeScript definitions for react-modal", + "hashes": [ + { + "alg": "SHA-512", + "content": "898fe03ef4c3232e99fb7ee5fa26e6ad8f864d5e0a4131dc0b2479148cad9b5f364504baf46e69b383c7d85c6d0bb6c04364111d731ebec060724ec842bb8736" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-modal@3.13.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-modal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-motion@0.0.26", + "group": "@types", + "name": "react-motion", + "version": "0.0.26", + "description": "TypeScript definitions for react-motion", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e23e58fbac6ffaf1fdf4c752131edc0d3957daf17d60ab56963a2a1bb19dd6c2ba3b05bd6461e9c7a1838a8538a85f7e597a142a9c5695ff9c952ed7ea54723" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-motion@0.0.26", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-motion-slider@0.4.11", + "group": "@types", + "name": "react-motion-slider", + "version": "0.4.11", + "description": "TypeScript definitions for react-motion-slider", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b1e5451129bcf901833dba8ae3f8b0a382a29f5aa09481e8754d9c5b4436a25138fd1e03c5b94c22f97db4959f4f48146687ce7588318fdd9d7ae374955634a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-motion-slider@0.4.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-motion-slider" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-motion-ui-pack@0.10.4", + "group": "@types", + "name": "react-motion-ui-pack", + "version": "0.10.4", + "description": "TypeScript definitions for react-motion-ui-pack", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac13addef93f4bb4ac958a20b62b480248b3b5f5fe802471383521ea20d66a465a909f86f770b3b62b4e393785f8bd26c50a42963b0acdf0909f340e913f8b71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-motion-ui-pack@0.10.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-motion-ui-pack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native@0.56.24", + "group": "@types", + "name": "react-native", + "version": "0.56.24", + "description": "TypeScript definitions for react-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6536b4a3ff2f4c197668a2eb403d30f0b62f76249bf21ef8040f2a3417722f23ddb88c7ed313810cd0904d3a6f54fcfc1dc7231d70be25edc449bbfc579a9cb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native@0.56.24", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-android-taskdescription@1.0.2", + "group": "@types", + "name": "react-native-android-taskdescription", + "version": "1.0.2", + "description": "TypeScript definitions for react-native-android-taskdescription", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa0304d48072b3640a1851c90937fe199a81b57c1ec679da6bad82363894eaf4c9eaeb582eecf2ca2cee2ddc1142bfba05c00a361bbc0c80661b7b3d0c31e351" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-android-taskdescription@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-android-taskdescription" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-auth0@1.3.0", + "group": "@types", + "name": "react-native-auth0", + "version": "1.3.0", + "description": "TypeScript definitions for react-native-auth0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f95785683cbd3cb1354924dc37fc83c6f864bc2f04a478e3a09495a20738bb9b2839aef7f807e62f7dfe5f5ac569a02147b06c55e2fddb15bbc6a2dae842b3c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-auth0@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-autocomplete-input@3.5.3", + "group": "@types", + "name": "react-native-autocomplete-input", + "version": "3.5.3", + "description": "TypeScript definitions for react-native-autocomplete-input", + "hashes": [ + { + "alg": "SHA-512", + "content": "05a3049d405c1ab41d8256e95b8513002cbb0c63b15a6047ddd02bc6ed2dc2561a36287b3d308c7cb55e89861bf990ae64b3e570dd3389cf78c981b82589ca84" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-autocomplete-input@3.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-autocomplete-input" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-background-timer@2.0.0", + "group": "@types", + "name": "react-native-background-timer", + "version": "2.0.0", + "description": "TypeScript definitions for react-native-background-timer", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb9556f3674bfc448e2e0fb94101f205db05540e1992510dc663b2c6ff28d3a4fedc7046d89392bb3fc220fcf5bca741edd9960c63d936e3e8b1db67a7ec6fd8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-background-timer@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-bluetooth-serial@1.0.1", + "group": "@types", + "name": "react-native-bluetooth-serial", + "version": "1.0.1", + "description": "TypeScript definitions for react-native-bluetooth-serial", + "hashes": [ + { + "alg": "SHA-512", + "content": "8566a287b6f457aac323071e5a5a999008e39c7b085840d6c6d55ea28e22ca5ca590b6d2b0252e193e1807a943838e9c46c9387cad20c00f256e6753e4a169e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-bluetooth-serial@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-communications@2.2.1", + "group": "@types", + "name": "react-native-communications", + "version": "2.2.1", + "description": "TypeScript definitions for react-native-communications", + "hashes": [ + { + "alg": "SHA-512", + "content": "79380994c8ebc7cdb956e3bedf2e6b4f85eede2b7aa07de2ed9724fd08493b773c44ceb59c1a7d949ec1048dc2a1cf27c70798912ea2d6592b3cf9993a737334" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-communications@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-custom-tabs@0.1.2", + "group": "@types", + "name": "react-native-custom-tabs", + "version": "0.1.2", + "description": "TypeScript definitions for react-native-custom-tabs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1963ddfebeafa042196fbbdafb7aec2f1793f23f46a5450cf053c170127945733e926267785cf4e4600d4220feb22f84e0cced5a67947a6094c4c784b1a624b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-custom-tabs@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-custom-tabs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-datepicker@1.7.1", + "group": "@types", + "name": "react-native-datepicker", + "version": "1.7.1", + "description": "TypeScript definitions for react-native-datepicker", + "hashes": [ + { + "alg": "SHA-512", + "content": "548ab08544c2d228fe7744cf24a11ab62f3d8ce864f99ef5e2c06d1456f4011f556703cc99c184b63a312a943b9989c3e8cb9d9db53feacb20df846a8f5dda67" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-datepicker@1.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-datepicker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-dialog@4.0.2", + "group": "@types", + "name": "react-native-dialog", + "version": "4.0.2", + "description": "TypeScript definitions for react-native-dialog", + "hashes": [ + { + "alg": "SHA-512", + "content": "014a92627bd60e5dff16f6202e9afb5ed10cc5e76ca953c3311b5517b1b49db3154a7142e63763f8add5b304033323766e97ad59a4d96580a6f88981c203120d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-dialog@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-doc-viewer@2.7.2", + "group": "@types", + "name": "react-native-doc-viewer", + "version": "2.7.2", + "description": "TypeScript definitions for react-native-doc-viewer", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce86f9558f4ce2ed334d759271fe69d4e2e93893bb42f053494f89f547fdab3eba1e40d8944ac9c75619c6a709adaf5f19995196d74715ffc269bae4ca268590" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-doc-viewer@2.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-doc-viewer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-fs@2.20.0", + "author": "Johannes Lumpe", + "name": "react-native-fs", + "version": "2.20.0", + "description": "Native filesystem access for react-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "5644c1cecedf203522cbf5da8ce48d9345dacc513d97e42530071eee51ae79b65c6a0e429e3b3307ebb805dab3c1a40e75c61be70b0922caaae24c489c846925" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Johannes Lumpe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-native-fs@2.20.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/itinance/react-native-fs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/itinance/react-native-fs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/itinance/react-native-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/base-64@0.1.0", + "author": "Mathias Bynens", + "name": "base-64", + "version": "0.1.0", + "description": "A robust base64 encoder/decoder that is fully compatible with `atob()` and `btoa()`, written in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "639814e39b2fad1e6d23656dfd7f463dddcbd073482b31aedb4d848f1ad7329b9cd95d8288a81e9806d452ca9899926f3ed097a142a3359c01273b0d49c51b5c" + } + ], + "purl": "pkg:npm/base-64@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://mths.be/base64" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/base64/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/base64.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/utf8@3.0.0", + "author": "Mathias Bynens", + "name": "utf8", + "version": "3.0.0", + "description": "A well-tested UTF-8 encoder/decoder written in JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "13c56314843f4f2420a7e4d97d2ea5f32a7fc56a694801f389d1a246ba9ee1b2b85cff694d1c8a160189a4edd237bcdd5f80dea264ebc1ab1e087a2f7e915ca9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/utf8@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mths.be/utf8js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mathiasbynens/utf8.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/mathiasbynens/utf8.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-document-picker@2.0.1", + "group": "@types", + "name": "react-native-document-picker", + "version": "2.0.1", + "description": "TypeScript definitions for react-native-document-picker", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e9da621d1a2458d8573aea29918b5116afb9f0940b3ace191c0909e689adb8b46f012d6a1c7db33e0718d8671980af5835703910cc7354fabc502330bf49804" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-document-picker@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-drawer@2.5.5", + "group": "@types", + "name": "react-native-drawer", + "version": "2.5.5", + "description": "TypeScript definitions for react-native-drawer", + "hashes": [ + { + "alg": "SHA-512", + "content": "689d09d9ac8c7d4488be144a8381ae2961785c1e49096683f264ed336685e2d3eb1b973d6923e1444b99bca7db8c15d8e4402f86bb7887073c0b15a23ce66161" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-drawer@2.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-drawer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-drawer-layout@1.3.7", + "group": "@types", + "name": "react-native-drawer-layout", + "version": "1.3.7", + "description": "TypeScript definitions for react-native-drawer-layout", + "hashes": [ + { + "alg": "SHA-512", + "content": "54dd8effe3020bbd455b66e476abb227db940920138965ad3c6d792e17cfc2724590dcda3e45f44be8d7c51b904d5fb71f87bf3c0c0012f715fe4e251204705d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-drawer-layout@1.3.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-drawer-layout" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-elevated-view@0.0.1", + "group": "@types", + "name": "react-native-elevated-view", + "version": "0.0.1", + "description": "TypeScript definitions for react-native-elevated-view", + "hashes": [ + { + "alg": "SHA-512", + "content": "81ae4e0e97d0462fbb536487a8ba78ae9d5adf185093685a190c791f21d387693fccc33b4bca29c2364134cd3ae077e326960a798163206a569cff1d9025ddab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-elevated-view@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-fabric@0.5.2", + "group": "@types", + "name": "react-native-fabric", + "version": "0.5.2", + "description": "Stub TypeScript definitions entry for react-native-fabric, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ee240410aa44043a77495ece1813e961c74dfbf4f38d6cb9245512655a61d69039d47827d0b5c36458d90066e1e2c67503c52f38b71151406c15dcbd1fb2f18" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-fabric@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/corymsmith/react-native-fabric#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/corymsmith/react-native-fabric/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/corymsmith/react-native-fabric.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-fabric@0.5.2", + "author": "Cory Smith", + "name": "react-native-fabric", + "version": "0.5.2", + "description": "A React Native library for Fabric, Crashlytics and Answers", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9aac1ab75ed003089206c337873331bb2c24df1251aea948f852a331b166cfb17698168adf370f84324110fba781abf6b69383ca7ee5505d0002eeb7e0a3f56" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Cory Smith\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-native-fabric@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/corymsmith/react-native-fabric" + }, + { + "type": "issue-tracker", + "url": "https://github.com/corymsmith/react-native-fabric/issues" + }, + { + "type": "vcs", + "url": "git://github.com/corymsmith/react-native-fabric.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-fbsdk@0.6.3", + "group": "@types", + "name": "react-native-fbsdk", + "version": "0.6.3", + "description": "TypeScript definitions for react-native-fbsdk", + "hashes": [ + { + "alg": "SHA-512", + "content": "732e7b5fc851184df70fe73077333da580329a27c1861e8515338e0215bb3b4296a0cac56920fc40f0f3043a62410f3b1477a4360d67821c75dce8c529170231" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-fbsdk@0.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-fetch-blob@0.10.7", + "group": "@types", + "name": "react-native-fetch-blob", + "version": "0.10.7", + "description": "TypeScript definitions for react-native-fetch-blob", + "hashes": [ + { + "alg": "SHA-512", + "content": "f544ef994bc0ae299286210d791df19d13bbd4d7198e94e2ec07050086e175321fa9038ed8e2bf23f0e950f5dc645fdeadf7cbc4ea119285eb64ec7204158a45" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-fetch-blob@0.10.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-fetch-blob" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-fs@2.13.0", + "group": "@types", + "name": "react-native-fs", + "version": "2.13.0", + "description": "Stub TypeScript definitions entry for react-native-fs, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0b071dc9f29d63cbd4186af751ccf54807edb277cdefd5557f8d3ef1bd566079e5871cf718ef2f4056b7b84e26d5591f1aabc28d1e453f8970e6011ac5ded62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-fs@2.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/itinance/react-native-fs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/itinance/react-native-fs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/itinance/react-native-fs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-google-signin@0.12.3", + "group": "@types", + "name": "react-native-google-signin", + "version": "0.12.3", + "description": "TypeScript definitions for react-native-google-signin", + "hashes": [ + { + "alg": "SHA-512", + "content": "dad1c71bff844d252b8d28d091cc19f0b6c8264454feb0ae30ff2187f93d2c1c08823d200d910de097d133f7d996cb9cbc3222d37c6068c3e365671f57af4c6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-google-signin@0.12.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-htmlview@0.12.3", + "group": "@types", + "name": "react-native-htmlview", + "version": "0.12.3", + "description": "TypeScript definitions for react-native-htmlview", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24ed7e8a9cc944c0c2a44c239d2e9236212d25d04015ece135c54d347c22b5492fef70fe9738ec871a10c058454d0b4cfa8474d76bb5c315e9931a0375fbbd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-htmlview@0.12.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-htmlview" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-i18n@2.0.0", + "group": "@types", + "name": "react-native-i18n", + "version": "2.0.0", + "description": "TypeScript definitions for react-native-i18n", + "hashes": [ + { + "alg": "SHA-512", + "content": "2704ac8c6c3df4a93b90c83647560f01bcbbbfb770e2b1c60d37375ac2ed42ec340dec8c44b2cf35d9a383ce513f70555fde05fd253e79e7fae4352c53373d7d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-i18n@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/i18n-js@3.8.2", + "group": "@types", + "name": "i18n-js", + "version": "3.8.2", + "description": "TypeScript definitions for i18n-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "17e02e1428e5944d40d16fd8531241d77ab6b7b71621332a5ce4d743f2277d7c714fc9d7aeba8beecffc3efe974e11a314f7a6ba4125c24e9094c38a08483b79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/i18n-js@3.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/i18n-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-indicators@0.13.3", + "group": "@types", + "name": "react-native-indicators", + "version": "0.13.3", + "description": "TypeScript definitions for react-native-indicators", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac32d26d9092e8cfb61d9bb9a083edfc0510c3c110608ffcdefbea0a3e49660837aee791e665e1814bf3d5ecd52b0f49f4226486cffdaa3a319cee1b7266555c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-indicators@0.13.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-keep-awake@2.0.3", + "group": "@types", + "name": "react-native-keep-awake", + "version": "2.0.3", + "description": "TypeScript definitions for react-native-keep-awake", + "hashes": [ + { + "alg": "SHA-512", + "content": "d02e1b52518f1d1a6995b9fe6275f650ed3fda3a1ad1d8423ee99ab367e27a518d2644b515324eaf0f63168e01d3e2ceb66b1ea578b2fc035317fa27d1bd8377" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-keep-awake@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-keep-awake" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-keyboard-spacer@0.4.2", + "group": "@types", + "name": "react-native-keyboard-spacer", + "version": "0.4.2", + "description": "TypeScript definitions for react-native-keyboard-spacer", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4bda5bd16dec02d3b463e8a263f442bdb5c65b8d55d952d4a4438f2697d90c5525b93b417dc0863f8221796a15d82f9fe96d8c8cb2b7be4ac98310509025448" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-keyboard-spacer@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-keyboard-spacer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-keychain@3.1.0", + "group": "@types", + "name": "react-native-keychain", + "version": "3.1.0", + "description": "Stub TypeScript definitions entry for react-native-keychain, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f6616100112c62be6b829e2a577a92b792ffd2089da671e916c1f73c02829c65bf8154e58c42069b3e8bee2da71fdf171b375d246c5ecc12f7d14c7f4565a6b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-keychain@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/oblador/react-native-keychain#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/oblador/react-native-keychain/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/oblador/react-native-keychain.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-keychain@8.1.1", + "author": "Joel Arvidsson", + "name": "react-native-keychain", + "version": "8.1.1", + "description": "Keychain Access for React Native", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1fc607872b019c2fae7b7806297414e40c8c4d85b20723e932c8ed1869cd9d81500dd7ce09a08c10716db3eac9da8700da08e6d03aed1b88b1479ec1fee0a4a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Joel Arvidsson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-native-keychain@8.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/oblador/react-native-keychain" + }, + { + "type": "issue-tracker", + "url": "https://github.com/oblador/react-native-keychain/issues" + }, + { + "type": "vcs", + "url": "git://github.com/oblador/react-native-keychain.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-loading-spinner-overlay@0.5.3", + "group": "@types", + "name": "react-native-loading-spinner-overlay", + "version": "0.5.3", + "description": "TypeScript definitions for react-native-loading-spinner-overlay", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cfebffd085d0445104f4b01f621b7f9af982ac3333f8fcc24d3714b27d6b1b7434db0673b4943f64b17770048e4a63dd6bf204e6044ecfc114be7846b3669c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-loading-spinner-overlay@0.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-loading-spinner-overlay" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-material-design-searchbar@1.1.5", + "group": "@types", + "name": "react-native-material-design-searchbar", + "version": "1.1.5", + "description": "TypeScript definitions for react-native-material-design-searchbar", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2972fa1a9fdaedd2f533a6eceaec46381a49bb972648931a664f99e9263c50af18f323fcc183bc1e90e01c35ec3385c6f6207d462bd388665316259fbed3206" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-material-design-searchbar@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-material-design-searchbar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-material-kit@0.5.5", + "group": "@types", + "name": "react-native-material-kit", + "version": "0.5.5", + "description": "TypeScript definitions for react-native-material-kit", + "hashes": [ + { + "alg": "SHA-512", + "content": "05969bc5cfc921b9bc19a989749b727711a77eeabca7f5d00cea71ffcca627fa6eaca56b636edaaa788bfde9093b91a61e39db1c38cebde1e043bf1da45a8c55" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-material-kit@0.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-material-kit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-material-textfield@0.12.3", + "group": "@types", + "name": "react-native-material-textfield", + "version": "0.12.3", + "description": "TypeScript definitions for react-native-material-textfield", + "hashes": [ + { + "alg": "SHA-512", + "content": "423bc5e0fc216d9f3773a1d40bcff4fa6c4de083ba284139a2c913dfd6837f53875ffb3605af4b5a38a230e84f00f52038c70cd34e3a255112c98edf76c9f912" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-material-textfield@0.12.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-material-ui@1.32.3", + "group": "@types", + "name": "react-native-material-ui", + "version": "1.32.3", + "description": "TypeScript definitions for react-native-material-ui", + "hashes": [ + { + "alg": "SHA-512", + "content": "a56778add131ac0add4b402f2956fedea2859faa1a0e0157a605b277993bd793b1d3da974df4f196b3410ff08d454422f27ce976aaf2161be3f870515c7aeee3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-material-ui@1.32.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-material-ui" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-mixpanel@0.1.0", + "group": "@types", + "name": "react-native-mixpanel", + "version": "0.1.0", + "description": "TypeScript definitions for react-native-mixpanel", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a57d5a2de026b2dea05b0b243247c4c07fd8aac9cf8cf9109191d19071e79758637c274c9efdce2d89dd7c41d6c606177a4901c4f09f7cf4e487050a30fa4c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-mixpanel@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-modalbox@1.4.10", + "group": "@types", + "name": "react-native-modalbox", + "version": "1.4.10", + "description": "TypeScript definitions for react-native-modalbox", + "hashes": [ + { + "alg": "SHA-512", + "content": "405c8e6eb62ec1fed288a80a012014000b3e8893c8adba5a7226ee319fdbdfe718c749b408d0738b5acad38a0ce100403d20b02b7161304bba413f996e86475d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-modalbox@1.4.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-modalbox" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-multi-slider@0.3.2", + "group": "@types", + "name": "react-native-multi-slider", + "version": "0.3.2", + "description": "TypeScript definitions for react-native-multi-slider", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d7c411ed0ebe4318950169d9731e6a3932290569608c2ae3d770768bd7235d62d194d88748d16a94100e3c320afa7070e0d3cfc362d0d010499d6047e4f912f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-multi-slider@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-multi-slider" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-orientation@5.0.1", + "group": "@types", + "name": "react-native-orientation", + "version": "5.0.1", + "description": "TypeScript definitions for react-native-orientation", + "hashes": [ + { + "alg": "SHA-512", + "content": "d14be3ef7857597c312884944a1f0a0dec3dd34e43e3d36d6cb27f72895d20c64d3e123ee286e4d97ea7cc5dc505e210ff615b55451933aa0c308810c0f509db" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-orientation@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-permissions@1.1.1", + "group": "@types", + "name": "react-native-permissions", + "version": "1.1.1", + "description": "TypeScript definitions for react-native-permissions", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb12d51fa91e7e0f61a492b142145c6981dc9216d00b10eb53a1c4693cdfde031b9f82386ae9e3c64a9e48c0287eb1c534e9ce4bfa619ec4db89fa030138e4df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-permissions@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-photo-view@1.5.4", + "group": "@types", + "name": "react-native-photo-view", + "version": "1.5.4", + "description": "TypeScript definitions for react-native-photo-view", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fc8d8bc50c8090cb381446f414da5d2cca4a1aa86ff779fbbf0094862e154caf32abee9a9e822e310db2652a70a08d1fc2da844bd08aa5020b1767d6eb33fab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-photo-view@1.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-photo-view" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-popup-dialog@1.0.1", + "group": "@types", + "name": "react-native-popup-dialog", + "version": "1.0.1", + "description": "TypeScript definitions for react-native-popup-dialog", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b0bec2255fbc1a3884a0a61e9688253476e06ef6a8ae66dcfa00bd189cdc27e0ba73fada9f189fa871958e0629e5108e5a4da016d0268ef7cf33c949ce96d49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-popup-dialog@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-push-notification@3.0.9", + "group": "@types", + "name": "react-native-push-notification", + "version": "3.0.9", + "description": "TypeScript definitions for react-native-push-notification", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4985ec8f7b890d14726f7a839f9e116c90f71c9e07f2b109dc909dfaba4f1ae25ca568c8323b158e6e45a6cbe3ca0920817f3634bacb45575de2713bd75e8b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-push-notification@3.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-qrcode@0.2.3", + "group": "@types", + "name": "react-native-qrcode", + "version": "0.2.3", + "description": "TypeScript definitions for react-native-qrcode", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0ecca3e095fa7892ccb5fcde8c17ad98f68871f5a2b29cea4d7a178b597f9f6b3f290931de2f8ee22c73dbbe93f0630435608e01c94d323ee07266294123dfb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-qrcode@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-qrcode" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-safari-view@2.0.5", + "group": "@types", + "name": "react-native-safari-view", + "version": "2.0.5", + "description": "TypeScript definitions for react-native-safari-view", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f3921db76461b484b992e2e4723eb8ff5b1ae821f7a0c414151f189113410ae709e15c4c265fc8e98e3dd6409892975c4fc85a335df9a98e929e44ce006a99a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-safari-view@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-safari-view" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-scrollable-tab-view@0.8.5", + "group": "@types", + "name": "react-native-scrollable-tab-view", + "version": "0.8.5", + "description": "TypeScript definitions for react-native-scrollable-tab-view", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebdb84c2438b16150cac5fedb915e9dd9dfec313de2823734720100de302d932f6d8a888fb8827f16a6bb8b441b5a017bffa6912af1a2d4df061e17c8f7fa90b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-scrollable-tab-view@0.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-sensor-manager@0.1.4", + "group": "@types", + "name": "react-native-sensor-manager", + "version": "0.1.4", + "description": "TypeScript definitions for react-native-sensor-manager", + "hashes": [ + { + "alg": "SHA-512", + "content": "63429da15baeee5192e4046ff0d6429f66a265849c71e83ce91736dc103092b2f8892e2f2b2ae9ade9cc27731d5968bb7e63940d375e84a84ee8d5e19bcff848" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-sensor-manager@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-sensor-manager" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-settings-list@1.8.3", + "group": "@types", + "name": "react-native-settings-list", + "version": "1.8.3", + "description": "TypeScript definitions for react-native-settings-list", + "hashes": [ + { + "alg": "SHA-512", + "content": "c899abc7ec9dc96e27d4c3f4336c036c2ca9b938e3abf1fe934c92874aafb6d69b65158d497537454ca4ba13e980dc9950ad47fa78079626df2b65400a808c0b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-settings-list@1.8.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-settings-list" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-share@1.1.7", + "group": "@types", + "name": "react-native-share", + "version": "1.1.7", + "description": "TypeScript definitions for react-native-share", + "hashes": [ + { + "alg": "SHA-512", + "content": "5518bf19906db15b5b7721215e273f33721e20676dd4f91c5cfa9e6b58633a515743ee555d74cea30598060768adda5aa7d727840fdf4e3fba26e52e876ffa5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-share@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-share" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-snap-carousel@3.8.5", + "group": "@types", + "name": "react-native-snap-carousel", + "version": "3.8.5", + "description": "TypeScript definitions for react-native-snap-carousel", + "hashes": [ + { + "alg": "SHA-512", + "content": "10c070428fe89b61d933f27abbc06fcfb8b40443bfbfa7ebae99a5bd4439efd08cb206103e56334359dee0a0dd46ad3cfb20d21bcffc030222d51fb5f3944eb2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-snap-carousel@3.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-snap-carousel" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-sortable-grid@2.0.3", + "group": "@types", + "name": "react-native-sortable-grid", + "version": "2.0.3", + "description": "TypeScript definitions for react-native-sortable-grid", + "hashes": [ + { + "alg": "SHA-512", + "content": "085e21a1e5383607018f165cd32e7676ad3f671e82b63a21acddcbbd3f82c0e8afa4b7d0b8819c10b8899c994dd60577eea5a243715a3c4debc88dd8bcde4930" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-sortable-grid@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-sortable-grid" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-sortable-list@0.0.5", + "group": "@types", + "name": "react-native-sortable-list", + "version": "0.0.5", + "description": "TypeScript definitions for react-native-sortable-list", + "hashes": [ + { + "alg": "SHA-512", + "content": "10f01d31cd9d1949c058c3122a22ad950f7872d3c342dd6fea13819dd261b5e29055f2434a1e35b558e434c92331df5ee2a8be334939fb4de63be991a2203ab4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-sortable-list@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-sqlite-storage@3.3.2", + "group": "@types", + "name": "react-native-sqlite-storage", + "version": "3.3.2", + "description": "TypeScript definitions for react-native-sqlite-storage", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f346b02277080e56a97ae08dd753e8d0f923b4f4ffd417c9993a2cb8a86c3dbb258cc480bfdfe8bd1183c47c67f0d0ea8827962940285af468e2ab7a56b6270" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-sqlite-storage@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-star-rating@1.1.2", + "group": "@types", + "name": "react-native-star-rating", + "version": "1.1.2", + "description": "TypeScript definitions for react-native-star-rating", + "hashes": [ + { + "alg": "SHA-512", + "content": "d039843af2bef9d66cf270c85a0789dc91001d9c78c93ed4d98ca8e45163bc720840dede04f8d0dda17f346c2d7e28dc99199204a7ecae8a8f78ccc2b04330e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-star-rating@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-star-rating" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-svg-charts@5.0.12", + "group": "@types", + "name": "react-native-svg-charts", + "version": "5.0.12", + "description": "TypeScript definitions for react-native-svg-charts", + "hashes": [ + { + "alg": "SHA-512", + "content": "dba06616b3aa58c1278bd2ae05bb7363a7b916c92ed7193c8fa664ab57a67db4795d72c0a06b7d3691132be747a5f979336c72e79c887075b80b442ff995c239" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-svg-charts@5.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-svg-charts" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/d3-scale@1.0.17", + "group": "@types", + "name": "d3-scale", + "version": "1.0.17", + "description": "TypeScript definitions for D3JS d3-scale module", + "hashes": [ + { + "alg": "SHA-512", + "content": "6da20fe7f830f8f4bc031b3595f6427888dc3977a7fe3c509a01448db6138706a3d9daef8af388ac9321d8883831e7a7ae88021face48623b108f464bcdd6c70" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/d3-scale@1.0.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-scale" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/d3-time@1.1.1", + "group": "@types", + "name": "d3-time", + "version": "1.1.1", + "description": "TypeScript definitions for D3JS d3-time module", + "hashes": [ + { + "alg": "SHA-512", + "content": "50b5fb2e8a974c262d33eb4b60e69e0092bb230093fb81b1966d8c687d04aca2e2d3b479961f0d1c203259c0e40829b1d407d1701115e87f5013d476e6e3fb8f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/d3-time@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/d3-shape@1.3.8", + "group": "@types", + "name": "d3-shape", + "version": "1.3.8", + "description": "TypeScript definitions for D3JS d3-shape module", + "hashes": [ + { + "alg": "SHA-512", + "content": "82a7e7333e857791fa18e2d88b13993ffc65accb499acf41692fbaa16c5328736a3c667ddc19165aea50482626e981eac7a87dc2346ea6e25bf746ee9fa65a62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/d3-shape@1.3.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d3-shape" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/d3-path@1.0.9", + "group": "@types", + "name": "d3-path", + "version": "1.0.9", + "description": "TypeScript definitions for D3JS d3-path module", + "hashes": [ + { + "alg": "SHA-512", + "content": "35a21e488062160482e8819406365672c714244abbbe956eecab611cdf1e89e4d5f5df4caa448e64b1f8721ab53e670acb4e8f35eddac4b78a991232c49f8f65" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/d3-path@1.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-svg@6.5.3", + "name": "react-native-svg", + "version": "6.5.3", + "description": "SVG library for react-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cac8a1eb4af38ad3d32ab05910883e0d669ee7338b9ff8ca04b5628f7ceb2d7bc83fde295cf995d00dcf798aeafbc608b41944471c25d96f3da2f20d1c5fcb2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) [2015-2016] [Horcrux]\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-native-svg@6.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/magicismight/react-native-svg#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/magicismight/react-native-svg/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/magicismight/react-native-svg.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color@2.0.1", + "name": "color", + "version": "2.0.1", + "description": "Color conversion and manipulation with CSS string support", + "hashes": [ + { + "alg": "SHA-512", + "content": "023a6377c6aca99e8477141ea86cd4e560618537c9ff4700e1695badeedee6f5df9834a675aecebfa8de2a8aeef9bd2f1dc6f50aabeeae84c7a79cc85b385530" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Heather Arthur\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color-string@1.9.1", + "author": "Heather Arthur", + "name": "color-string", + "version": "1.9.1", + "description": "Parser and generator for CSS color strings", + "hashes": [ + { + "alg": "SHA-512", + "content": "b33dbd8f56e64837e8031288114eb3c282195cde81ac56c030885f6023728995c10ee53f6a21e537ce25a7fc43ccbdae6f21612c3a1b1c8954d57ef45d1acc0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Heather Arthur \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color-string@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pegjs@0.10.0", + "author": "David Majda", + "name": "pegjs", + "version": "0.10.0", + "description": "Parser generator for JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "a88e7ea053441a2dcbe470310f03762c0e0683b8ab17bd19b36e5e7618e577d41e98e829d026ef32d6c570cbc5b44a353a2b723eb702ce440507c24ffe1c60a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2016 David Majda\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pegjs@0.10.0", + "externalReferences": [ + { + "type": "website", + "url": "http://pegjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/pegjs/pegjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/pegjs/pegjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-svg-uri@1.2.4", + "group": "@types", + "name": "react-native-svg-uri", + "version": "1.2.4", + "description": "TypeScript definitions for react-native-svg-uri", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce5d12eaa3daf32963ef227c8e1583b38dcab255e1a528521172492e679f8abe5c1352150f585454091e3f799437ad31b3b16d99cedbd54ee5275264dd4c1da5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-svg-uri@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-svg-uri" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-swiper@1.5.12", + "group": "@types", + "name": "react-native-swiper", + "version": "1.5.12", + "description": "Stub TypeScript definitions entry for react-native-swiper, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "c4536f73fb409eb0530b59530e1feea5e75df46b44b26211fd1340029ad01a4e405340a78227c8d67944aa731d29a81b0680a65c4adcc921bb6d55f03d71059c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-swiper@1.5.12" + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-swiper@1.6.0", + "name": "react-native-swiper", + "version": "1.6.0", + "description": "Swiper component for React Native.", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a79134d98bef6e654832d2ecf523da180e1094df3dfa9599fe2c5b24f455cf45e9716ff29e001cef3ecdebdd2ac75b2d5a03aeca1ad4858f4c4d2b6403d0d25" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 斯人\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-native-swiper@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/leecade/react-native-swiper#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/leecade/react-native-swiper/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/leecade/react-native-swiper.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.8.1", + "name": "prop-types", + "version": "15.8.1", + "description": "Runtime type checking for React props and similar objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a23f3b0a064809dba5528868815011ec08e50b4df6ed4e1e9782fa780bcea827ae74c0d553435384d695f9bf437f87578123f58173139cf7617deff6a831f972" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/prop-types@15.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.io/react/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/prop-types/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/prop-types.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-tab-navigator@0.3.5", + "group": "@types", + "name": "react-native-tab-navigator", + "version": "0.3.5", + "description": "TypeScript definitions for react-native-tab-navigator", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c72d5aacd3b2efe3afbc2366a0ad1326e585e5d73666e62b9810b2742366897c13525724ca16d91a0722f67ee7d970b0ad13ad8ffc3d36a50c90ae3cf48e68a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-tab-navigator@0.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-tab-navigator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-tab-view@1.0.6", + "group": "@types", + "name": "react-native-tab-view", + "version": "1.0.6", + "description": "TypeScript definitions for react-native-tab-view", + "hashes": [ + { + "alg": "SHA-512", + "content": "8966727e516d13661808a3fc0ef8995ded5b107d46f6751e61c1bc1c2727a9b2587c59a2053021febf5a912df2e86f5ad10a98e87fa8bb32aa435f273376b471" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-tab-view@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-text-input-mask@0.7.6", + "group": "@types", + "name": "react-native-text-input-mask", + "version": "0.7.6", + "description": "TypeScript definitions for react-native-text-input-mask", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a6d71b01acc39b030644ca752a255008ecbc4b4da1a393b0891f3dc5611cc89c3209574430759c5b917ec55f8d3e382904f6ef9a65bd890e3dc0ffcd6d2ce9c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-text-input-mask@0.7.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-text-input-mask" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-toast-native@0.1.3", + "group": "@types", + "name": "react-native-toast-native", + "version": "0.1.3", + "description": "TypeScript definitions for react-native-toast-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "d323408c079dfe1d601218b3fb7dfdd3e30430db01becb9e535fa9de686ea52159e4abccb768c22166e90ab03faedb54dff0517ce41f103838f56f53f527750a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-toast-native@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-toast-native" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-touch-id@4.4.0", + "group": "@types", + "name": "react-native-touch-id", + "version": "4.4.0", + "description": "Stub TypeScript definitions entry for react-native-touch-id, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c0be81e6142f1cf2ca1e513fecfe9eda7c6952688a4dad268ac0c631324a10bb5a75f2af4245b70d798b636a1ae273c206aafa8b8bb30ce624bdf0ad427398d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-touch-id@4.4.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-touch-id@4.4.1", + "author": "Naoufal Kadhom", + "name": "react-native-touch-id", + "version": "4.4.1", + "description": "React Native authentication with the native Touch ID popup.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d634e5f1f0bed1fc6fa9e832fd75d3ca8eaf32f3e18f39280dd6aaa18671d0e1fc013db9d0db979cd3f22a4b6f8a021ccacdfed9a71c8aa39e6826a597b96bbe" + } + ], + "licenses": [ + { + "license": { + "id": "ISC" + } + } + ], + "purl": "pkg:npm/react-native-touch-id@4.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/naoufal/react-native-touch-id" + }, + { + "type": "issue-tracker", + "url": "https://github.com/naoufal/react-native-touch-id/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/naoufal/react-native-touch-id.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-vector-icons@4.6.4", + "group": "@types", + "name": "react-native-vector-icons", + "version": "4.6.4", + "description": "TypeScript definitions for react-native-vector-icons", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b6243f7c96b82382003defd59e4d7963e877b5b0de1292977850995c543b03ef5bb5c877fcada4fd0fb38fe2f6f72d9597e882d89156b87732ed564b78c3258" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-vector-icons@4.6.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-version-number@0.3.5", + "group": "@types", + "name": "react-native-version-number", + "version": "0.3.5", + "description": "Stub TypeScript definitions entry for react-native-version-number, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "58ef2b9464332f43c0a292b4e8086934db0cf2c26df3d239d64d21d67c36c63342a7be6410a450b9014fdef837a5b64026075ef06142e0e2413e9aa5f7a21fac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-version-number@0.3.5" + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-version-number@0.3.6", + "author": "Alvaro Medina Ballester", + "name": "react-native-version-number", + "version": "0.3.6", + "description": "Access app version inside React Native", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ddc9788af74362c2649b980525501395e96235406a2ab6f659cc8e73418e1f2a5ebb07766b667fe1f96cbf39820a28531f78f4a2c9f788b3c2ed1c6399fcd80" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 APSL\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-native-version-number@0.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/APSL/react-native-version-number#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/APSL/react-native-version-number/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/APSL/react-native-version-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-native-video@2.0.8", + "group": "@types", + "name": "react-native-video", + "version": "2.0.8", + "description": "TypeScript definitions for react-native-video", + "hashes": [ + { + "alg": "SHA-512", + "content": "0eeb5fdb4a61fe6c4c360b7b4cb4b2374bf8f52886ed8647dd6c14f92c6813c20605b9ff32106ac9fcd4fb4f5c6e6675386d27420f6b1095cd228c3040e5572f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-native-video@2.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-navigation@2.13.10", + "group": "@types", + "name": "react-navigation", + "version": "2.13.10", + "description": "TypeScript definitions for react-navigation", + "hashes": [ + { + "alg": "SHA-512", + "content": "5dea00ae2076f0500ee8834a6287806bd3f910b501d13f136cab9ca22ca5801e702aef71398e47a889b49df37c8c5b93d8dcac62ef6f161841481f5beb5b6a4f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-navigation@2.13.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-notification-system@0.2.42", + "group": "@types", + "name": "react-notification-system", + "version": "0.2.42", + "description": "TypeScript definitions for React Notification System", + "hashes": [ + { + "alg": "SHA-512", + "content": "f732f51c9365b98f70ae3438ad74ac70b46dae2af793c3ffe2b574af8c4494fbb8361d3b1e0123cddeb1d672ab37eef62955c305373425a515ed0783ef2c7fd6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-notification-system@0.2.42", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-notification-system" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-notification-system-redux@1.1.7", + "group": "@types", + "name": "react-notification-system-redux", + "version": "1.1.7", + "description": "TypeScript definitions for react-notification-system-redux", + "hashes": [ + { + "alg": "SHA-512", + "content": "61420053246083d65754261506cbeac936c6158256d28a65a5102469742ee3cc47e20a64c5637c5fc2ccf029f6ff366d236be8030022df98c45002a50b29ac09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-notification-system-redux@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-notification-system-redux" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux@3.7.2", + "name": "redux", + "version": "3.7.2", + "description": "Predictable state container for JavaScript apps", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1206670a288b88478304dbdfc078d5279792fe86f06aece6895b36a9b53409027b5a3efc4826a7e78db684882cf3688cfe5e65482dfa8033739bd1a5cb3df8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux@3.7.2", + "externalReferences": [ + { + "type": "website", + "url": "http://redux.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reactjs/redux/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reactjs/redux.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash-es@4.17.21", + "author": "John-David Dalton", + "name": "lodash-es", + "version": "4.17.21", + "description": "Lodash exported as ES modules.", + "hashes": [ + { + "alg": "SHA-512", + "content": "98a9c2f9027da56573bfe0b8fd4deb46c1daa457c7bd0168141f767b9db17b218c717ebf3a5225efc8ded6ef2f78fcd8652924a2030f276ca3c71b1bf3d731cb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright OpenJS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash-es@4.17.21", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/custom-builds" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash-cli/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-notify-toast@0.5.3", + "group": "@types", + "name": "react-notify-toast", + "version": "0.5.3", + "description": "TypeScript definitions for react-notify-toast", + "hashes": [ + { + "alg": "SHA-512", + "content": "14ad1444c64649c6f5cfe850d1b29492272d9860486f3ff26ddb4d2d4630b3ac3eb49eaceef44e24b8715b5691d45eb759ac41cb17ed5afe54bfd6a3d8b2a32a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-notify-toast@0.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-notify-toast" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-numeric-input@2.2.4", + "group": "@types", + "name": "react-numeric-input", + "version": "2.2.4", + "description": "TypeScript definitions for react-numeric-input", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f5a79a4faf695e8285f1cdb72fa7ce7fbfbd2429d401b4bee54e473fb107f806717f448032b0d82e547bfcdb190952d587081f97f3ae4d02b1671e68c56bbac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-numeric-input@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-numeric-input" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-onclickoutside@6.7.4", + "group": "@types", + "name": "react-onclickoutside", + "version": "6.7.4", + "description": "TypeScript definitions for react-onclickoutside", + "hashes": [ + { + "alg": "SHA-512", + "content": "37b127321c6a6fe4da50e18941457c60978bde7e6a3f9f9c5f0b56452fc5616f8348401bf13df1c0db2067ac0424c1cfe3f4297d51dc05a168a458c9f5706e3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-onclickoutside@6.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-onclickoutside" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-onsenui@2.9.19", + "group": "@types", + "name": "react-onsenui", + "version": "2.9.19", + "description": "TypeScript definitions for React Onsen UI (react-onsenui)", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0d766c6a799e46dcf60f3b50fca158fcdd6c545f22223ed82e954dc49e75ac41b1957fb622151a0ea79a8d847788d1c3bfcf0c305e9ecdc10b72254aa130001" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-onsenui@2.9.19", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-onsenui" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-overlays@0.8.5", + "group": "@types", + "name": "react-overlays", + "version": "0.8.5", + "description": "TypeScript definitions for React Overlays", + "hashes": [ + { + "alg": "SHA-512", + "content": "16b932b0aad1f49ec9f2ef20512c1df9f3df9975d686df5d7580f17f4492ac8cae3fe9bfff812341418e53e5d025b64cf0f35ed8b07a2be4f101d7263b5384f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-overlays@0.8.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-transition-group@2.9.2", + "group": "@types", + "name": "react-transition-group", + "version": "2.9.2", + "description": "TypeScript definitions for react-transition-group", + "hashes": [ + { + "alg": "SHA-512", + "content": "e45bf60d034ef86a5d3d9731a76c7f3901bf1f5f40d355a59a98d50fd70abd5166a152ce67d2ef0604961baa525c8538a20e5f81bbc63da095e7e5469160041c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-transition-group@2.9.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-owl-carousel@2.3.0", + "group": "@types", + "name": "react-owl-carousel", + "version": "2.3.0", + "description": "Stub TypeScript definitions entry for react-owl-carousel, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "6afe5eca57919c6d0b9beee6218ef83b125d3b51d377c939cc69df83500587f8fed279ddc6f165a6e2ac4b20f6e0587035c936eab653783bd14befbe8f90ef29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-owl-carousel@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/seal789ie/react-owl-carousel#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/seal789ie/react-owl-carousel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/seal789ie/react-owl-carousel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-owl-carousel@2.3.3", + "author": "xhriman", + "name": "react-owl-carousel", + "version": "2.3.3", + "description": "React.js + Owl Carousel", + "hashes": [ + { + "alg": "SHA-512", + "content": "0784c8d840c3b69ec80ccf025b3979461ff5ee9d4d7cc5bf40121b902d7c0a488c1826cef73b58faf00f4cdeb4b69fbadd5f6ffe82ea02b2e392242d0c6aa3fc" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-owl-carousel@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/seal789ie/react-owl-carousel#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/seal789ie/react-owl-carousel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/seal789ie/react-owl-carousel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/owl.carousel@2.3.4", + "author": "David Deutsch", + "name": "owl.carousel", + "version": "2.3.4", + "description": "Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider.", + "hashes": [ + { + "alg": "SHA-512", + "content": "25a0ecb3df9f780bc45bc299a693d2a6595fa68b04cd0896f98b6dfd79b9b7fdc24c9ed8566921e919168b1a00db25e4d9ba08c1e758c4ebebae9a481b3aeef4" + } + ], + "licenses": [ + { + "license": { + "name": "SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE", + "text": { + "content": "Copyright (c) 2014 Owl\nModified work Copyright 2016-2018 David Deutsch\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/owl.carousel@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/OwlCarousel2/OwlCarousel2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/OwlCarousel2/OwlCarousel2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/OwlCarousel2/OwlCarousel2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jquery@3.6.0", + "author": "OpenJS Foundation and other contributors", + "name": "jquery", + "version": "3.6.0", + "description": "JavaScript library for DOM operations", + "hashes": [ + { + "alg": "SHA-512", + "content": "255cc047f02306f56dd81998871442498cac0ec3dcb2c7664c59f3c8b12db3da8dc268e6bb825300c62e6c47f054e4b0a50d48d6c28a15cc616422366ee7ab7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright OpenJS Foundation and other contributors, https://openjsf.org/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/jquery@3.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://jquery.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jquery/jquery/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jquery/jquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react@16.14.0", + "name": "react", + "version": "16.14.0", + "description": "React is a JavaScript library for building user interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d17d822260e424602988095c7f43832889de4b004f86a25ac0e6b9c02b4a6eeed9102ae64b6e8dbed4882f29d0eba720913fd12782e274939cddb5044b0994f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react@16.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-dom@16.14.0", + "name": "react-dom", + "version": "16.14.0", + "description": "React package for working with the DOM.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6009e4170cba08a8c82a0f720ed8087d6e77f4c3d933870379ab81469c767aee1066f7278fcc1e4924021009cf31de9167365c05ab8462759820340024cd65b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/react-dom@16.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/scheduler@0.19.1", + "name": "scheduler", + "version": "0.19.1", + "description": "Cooperative scheduler for the browser environment.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ffcf04564584948f4ff783fa2d28344f321eaabf649831636af392046bc899c80bfca1df730d8a464a7a4112336070c36ae9271bbb929f20fc4d17bd91ff610" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Facebook, Inc. and its affiliates.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/scheduler@0.19.1", + "externalReferences": [ + { + "type": "website", + "url": "https://reactjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-paginate@4.3.5", + "group": "@types", + "name": "react-paginate", + "version": "4.3.5", + "description": "TypeScript definitions for react-paginate", + "hashes": [ + { + "alg": "SHA-512", + "content": "7876a36aa3ab7a66cdb35e39da014ac5cd980f1264200bab5470c1857c6f46646452b4640bd970e6e09701a823f83a7d432b2e57a9a4575655fb48a7fe06e2b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-paginate@4.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-paginate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-places-autocomplete@6.1.6", + "group": "@types", + "name": "react-places-autocomplete", + "version": "6.1.6", + "description": "TypeScript definitions for react-places-autocomplete", + "hashes": [ + { + "alg": "SHA-512", + "content": "49f2c06a96928a9e9f5efa6222030c9f04bf27eab64ccf37aaddf3f1419ef53ebee3abdba057c7efe6e0342c156aab743aa0d4498da4d31fcafa1f922e20d749" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-places-autocomplete@6.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-places-autocomplete" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/google.maps@3.49.2", + "group": "@types", + "name": "google.maps", + "version": "3.49.2", + "description": "TypeScript definitions for Google Maps JavaScript API", + "hashes": [ + { + "alg": "SHA-512", + "content": "64ed6a59c8ae92a103f6a714356ece68f5d69d3953fad3b759c6249ae759c905b606a0fb4e530546b76a482a2a7f02a11110b0040e40fd866dfe0e40dc1aa02d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/google.maps@3.49.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-pointable@1.2.2", + "group": "@types", + "name": "react-pointable", + "version": "1.2.2", + "description": "TypeScript definitions for react-pointable", + "hashes": [ + { + "alg": "SHA-512", + "content": "936a6009be5e6f23ff26d685a36a50a83fa139dd5383194e43ffead5f0ba9b6a22a3c025652170da9aaa801c90bdf06e9b4ecd33a9764123ed9bd6b2e63f0f25" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-pointable@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-pointable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-popover@0.5.4", + "group": "@types", + "name": "react-popover", + "version": "0.5.4", + "description": "TypeScript definitions for react-popover", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0086cb4645b9de9c4c3e75a2d8caa9cd9e2a2de65c09a995fe8ac56772aea17b131115514d87b235f1ecb4b60cb08eade71c5efaa41ece56e092aa524e6d1c6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-popover@0.5.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-popover" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-portal@3.0.9", + "group": "@types", + "name": "react-portal", + "version": "3.0.9", + "description": "TypeScript definitions for react-portal", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a10a0cb545d216107bfe43068525d2f2b35e12cd913d0c6f92473655d4434b25c758dab8a6ed3f16916b9221b465b6c813d33eecc383aad6eda029c86078fd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-portal@3.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-portal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-primitives@0.6.2", + "group": "@types", + "name": "react-primitives", + "version": "0.6.2", + "description": "TypeScript definitions for react-primitives", + "hashes": [ + { + "alg": "SHA-512", + "content": "caca04022cdd8018a68a67c4a47b7b77fc4391f17436430fecc7bcf5c032415109f2494271a77e8ea520e5f143563ecddfef444a69935c7b6a68bed903acd3ee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-primitives@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-props-decorators@0.1.32", + "group": "@types", + "name": "react-props-decorators", + "version": "0.1.32", + "description": "TypeScript definitions for react-props-decorators", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c60994c157a9040dc921db581cd3b5019a9676703821d330305fa59e90eb0786d4b0c79755c4f51f782f3637f13c5a9664f50832410940ef41bc0b5a12074ec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-props-decorators@0.1.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-radio-group@3.0.4", + "group": "@types", + "name": "react-radio-group", + "version": "3.0.4", + "description": "TypeScript definitions for react-radio-group", + "hashes": [ + { + "alg": "SHA-512", + "content": "5818c5d840c8824e4b47294e7f4e3920d87d9e19ccde7abcf99e7020277d840970d8563e1ab29f5f90875311bb5cc47c85407a8c36e820ebb98f7ba49fd7f60d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-radio-group@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-radio-group" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-recaptcha@2.3.4", + "group": "@types", + "name": "react-recaptcha", + "version": "2.3.4", + "description": "TypeScript definitions for react-recaptcha", + "hashes": [ + { + "alg": "SHA-512", + "content": "44b9d481f15e430836dbe329f88bc5957cf6e7e26b730cb17987bda008dbbc2b08c4ae6d1ab5d66f8e1b2b756eb1d5825888ae7db32d106f22e0f15748205434" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-recaptcha@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-recaptcha" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-redux-epic@1.1.4", + "group": "@types", + "name": "react-redux-epic", + "version": "1.1.4", + "description": "TypeScript definitions for react-redux-epic", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab057ec0766f85cb3b28074beb6a77e8288c31323bb1324f6b6c7f0451ce4b494e800fb586ad39a5cf6e996494f74ee4d066048a822ff1112248229c21717ac6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-redux-epic@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-observable@0.18.0", + "name": "redux-observable", + "version": "0.18.0", + "description": "RxJS based middleware for Redux. Compose and cancel async actions and more.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6ed369fa8ebebf6eafefc88f44fc01f1232225d18b16968aaf5aa4811b42aa37a69006e8cc04fea194302540b8fc84ff97429a8bdbddcc2d7e95eb5d9cd234a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016-2018 Ben Lesh, Jay Phelps, and redux-observable contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-observable@0.18.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/redux-observable/redux-observable#README.md" + }, + { + "type": "issue-tracker", + "url": "https://github.com/redux-observable/redux-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/redux-observable/redux-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/gitbook-plugin-github@2.0.0", + "name": "gitbook-plugin-github", + "version": "2.0.0", + "description": "Display a link to your GitHub repo in your gitbook", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c319081d0b9bc5184aa7e77dd20dfffc015f956a0c6118853209902ad04ab09324b517bde50a5ef0f65f1458377699eed2abd2f7cdcafb45a27a163485028ef" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n" + } + } + } + ], + "purl": "pkg:npm/gitbook-plugin-github@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/GitbookIO/plugin-github#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/GitbookIO/plugin-github/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/GitbookIO/plugin-github.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-redux-i18n@0.0.10", + "group": "@types", + "name": "react-redux-i18n", + "version": "0.0.10", + "description": "TypeScript definitions for react-redux-i18n", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab67ee86d9392ed898d00902a6d0b13f9901c3dff444334cd01f9ae6fbaebe99ab7926dffde4cab8f6b8d04adc8dda1a6fb8c39955a168708c9db38a54c97b6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-redux-i18n@0.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-redux-toastr@7.6.2", + "group": "@types", + "name": "react-redux-toastr", + "version": "7.6.2", + "description": "TypeScript definitions for react-redux-toastr", + "hashes": [ + { + "alg": "SHA-512", + "content": "815739c27e3d3b0906ea787ae22517721357599d40e6f121cfa532a9c5a06cbe15c8d369eeef8aec604f6d8c664f75bf15c118fce28b8acdacf1733707bcc6d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-redux-toastr@7.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-redux-toastr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-relay@1.3.15", + "group": "@types", + "name": "react-relay", + "version": "1.3.15", + "description": "TypeScript definitions for react-relay", + "hashes": [ + { + "alg": "SHA-512", + "content": "32c313bc7bf312da3982711135a5815e180e7d051f38cdf6e15acc9d9588dd1731f68fffe718ac3adddba6a704ee337cc9b9083807eb9e56d8bbcc92919c9119" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-relay@1.3.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/relay-runtime@1.3.13", + "group": "@types", + "name": "relay-runtime", + "version": "1.3.13", + "description": "TypeScript definitions for relay-runtime", + "hashes": [ + { + "alg": "SHA-512", + "content": "2239d391e5f8effe0218816f956b48da4102f0dacd4c7d03663feaea9217e2c36aca558f39464d1f80ce641086a7b8d06651356f635c640e43d39a800ed7b5cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/relay-runtime@1.3.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-resize-detector@2.2.0", + "group": "@types", + "name": "react-resize-detector", + "version": "2.2.0", + "description": "TypeScript definitions for react-resize-detector", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fce6729000543649f57d55f39c9cb8ab5d70eeee1620f379e54ec21b1cd705cfdaa9aa3aac76ee102ca19c7bb448826c0eceb5d42e6761b770cde19dd4d590d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-resize-detector@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-resolver@3.1.3", + "group": "@types", + "name": "react-resolver", + "version": "3.1.3", + "description": "TypeScript definitions for react-resolver", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0bd47737c444af8a21a8c228638bc650e86c942516463a2c1b468d212ce0b83721192e3bd7856725ca4463e34b8c92ca56eb446e59d615774534c9c7c3c5a85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-resolver@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-resolver" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-responsive@3.0.3", + "group": "@types", + "name": "react-responsive", + "version": "3.0.3", + "description": "TypeScript definitions for react-responsive", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5a4c0bd720582ffe31bad1ded6495d3ec960a3a89d39706f8a395e3c4a2a981a31a2f6415db2cf509d54d32e714999b5305a7a0cf950f52326b2d49072fc73d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-responsive@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-rnd@7.4.4", + "group": "@types", + "name": "react-rnd", + "version": "7.4.4", + "description": "TypeScript definitions for react-rnd", + "hashes": [ + { + "alg": "SHA-512", + "content": "461f5474a1625787f187fd39b2142c53744ef9e1f96a753a7990a8f0d073a1b11f07a414e742122d53f6e2b119b485db62c8a2c23a3bc3deb468067a26272932" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-rnd@7.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router@4.4.5", + "group": "@types", + "name": "react-router", + "version": "4.4.5", + "description": "TypeScript definitions for React Router", + "hashes": [ + { + "alg": "SHA-512", + "content": "d76f953aed7ec620bc44f73dcab8070b22c8efd56cc23b6ea9e4b680facc732c07ead91cf2b188521b382da2f70093eaa3977e44f9df46934a889ecc2b642172" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router@4.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/history@5.0.0", + "group": "@types", + "name": "history", + "version": "5.0.0", + "description": "Stub TypeScript definitions entry for history, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "872f1bed8d49f0e19ee8b6c08e3df19e242b8f7bfa96c8af09cae67f84f34a03f32e484878a81ce486674fb45e22a984ba87637cef04600ba816f22b1e2ffe8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/history@5.0.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/history@5.3.0", + "author": "Remix Software", + "name": "history", + "version": "5.3.0", + "description": "Manage session history with JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "66a68ac238eb0185187cb1be86d19a2086789e2a17d8bef4654308172b12df1bc1b121b8c7f9f557a4d757737c65836e1469438ab160df64fb07a58e50f0d871" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) React Training 2016-2020\nCopyright (c) Remix Software 2020-2021\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/history@5.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/remix-run/history#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/remix-run/history/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/remix-run/history.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-bootstrap@0.24.5", + "group": "@types", + "name": "react-router-bootstrap", + "version": "0.24.5", + "description": "TypeScript definitions for react-router-bootstrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "191c7ff3117fb24c38fcf9a6e9dfb16c4c62f20a1b08b39ef04a33f645cf4066d8a3ba7959b8bad6d8e9385e406df2795cc37e7c8cf0793a138b9ea8763fcb39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-bootstrap@0.24.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-dom@4.3.5", + "group": "@types", + "name": "react-router-dom", + "version": "4.3.5", + "description": "TypeScript definitions for React Router", + "hashes": [ + { + "alg": "SHA-512", + "content": "7856a349401261b3c78360433351bc06dc7e62a1a0bd138f220eac0619773b891b0dd61774575fae04057ffa5c06e41539b8df4fd00bfdd775e638a54790c810" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-dom@4.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-config@1.1.3", + "group": "@types", + "name": "react-router-config", + "version": "1.1.3", + "description": "TypeScript definitions for react-router-config", + "hashes": [ + { + "alg": "SHA-512", + "content": "b87d5638eba2ff863db5b6fd155742b39edafbfaf0f72e3f71495424b05f2b82481e3c32f5c26381b8e03bb98b664dbfc53328d95088233660b37f9c7ccb87bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-config@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-native@4.2.4", + "group": "@types", + "name": "react-router-native", + "version": "4.2.4", + "description": "TypeScript definitions for React Router Native", + "hashes": [ + { + "alg": "SHA-512", + "content": "02f469d54bb199ec28dfedc11e160f9d94bd5957dfd9b8efa532445f26499a77f716f4b37892709813938ecdf7cb7531d94ce0fb71c2705dea06afe3995d7ab8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-native@4.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-navigation@1.0.12", + "group": "@types", + "name": "react-router-navigation", + "version": "1.0.12", + "description": "TypeScript definitions for react-router-navigation", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4fb29b1ca421f22b05b1fec7d73bf13de47dff8980461b79e60a19be1d55c587ce76a5b7bdbfac35ab4fb956799037106f5404f8fa1cd37f90270c7ec813172" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-navigation@1.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-navigation" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react@17.0.48", + "group": "@types", + "name": "react", + "version": "17.0.48", + "description": "TypeScript definitions for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b3dc1b4bb88607d6e59db2feb05d8761a3386a8f6d280f8fc79360cd5c89f5905b26a7dc7c77d401e859cf85f91b85dd8f80438db7d435c7f79b9308df14ba3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react@17.0.48", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-navigation@3.0.8", + "group": "@types", + "name": "react-navigation", + "version": "3.0.8", + "description": "TypeScript definitions for react-navigation", + "hashes": [ + { + "alg": "SHA-512", + "content": "5dea00ae2076f0500ee8834a6287806bd3f910b501d13f136cab9ca22ca5801e702aef71398e47a889b49df37c8c5b93d8dcac62ef6f161841481f5beb5b6a4f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-navigation@3.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-navigation-core@1.0.11", + "group": "@types", + "name": "react-router-navigation-core", + "version": "1.0.11", + "description": "TypeScript definitions for react-router-navigation-core", + "hashes": [ + { + "alg": "SHA-512", + "content": "673d475f8877d6a1be87a6173871ebb02e7928e1d87f2baae408efad4cd6ea2b0c3eab0f5630dae1ab9b52c56108e22832799f22b815651f67a23ad8aac3bec0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-navigation-core@1.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-navigation-core" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/history@4.7.11", + "group": "@types", + "name": "history", + "version": "4.7.11", + "description": "TypeScript definitions for history", + "hashes": [ + { + "alg": "SHA-512", + "content": "872f1bed8d49f0e19ee8b6c08e3df19e242b8f7bfa96c8af09cae67f84f34a03f32e484878a81ce486674fb45e22a984ba87637cef04600ba816f22b1e2ffe8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/history@4.7.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/history" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-param-link@1.0.1", + "group": "@types", + "name": "react-router-param-link", + "version": "1.0.1", + "description": "TypeScript definitions for react-router-param-link", + "hashes": [ + { + "alg": "SHA-512", + "content": "d21b43ad3286c79b0c0cf2fe9620c050ed28e3785e7580cf31ea592e1e66acdf63d95436e882103d3e408f20e33c242a43535576ef80a8f64bb90ea447edecc7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-param-link@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router-redux@5.0.21", + "group": "@types", + "name": "react-router-redux", + "version": "5.0.21", + "description": "TypeScript definitions for react-router-redux", + "hashes": [ + { + "alg": "SHA-512", + "content": "045d8eac8ddb5b9809863a8a125bbf60aee59d4c92155f41326e6bc896e6e3bac044b2dd0abef6742e9c5c1cdc14e46ab034c2ac56e1b05b2ada8809458e1fbe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router-redux@5.0.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router-redux" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-s-alert@1.3.3", + "group": "@types", + "name": "react-s-alert", + "version": "1.3.3", + "description": "TypeScript definitions for react-s-alert", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fbc6fbf3c1dfe04bed0a26418d61e8cb7bec2a61bdea643e8866b89e07b3b5c16647940d1c82464a338443b86b44ca83d351089f61ab900463b23696f9d7358" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-s-alert@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-s-alert" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-scroll@1.8.4", + "group": "@types", + "name": "react-scroll", + "version": "1.8.4", + "description": "TypeScript definitions for react-scroll", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e91c0f4f630e36feb06b7ca6c613f90012f1d17f20cbfc009f281fce456518b822e2ff21ab9edc52cd85e683fed32e042c27999ad771820cecc548ecfef1738" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-scroll@1.8.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-scroll" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-scrollbar@0.4.10", + "group": "@types", + "name": "react-scrollbar", + "version": "0.4.10", + "description": "TypeScript definitions for react-scrollbar", + "hashes": [ + { + "alg": "SHA-512", + "content": "a52904271f8fe9d3d38fdfeb449eaa7a1e94028919f985406de1df539b151dda3b2df08d99d42682f6eac9bf4be64204680a7066f11849a58066731c6c3fc21e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-scrollbar@0.4.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-select@1.3.6", + "group": "@types", + "name": "react-select", + "version": "1.3.6", + "description": "TypeScript definitions for react-select", + "hashes": [ + { + "alg": "SHA-512", + "content": "b94400613839ba26fbec5c118f8290a8ec195feb2bd70acac579689009283ec4eaec8ac1016f8c72c9c6c9972ae2faa6c269674481720a11d052aefa33b32f72" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-select@1.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-select" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-share@2.1.1", + "group": "@types", + "name": "react-share", + "version": "2.1.1", + "description": "TypeScript definitions for react-share", + "hashes": [ + { + "alg": "SHA-512", + "content": "c485937b696f798db03c981bc70fc300982ba0d2c4bd716bf5da1a8468d621d41d21a701db00576b8622c22e84248d985ae262ead37fcf8dead6bceafbba5da6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-share@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-show-more@2.0.3", + "group": "@types", + "name": "react-show-more", + "version": "2.0.3", + "description": "TypeScript definitions for react-show-more", + "hashes": [ + { + "alg": "SHA-512", + "content": "719f503e13a634fe8c458b14cb00239cb5d7d7cf78348d46da526aee74508fcde5dff546c344b07c3871eaf9da4acc7e869e845964bec4dc7bd286a94e66b4aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-show-more@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-show-more" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-side-effect@1.1.1", + "group": "@types", + "name": "react-side-effect", + "version": "1.1.1", + "description": "TypeScript definitions for react-side-effect", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d374cb1530ed810475516deeda1df116f24c732c16d3459b448a6c52c56985f5c9af09f157119bdec56e107338c522d8135a47de1d3c50fd7f2a374c720b059" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-side-effect@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sidebar@2.3.1", + "group": "@types", + "name": "react-sidebar", + "version": "2.3.1", + "description": "TypeScript definitions for react-sidebar", + "hashes": [ + { + "alg": "SHA-512", + "content": "7113069e112ae99314c44b5fb5e06aea02be9e4fbaa6b4b12f6dc5f7d05dd8052dd57894777a7a99d92ffcf0ff2ecbfe0435405833629d858b7c75b326dbd193" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sidebar@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sketchapp@0.12.4", + "group": "@types", + "name": "react-sketchapp", + "version": "0.12.4", + "description": "TypeScript definitions for react-sketchapp", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd896b411ea4738db86fa5c6afb11f7378c4ebe4eeb323def149cfa30733c145c3c9a177a79203569ac5f1a0ec086fd8d98c175dd6ef2525fd87cd2921a8f851" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sketchapp@0.12.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-slick@0.23.10", + "group": "@types", + "name": "react-slick", + "version": "0.23.10", + "description": "TypeScript definitions for react-slick", + "hashes": [ + { + "alg": "SHA-512", + "content": "662a9d7a7700343672eac58e589e782c3bde6ee5c51210e51ed5d4f45162a5047605c614d90271661bc93d6e982bb7287226d488d9fe62f0d36edd47b4220154" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-slick@0.23.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-slick" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-slider@0.8.1", + "group": "@types", + "name": "react-slider", + "version": "0.8.1", + "description": "TypeScript definitions for react-slider", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd7992ab08c880a242470e7bcecf3bf095d68fb26b9765cb70abf98c0107d81a0082a8989ec55c00351b02351bb5d90cc3673aed711b2b5c6ca47cfdfe0bc92e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-slider@0.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-smooth-scrollbar@8.0.4", + "group": "@types", + "name": "react-smooth-scrollbar", + "version": "8.0.4", + "description": "TypeScript definitions for react-smooth-scrollbar", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc6804230d994b818a39876f75def02518416a3a8eabb9d23c47a5638389f5b4b0135125ab72949be7b43f7258aff9594cb759f0ea489bef9c2e5c03bc43fc6a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-smooth-scrollbar@8.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-smooth-scrollbar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/smooth-scrollbar@8.7.4", + "author": "Dolphin Wood", + "name": "smooth-scrollbar", + "version": "8.7.4", + "description": "Customize scrollbar in modern browsers with smooth scrolling experience.", + "hashes": [ + { + "alg": "SHA-512", + "content": "052a99244c57a066e5f45180e1c8b7dc3366947151bc3c4993843c397998ca444b6b51f3836622579b2556880c77552cc7335fea6d27ada953f0675a9ca5a863" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Daofeng Wu (aka. Dolphin Wood)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/smooth-scrollbar@8.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/idiotWu/smooth-scrollbar#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/idiotWu/smooth-scrollbar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/idiotWu/smooth-scrollbar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-js@3.24.1", + "name": "core-js", + "version": "3.24.1", + "description": "Standard library", + "hashes": [ + { + "alg": "SHA-512", + "content": "6623e9f69665831a5646ed0cf9859b9baf9a43ce1711f1f52515ef7ce73f7c82d623454a84b0b62d7d775f5358ab87d42f32ccabb1df878dc24a8dbf6886943c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014-2022 Denis Pushkarev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-js@3.24.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/zloirock/core-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/zloirock/core-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/zloirock/core-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sortable-hoc@0.6.6", + "group": "@types", + "name": "react-sortable-hoc", + "version": "0.6.6", + "description": "TypeScript definitions for react-sortable-hoc", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e8e611be6371e0be5f26d01f8f48b46089c4cb739ba37e7ed8e4d4a9b950213dada372635048859466f646b6abcd68eb82da881551d155b5192654543fe2ee9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sortable-hoc@0.6.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sortable-pane@0.6.2", + "group": "@types", + "name": "react-sortable-pane", + "version": "0.6.2", + "description": "TypeScript definitions for react-sortable-pane", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f87d686f16f45bca341f8d50eb29f453664e00fdcb04b83fc9829790daedd2db24d587fd4c51bc9adbe59579da042073be3d7d518c41f3be247232c0f8e9b48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sortable-pane@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sortable-tree@0.2.6", + "group": "@types", + "name": "react-sortable-tree", + "version": "0.2.6", + "description": "TypeScript definitions for react-sortable-tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "034d4a2285582ea252f9a1d28efa92a55d1bcac909c29ca3d4ec2b4823afb45d089c49233ed56be3fb57f05721f540c591b01d93e2e78ac0abaef1ac71185d2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sortable-tree@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-virtualized@9.21.21", + "group": "@types", + "name": "react-virtualized", + "version": "9.21.21", + "description": "TypeScript definitions for react-virtualized", + "hashes": [ + { + "alg": "SHA-512", + "content": "131c7a23ba78427f81040d524728ff5304256742343eaee0eee840a74410e095b366e9ea12a34119398298c992ff737dc05800196b810f5e9aa7b93c635e153c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-virtualized@9.21.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-virtualized" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-dnd@5.0.0", + "name": "react-dnd", + "version": "5.0.0", + "description": "Drag and Drop for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbba8e3e8e0def4e74a7958d962e5735f139223ded97c1b0f90ea3852d2d0013b7b02159cc234a50231493ba9341ddedfcc3039f6f8293ac4982c1affbd422d4" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-dnd@5.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-dnd/react-dnd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-dnd/react-dnd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-dnd/react-dnd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dnd-core@4.0.5", + "name": "dnd-core", + "version": "4.0.5", + "description": "Drag and drop sans the GUI", + "hashes": [ + { + "alg": "SHA-512", + "content": "192c8699f1a89bda324c52782e5ffde439f7643bcf92b8083707de39dfa04c8d111883754dc4c60a1ac79c81c5dc0dded4fca6c8429983ede8b8ddf0dae20919" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/dnd-core@4.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-dnd/react-dnd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-dnd/react-dnd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-dnd/react-dnd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/recompose@0.27.1", + "author": "Andrew Clark", + "name": "recompose", + "version": "0.27.1", + "description": "A React utility belt for function components and higher-order components", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7bc6cca2feb7cd8c77dd3fbbcf534dae4856be4357878632abbcefb7fa444fe0eaed8fe331126a6677e510b4118cd83da23408f3348e6b0b204aa7d39be4c70" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/recompose@0.27.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acdlite/recompose" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acdlite/recompose/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acdlite/recompose.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/change-emitter@0.1.6", + "author": "Andrew Clark", + "name": "change-emitter", + "version": "0.1.6", + "description": "Listen for changes. Like an event emitter that only emits a single event type. Really tiny.", + "hashes": [ + { + "alg": "SHA-512", + "content": "617cedd5c4386b68ea6b385cb9258439cd4adaaf20f47e9e58db326608bae342c3cd15954367837be63f91575fb47faf61d3c5dab8036f774b769c44d63bc0c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/change-emitter@0.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/acdlite/change-emitter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/acdlite/change-emitter/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/acdlite/change-emitter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fbjs@0.8.18", + "name": "fbjs", + "version": "0.8.18", + "description": "A collection of utility libraries used by other Facebook JS projects", + "hashes": [ + { + "alg": "SHA-512", + "content": "11069614af9f10f4a889b8cdcbc23152d68538c5dc5ac63425a56b428651f730bc3766207fd8832133d68d44d521ac7de5be88ef8d8914ba804877ec6a0fef28" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fbjs@0.8.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/facebook/fbjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/fbjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/fbjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ua-parser-js@0.7.31", + "author": "Faisal Salman", + "name": "ua-parser-js", + "version": "0.7.31", + "description": "Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data. Supports browser & node.js environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8b2bf5def44daece6608dea2de3a6234b443adf93041432508021e1a020534e45558cde66b2947640197c13551916875605744c391d1278094b0fd2c9072191" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2012-2021 Faisal Salman <>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ua-parser-js@0.7.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/faisalman/ua-parser-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/faisalman/ua-parser-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/faisalman/ua-parser-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-spinkit@3.0.7", + "group": "@types", + "name": "react-spinkit", + "version": "3.0.7", + "description": "TypeScript definitions for react-spinkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbf267cf1fd6089f10a642f8849d2e99f840a55f6d126ba23785ca7a7b410818409311110fb84d00225a1fb554cc2ca113b2e45584eaf25d6f9a52b5a3e3e1b8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-spinkit@3.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-spinkit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sticky@6.0.4", + "group": "@types", + "name": "react-sticky", + "version": "6.0.4", + "description": "TypeScript definitions for react-sticky", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f9ca779e33b3eb52ee27aa4ee8574734a7d2ea1d73b60fed7b0e143f67b5225a16a84af2895c1912cc074d451c593bf9e3b6d29dd0287d84b9da14fa9994076" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sticky@6.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-sticky" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-sticky-el@1.0.3", + "group": "@types", + "name": "react-sticky-el", + "version": "1.0.3", + "description": "TypeScript definitions for react-sticky-el", + "hashes": [ + { + "alg": "SHA-512", + "content": "184e11cbd1264b44539f64fce6e61b72caaf7df3db24684536471658c704b3a7ed8eb2b9167e934fa46d8265e969be65cb773454b513ee26e1fdf0fa9f0771e1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-sticky-el@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-sticky-el" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-stickynode@1.4.0", + "group": "@types", + "name": "react-stickynode", + "version": "1.4.0", + "description": "TypeScript definitions for react-stickynode", + "hashes": [ + { + "alg": "SHA-512", + "content": "a01cf5cd1f70d425a64f29b8d81b7320d5732e896f9e92b500e9967140d8261a7f6213d3d52d3a9d742cac8ac248cf2389375037c1bd61824799dd2f15075f7e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-stickynode@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-stripe-elements@1.3.5", + "group": "@types", + "name": "react-stripe-elements", + "version": "1.3.5", + "description": "TypeScript definitions for react-stripe-elements", + "hashes": [ + { + "alg": "SHA-512", + "content": "cea437a80e2e9528eafb92b00ff7a7e7cbd7be09b3926a0d2ac06f16f11dc60eac7eb3867c836c433aa1bb675d3a58a6fd5c5c63c14d8f75a2291605ed4f48d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-stripe-elements@1.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stripe-v3@3.1.27", + "group": "@types", + "name": "stripe-v3", + "version": "3.1.27", + "description": "TypeScript definitions for stripe-v3", + "hashes": [ + { + "alg": "SHA-512", + "content": "96c3973517d8cb3cf8e475b81575ca5acc7fe9dd81a700d261c9b02d9392f355daac7150153aa2a95ab56ec2cc79b2a0133efea90d8b2c03e19a7f12b506e2f3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stripe-v3@3.1.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stripe-v3" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-svg@3.0.0", + "group": "@types", + "name": "react-svg", + "version": "3.0.0", + "description": "TypeScript definitions for react-svg", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4a3b8e7d7a746535f31604040442b68925bed87b2219f94e3e476395626b65dd626537b10a1ca1e977d952c422b341aec1c502e05305b1c136b7371ec6b7010" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-svg@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-svg-inline@2.1.3", + "group": "@types", + "name": "react-svg-inline", + "version": "2.1.3", + "description": "TypeScript definitions for react-svg-inline", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1c0fb8d968b98bae3c271f37ca7581b7a268044c7321dd6298aa43692cff297816af88121c761bd659016fff48d039e9c1e14f2770a0f997c70bea06f864ac5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-svg-inline@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-svg-inline" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-svg-pan-zoom@2.5.7", + "group": "@types", + "name": "react-svg-pan-zoom", + "version": "2.5.7", + "description": "TypeScript definitions for react-svg-pan-zoom", + "hashes": [ + { + "alg": "SHA-512", + "content": "64ba57a90aec32d3da745441e9a58959243fea31cba5230211f3ee432429c6702fc9ad8e798b679d46a2030ed403a4e0cc511615878e58f9b9ee7f97a1d6cc59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-svg-pan-zoom@2.5.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-swf@0.0.32", + "group": "@types", + "name": "react-swf", + "version": "0.0.32", + "description": "TypeScript definitions for react-swf", + "hashes": [ + { + "alg": "SHA-512", + "content": "912ec4b9d03c9814884d46315460654de1fd79698df6152a1c4c81ee32ad00ac32797de2c091e2177630a4dc8afebcd64e032abbbcfddacbcdf4061daed22fe0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-swf@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-swipe@5.0.3", + "group": "@types", + "name": "react-swipe", + "version": "5.0.3", + "description": "TypeScript definitions for react-swipe", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3359b900bdfe9c7f20d20c2600335fa2fd5349a54cbbeebda50c1087302826b002f4715b87eb4e7dfd9a67fb3c992eab5013c0d42dbbf13f9394d62a0afdaeb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-swipe@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/swipe@2.0.28", + "group": "@types", + "name": "swipe", + "version": "2.0.28", + "description": "TypeScript definitions for Swipe", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce42daa9d453b9683b5a94f00ef085693b8c5e1aded5af408c0db11eb4a7924e4dd3da1b900d72028e6a297a0999692af0b8cc8bde04dde8f2fcbe2a3124f0e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/swipe@2.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/swipe" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-swipeable@4.3.0", + "group": "@types", + "name": "react-swipeable", + "version": "4.3.0", + "description": "TypeScript definitions for react-swipeable", + "hashes": [ + { + "alg": "SHA-512", + "content": "641a5ace91deae8849aeea7b06f1cff7b78b3ca33de50638d32a8c39360570a9f27b165d642056e631dc20149c7300cc06f95364c8b067860a92ae038cf1dde0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-swipeable@4.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-swipeable-views@0.12.2", + "group": "@types", + "name": "react-swipeable-views", + "version": "0.12.2", + "description": "TypeScript definitions for react-swipeable-views", + "hashes": [ + { + "alg": "SHA-512", + "content": "73e38576610c52d7467800d1ece9a72144cda1e8c94c18ceeb8bc13c591d2292a20014be0d7b541c2cccdf853ff96cbb14678ba0f1e92869e6dad70c32cb7f2c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-swipeable-views@0.12.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-syntax-highlighter@0.0.5", + "group": "@types", + "name": "react-syntax-highlighter", + "version": "0.0.5", + "description": "TypeScript definitions for react-syntax-highlighter", + "hashes": [ + { + "alg": "SHA-512", + "content": "41124be4b924faf8a3635a62817b55e3827fbe0da5f2187f490e430ff2f9c212ae54b2dba9daed21af1987b5ffbaeaeb2234c7ea32e57077a73d2663263be120" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-syntax-highlighter@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-table@6.8.9", + "group": "@types", + "name": "react-table", + "version": "6.8.9", + "description": "TypeScript definitions for react-table", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d54178f2fc46036e0ada49c8230ce340dbdd4c70aa86af0d11d0d78aeb7f5fc766d2e13d7d4e75cc8e0dc58ce3e5908dea61342d1533c00e5458cac69020ca4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-table@6.8.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-table" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tabs@1.0.5", + "group": "@types", + "name": "react-tabs", + "version": "1.0.5", + "description": "TypeScript definitions for react-tabs", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b881f6d489f6b6438c937c8a58160c32a82bf7c345eb4bf61a75b1312de399b85bbed8508c7f28ab15fd72e2dee0c3f4d50cdc75f51290629ee4129e77d0242" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tabs@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tag-input@5.0.3", + "group": "@types", + "name": "react-tag-input", + "version": "5.0.3", + "description": "TypeScript definitions for React-Tags (react-tag-input)", + "hashes": [ + { + "alg": "SHA-512", + "content": "c85d25083cdca9d8089bebcda6cc5111c10a2c878ce343966e1c571c35356522d227d2e99c9a00c8fdff994534d6d2a974be94df120995c4052851cc6c27f479" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tag-input@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tagcloud@1.1.7", + "group": "@types", + "name": "react-tagcloud", + "version": "1.1.7", + "description": "TypeScript definitions for react-tagcloud", + "hashes": [ + { + "alg": "SHA-512", + "content": "75b7c948aa229ed0df8c99b88e26ee4830c23e31c694298159abca31199d0f64bfc454343c8c0c49c6246eab39f22a2dcba38c9b41ab85ad31cd12d4326d8e85" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tagcloud@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-tagcloud" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tagsinput@3.19.9", + "group": "@types", + "name": "react-tagsinput", + "version": "3.19.9", + "description": "TypeScript definitions for react-tagsinput", + "hashes": [ + { + "alg": "SHA-512", + "content": "362b128fb192e2aea3694f6a5ad5e71e80a6716e2f2aa342f66f424341e5a03e586d65da1f127c1e410b4ac41bd8428833da57ea16c910d921678029889e3280" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tagsinput@3.19.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-tagsinput" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tap-event-plugin@0.0.30", + "author": "Michael Ledin", + "group": "@types", + "name": "react-tap-event-plugin", + "version": "0.0.30", + "description": "TypeScript definitions for react-tap-event-plugin", + "hashes": [ + { + "alg": "SHA-512", + "content": "929389c98d7ebeb02bbee14b029cecbf3d2792dfd90426bca808b119d2f7a4ad3442b1139b4f175cd4310fcd069881609537853d9a84c7cdab5bf4b8a06a228c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/react-tap-event-plugin@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-test-renderer@16.9.5", + "group": "@types", + "name": "react-test-renderer", + "version": "16.9.5", + "description": "TypeScript definitions for react-test-renderer", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b870dec2dae49218e61e969d977ddb496f94ec08ff90899fb4066e14dd97d4b3037ca0df4efe5f3a5cefcebc14850a6598ef0ef97f3b10bd9e74786905377e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-test-renderer@16.9.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tether@0.5.5", + "group": "@types", + "name": "react-tether", + "version": "0.5.5", + "description": "TypeScript definitions for react-tether", + "hashes": [ + { + "alg": "SHA-512", + "content": "64cff077bee4fe49fe9cf4323f78fdb672df2b531e8481bf2970213db65e1cfe09d992d0ff15e89f37716dec8e75080b490b41d216ee45971239438ffd58d09f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tether@0.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/tether@1.4.6", + "group": "@types", + "name": "tether", + "version": "1.4.6", + "description": "TypeScript definitions for Tether", + "hashes": [ + { + "alg": "SHA-512", + "content": "f671f2803a6237554f0244d767228e99d54ad7610fa7828b81cee48fd8e2d17eaab07cf3415f1eeca60487569fac5e934d5b3977da11257c249a379259cfb90b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/tether@1.4.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tether" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-text-mask@5.4.11", + "group": "@types", + "name": "react-text-mask", + "version": "5.4.11", + "description": "TypeScript definitions for react-text-mask", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c8277fdd4b88ddecd2b794482c3b0720a69f99955acd2448940d16b265113f3cd31b57f9cb5a638a19d2f40544b6f619f1d020e021380fb9d2b1d0181b1797c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-text-mask@5.4.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-text-mask" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-textarea-autosize@4.3.6", + "group": "@types", + "name": "react-textarea-autosize", + "version": "4.3.6", + "description": "TypeScript definitions for react-textarea-autosize", + "hashes": [ + { + "alg": "SHA-512", + "content": "7137fcb427a6d1cf00ec211161b4ee17e6d115aa98bbb37b1cb09ae99854843c7c5e752c4e91b1e6e74c5a58edf3b26972250ab9490898a3c4b32ea470a86b71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-textarea-autosize@4.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-textarea-autosize" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-timeout@1.1.3", + "group": "@types", + "name": "react-timeout", + "version": "1.1.3", + "description": "TypeScript definitions for react-timeout", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa3ce8841bee9980a13651a42b6f09f2cb1dfec410f10e619704ee9be74af45bc1b8fae9a37ac83e985e63a7bcdc9ae38a9b1739e91dba0374b6798fc4d1f139" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-timeout@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-timeout" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-toastify@4.1.0", + "group": "@types", + "name": "react-toastify", + "version": "4.1.0", + "description": "Stub TypeScript definitions entry for react-toastify, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "bbb21effb2c706c3d5cff889c62fd69510d2ec687d72c0890024c35f1fa948bb990a6f78c69930ce13378d5d4be59c4ffe29f41a9dad15b27dd55ad21abd60c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-toastify@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fkhadra/react-toastify/tree/readme#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fkhadra/react-toastify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fkhadra/react-toastify.git#readme" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-toastify@9.0.7", + "author": "Fadi Khadra", + "name": "react-toastify", + "version": "9.0.7", + "description": "React notification made easy", + "hashes": [ + { + "alg": "SHA-512", + "content": "506e4fff617f7d875b2bebf75d158733ac5f32459e2ccfa4dacc0abf053ca0ef435f1df51a47a81fb67ab2505391abd9d158e843e9ff603eb1381a84c0dec746" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2022 Fadi Khadra\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/react-toastify@9.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fkhadra/react-toastify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fkhadra/react-toastify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/fkhadra/react-toastify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clsx@1.2.1", + "author": "Luke Edwards", + "name": "clsx", + "version": "1.2.1", + "description": "A tiny (228B) utility for constructing className strings conditionally.", + "hashes": [ + { + "alg": "SHA-512", + "content": "11c47aaf96bc6e3ea9bb7c9cb1afc4fdc2951ae4e064965db325181ce92c1bf50722229f8f1cd1c58269c9507061a41e3af8216a5f5f71ce0f89d960cee80042" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Luke Edwards (lukeed.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clsx@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lukeed/clsx#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lukeed/clsx/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lukeed/clsx.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-toastr@3.0.5", + "group": "@types", + "name": "react-toastr", + "version": "3.0.5", + "description": "TypeScript definitions for react-toastr", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e334ebaf09bf7c7062635597303a67ff44b5da542686875dc09997dda3fe96a3c324895756b5ea4d94c5c2c961c588821ad0f685decc12304bb3c1a2c40ca92" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-toastr@3.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-toastr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-toggle@4.0.3", + "group": "@types", + "name": "react-toggle", + "version": "4.0.3", + "description": "TypeScript definitions for react-toggle", + "hashes": [ + { + "alg": "SHA-512", + "content": "e7b41d31679e41d463336fe9fae76061eaf151b4a499e5085b5f24c14b6d71c8ba187920c68a82b0365f46db02b001dcbef33954141db4350480b5a8d9ef3b98" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-toggle@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-toggle" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tooltip@3.11.0", + "group": "@types", + "name": "react-tooltip", + "version": "3.11.0", + "description": "TypeScript definitions for react-tooltip", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e45cc8246796802a4144f56bedf0e94e88fb45f6e7e004e2fdc569514b32c16a82f5daa48e062c8c714e3ff13c840f57ee5a49b955355aad273038f2d202b63" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tooltip@3.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-touch@1.8.4", + "group": "@types", + "name": "react-touch", + "version": "1.8.4", + "description": "TypeScript definitions for react-touch", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f25cbac13e3a5b1fd36ee96968f0927c9b2c5fad83076f6e6f5c63ba8f7aca5106d6a8b9bd852ce9e6157fe9f039c2452cd47a3b9ec226fcbe1ff32cf01d48f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-touch@1.8.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-touch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-tracking@5.0.4", + "group": "@types", + "name": "react-tracking", + "version": "5.0.4", + "description": "TypeScript definitions for react-tracking", + "hashes": [ + { + "alg": "SHA-512", + "content": "da563093a798b1b4aa9170ae68a0f44d5eae51838c144f863c4e895936830c70a1a0409d263761f5b839f54a0500138dfa5554b352996227b9b7e025d5e15f29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-tracking@5.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-treeview@0.4.3", + "group": "@types", + "name": "react-treeview", + "version": "0.4.3", + "description": "TypeScript definitions for react-treeview", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a69c78a57a4a0ba21115bfce83c7205803a171a089304361f57fb917e65675d8e4b1e03a1a9feb44c8ac7d987b436ab0662f63af279f27cf792de8641f49240" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-treeview@0.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-treeview" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-truncate@2.3.4", + "group": "@types", + "name": "react-truncate", + "version": "2.3.4", + "description": "TypeScript definitions for react-truncate", + "hashes": [ + { + "alg": "SHA-512", + "content": "fae803961a3ae9d467ed2c3f94f904ff094e8b4294211c18d8a3a25227a15a315fec49a23038cca47aab06188b25f1f667d102faa4411c2f68ee266812699643" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-truncate@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-truncate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-twitter-auth@0.0.0", + "group": "@types", + "name": "react-twitter-auth", + "version": "0.0.0", + "description": "TypeScript definitions for react-twitter-auth", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea4f2bb865058a959d193445d363a133c961f769677769966c579746b460cbe3b3bbab2b2643abb1375234795bb90ba976c946be3835a880272db833c0bfa6d6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-twitter-auth@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-user-tour@0.0.8", + "group": "@types", + "name": "react-user-tour", + "version": "0.0.8", + "description": "TypeScript definitions for react-user-tour", + "hashes": [ + { + "alg": "SHA-512", + "content": "196724c1f2221c504a41a1060fddc92f09cec1c0a9f527ae638b86de36d052ed061171f8142012b3fc8af4f684a6e8250e148b29b01ff7f4d2730deb558c7518" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-user-tour@0.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-virtual-keyboard@1.0.4", + "group": "@types", + "name": "react-virtual-keyboard", + "version": "1.0.4", + "description": "TypeScript definitions for react-virtual-keyboard", + "hashes": [ + { + "alg": "SHA-512", + "content": "05c783dfde4dc6aabd0bf3bc28f932f2dab125b9cce8124aac07bc850f942b31cc32869dd262d25027c7e6710b4392e584664f6a6cc168a6a14b6e4ee54d0598" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-virtual-keyboard@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-virtual-keyboard" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/virtual-keyboard@1.26.2", + "group": "@types", + "name": "virtual-keyboard", + "version": "1.26.2", + "description": "TypeScript definitions for virtual-keyboard", + "hashes": [ + { + "alg": "SHA-512", + "content": "da7c8191ad30c437c764be6df572ae5ffb7540671066b49d7c13a12860ef4db9358cd477017ea44db65016eed85de487130db1cbfb9daddf5e6deda9ebc617e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/virtual-keyboard@1.26.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/virtual-keyboard" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-virtualized-select@3.0.12", + "group": "@types", + "name": "react-virtualized-select", + "version": "3.0.12", + "description": "TypeScript definitions for react-virtualized-select", + "hashes": [ + { + "alg": "SHA-512", + "content": "c438ea97ee86c01fbd3127575a2fd834891545aee0898f24dd758eff8ce7c101cb0674978a2c9347ac0896caf8be9aeef9b4ec5f332ceb47a892478d55fe8f3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-virtualized-select@3.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-virtualized-select" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-webcam@0.3.1", + "group": "@types", + "name": "react-webcam", + "version": "0.3.1", + "description": "TypeScript definitions for react-webcam", + "hashes": [ + { + "alg": "SHA-512", + "content": "84055941b786f413e7fe31deab49fb78e1266b7c2851821b4e3feeea74eeb00a8780b5fc1c6d61ab1448054bf3b6f845a3ba83dff393002a9a8ee3e6f18b3f11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-webcam@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-weui@1.0.0", + "group": "@types", + "name": "react-weui", + "version": "1.0.0", + "description": "TypeScript definitions for react-weui", + "hashes": [ + { + "alg": "SHA-512", + "content": "945102b8ea6a86f5bbf9bc158d9487ee9172121ae32fa7af5a98759a32072638087c1e631364df5bf0efb2ce8eda069ff534ced9cf9a29a5fc97e1f48433cd48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-weui@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-widgets@4.4.7", + "group": "@types", + "name": "react-widgets", + "version": "4.4.7", + "description": "TypeScript definitions for react-widgets", + "hashes": [ + { + "alg": "SHA-512", + "content": "716e3bebf6f730e3a667b90f4f1e9285d156227e78cdb808a6c4b3c0c255966af7eae0ee29e2cc8e8c687a1b583a91498291d7f6fbf6e017e1f755e2f5941808" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-widgets@4.4.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-widgets" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-widgets-moment@4.0.1", + "group": "@types", + "name": "react-widgets-moment", + "version": "4.0.1", + "description": "TypeScript definitions for react-widgets-moment", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf755671ce87ef5886a14700ff1c6223e1452f247ed13585ac06f99258b008e2f6bdb3d1b2debc25b29c5a23582b5f5f1ee8f73e95db261b70bcb20156195d9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-widgets-moment@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-youtube@7.10.0", + "group": "@types", + "name": "react-youtube", + "version": "7.10.0", + "description": "Stub TypeScript definitions entry for react-youtube, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "46d132627f64cdee76e72d43229341caf2828f69b0a80b8f200671f8754932c2bb7172166ce2de99836c0474889cc863786462283133e292202d7d660066c3a9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-youtube@7.10.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-youtube@9.0.3", + "author": "Tjalling Tolle", + "name": "react-youtube", + "version": "9.0.3", + "description": "React.js powered YouTube player component", + "hashes": [ + { + "alg": "SHA-512", + "content": "35f2d29454531b3e6c6a76eddb761fc3ed933a159914c33ca811126f8aace55c4c7329150b506c4213dca6d74028214ae5839ad257bfcbcfa5a7fa1bad26548d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/react-youtube@9.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tjallingt/react-youtube" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tjallingt/react-youtube/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/tjallingt/react-youtube.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/youtube-player@5.5.2", + "author": "Gajus Kuizinas", + "name": "youtube-player", + "version": "5.5.2", + "description": "YouTube IFrame Player API abstraction.", + "hashes": [ + { + "alg": "SHA-512", + "content": "646b6c7a64a95e70e4cb60146168318daa29801fac8451e05d5a6224578d0799d612e8295b52966036872ae2ea8766faeebdb81ad3fa1e8496e6cc2f7f47c521" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2016, Gajus Kuizinas (http://gajus.com/)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/youtube-player@5.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/youtube-player#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/youtube-player/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/youtube-player.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/load-script@1.0.0", + "name": "load-script", + "version": "1.0.0", + "description": "Dynamic script loading for browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "90f123305b59bf02fd4da668d2e6769a5f987bd1d43263f06d8449df6e2a17db6a31e8f0ca42798204f2bf39ab6c179aa4201b93df0149b4dea2f1c410fd6e08" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/load-script@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/eldargab/load-script#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/eldargab/load-script/issues" + }, + { + "type": "vcs", + "url": "git://github.com/eldargab/load-script.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sister@3.0.2", + "author": "Gajus Kuizinas", + "name": "sister", + "version": "3.0.2", + "description": "Event manager.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a75f6bb53b3e364b0144a5bdaa7d14859f3f4d423d04fc3d966b479f2f98dd38a75a539af635a1f7107402d3d27663b2e3d3492494927b4132e02ee1d13adc60" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2018, Gajus Kuizinas (http://gajus.com/)\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the Gajus Kuizinas (http://gajus.com/) nor the\n names of its contributors may be used to endorse or promote products\n derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL ANUARY BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/sister@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gajus/sister#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gajus/sister/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gajus/sister.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-youtube-embed@1.0.2", + "group": "@types", + "name": "react-youtube-embed", + "version": "1.0.2", + "description": "TypeScript definitions for react-youtube-embed", + "hashes": [ + { + "alg": "SHA-512", + "content": "492575d369cbbc5ff74a9db954eefc53906ad7b2005ca54c5246497c23f860f723752067e8e2d98f9e5c0214f4f33b56f32a911d5da1e21d1892ee42eff9c616" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-youtube-embed@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-youtube-embed" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reactable@0.14.8", + "group": "@types", + "name": "reactable", + "version": "0.14.8", + "description": "TypeScript definitions for reactable", + "hashes": [ + { + "alg": "SHA-512", + "content": "19121afc0f306785b384be6efc19d55a4056f5f20672550e90a4ef9c73796d4b9019e93eda7bc20c2a1220d23f6ee451c92369eb64f263da71ef4a7398d36460" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reactable@0.14.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/reactable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reactcss@1.2.6", + "group": "@types", + "name": "reactcss", + "version": "1.2.6", + "description": "TypeScript definitions for ReactCSS", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9a233a42b97356a26191d57abc482153b45e2ff15dbb63a7fe6fdf9bcc78afd3ceccca523f9d30aaa9d0a135e592eedb258113a6601ef27a2aee597ed69ea36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reactcss@1.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/reactcss" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reactstrap@6.4.4", + "group": "@types", + "name": "reactstrap", + "version": "6.4.4", + "description": "TypeScript definitions for reactstrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "5254791c88ad8dd6dc7bff88351c2faaae946448e90748429db4c16a565b4c22c62aa5900d9702c6ccb9f91fc82456fe1efeb3986b33e93943c278a42bd0fb21" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reactstrap@6.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/popper.js@1.16.1", + "author": "Federico Zivolo", + "name": "popper.js", + "version": "1.16.1", + "description": "A kickass library to manage your poppers", + "hashes": [ + { + "alg": "SHA-512", + "content": "59be29d49e33c854db33ebba5ae3b85ecb58c782b2f427b07b80d6ade97b074c3a555202bcfc1d3a9a2d8f371fe9e0fc4ec72456720c34e350c8f21414e51b09" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/popper.js@1.16.1", + "externalReferences": [ + { + "type": "website", + "url": "https://popper.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FezVrasta/popper.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/FezVrasta/popper.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/read@0.0.28", + "author": "Tim JK", + "group": "@types", + "name": "read", + "version": "0.0.28", + "description": "TypeScript definitions for read", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb6e60f956152440e01b15797365769cf5c43cd5acb679bd756d812573797e64dc08bec596addb0a2914141914dcf92137457587104cde992cb02de0e7e64f37" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/read@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/read-chunk@2.1.0", + "group": "@types", + "name": "read-chunk", + "version": "2.1.0", + "description": "TypeScript definitions for read-chunk", + "hashes": [ + { + "alg": "SHA-512", + "content": "06d302e6dd7fb7b7a0c80a9182dbe94d4b9825468819bd495f7bb0e97efd81e2f80ed5f133b03c5e411fe0acf955f879d40fd921e92231a7d8f1397c3b3f5bcb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/read-chunk@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/read-package-tree@5.2.0", + "group": "@types", + "name": "read-package-tree", + "version": "5.2.0", + "description": "TypeScript definitions for read-package-tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc4754f8a7fd3c43dd0558c53601194403ac8d65f69042f969099e0e74c2d0cf3a448746e9a77eb2cc5d6d9ca065473b3b83879169d347844b9b157407a23282" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/read-package-tree@5.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/read-pkg@3.0.0", + "group": "@types", + "name": "read-pkg", + "version": "3.0.0", + "description": "TypeScript definitions for read-pkg", + "hashes": [ + { + "alg": "SHA-512", + "content": "a14e5a2b772621c278fabf8c697309e7744776b8bc7365dbc08d938e7d61a710a1e3c5c8a877494faa29c15775645d8572e71740cbfab21fd3b4e9b4d0331921" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/read-pkg@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/normalize-package-data@2.4.1", + "group": "@types", + "name": "normalize-package-data", + "version": "2.4.1", + "description": "TypeScript definitions for normalize-package-data", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a3edc23bcfef7c336f364ea9a9d8ae4422ca28b941336c1261410cc31378d221193aafd82ccf4a14a24a88511e2ed51ddd307a34a431cceec34e1f286e972a7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/normalize-package-data@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/normalize-package-data" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/read-pkg-up@3.0.1", + "group": "@types", + "name": "read-pkg-up", + "version": "3.0.1", + "description": "TypeScript definitions for read-pkg-up", + "hashes": [ + { + "alg": "SHA-512", + "content": "acc0fe78337ddc7fdfe9419ee87263274f0bf95ae8f8b3746df09d631b126f7369d77b3be4bbfe13f5c1830d78923cfcdcf7e2f367dbe73dff8edc354b70ef80" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/read-pkg-up@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/readdir-enhanced@2.2.2", + "group": "@types", + "name": "readdir-enhanced", + "version": "2.2.2", + "description": "TypeScript definitions for readdir-enhanced", + "hashes": [ + { + "alg": "SHA-512", + "content": "b96d1f479e5915c4ed57d2e87d76748b0ba1d21af981ec0950220c4db7067f47b9bbeb3ad01d4bbe15c473c0becf7e883d5bce308d4ba97d84b0e1f6f69c1e75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/readdir-enhanced@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/readdir-stream@0.1.28", + "author": "Bart van der Schoor", + "group": "@types", + "name": "readdir-stream", + "version": "0.1.28", + "description": "TypeScript definitions for readdir-stream v0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d1ef624cbd31fb78cfb3e49d7242ff4c995d78435701a401fdf3477527fca99755d406dbf132c98bffdd5f2bf66156d6e22fdb2ae8c7104d957d01c5ebbe25d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/readdir-stream@0.1.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/readline-sync@1.4.4", + "group": "@types", + "name": "readline-sync", + "version": "1.4.4", + "description": "TypeScript definitions for readline-sync", + "hashes": [ + { + "alg": "SHA-512", + "content": "7058d522889a997ed4eb390ed953ef5f24f16c50dd891a3dd3621aac9b8f571061a439d787049a544f3a8a9f920aec9605b122a0a0a44f80bcf11353c413350f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/readline-sync@1.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/readline-sync" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/readline-transform@0.9.3", + "group": "@types", + "name": "readline-transform", + "version": "0.9.3", + "description": "TypeScript definitions for readline-transform", + "hashes": [ + { + "alg": "SHA-512", + "content": "1924becc2ddd10f8f03bf1d85e1927f12b70fbd1780c35503de46848daab5857b77f95fc8eb359d494b5333056eb1fa3cacafb5894bee2302e201e0c89e2b525" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/readline-transform@0.9.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/readline-transform" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reapop@1.1.5", + "group": "@types", + "name": "reapop", + "version": "1.1.5", + "description": "TypeScript definitions for reapop", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac740e61953c4160452d73ddd9eecda8c64bb9376fe4571ef56bc95db10825ee3e9fd52f8be611f70dec367bda081a54ba1f268e9eada3a61503b4a89f836dc0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reapop@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rebass@0.2.23", + "group": "@types", + "name": "rebass", + "version": "0.2.23", + "description": "TypeScript definitions for Rebass", + "hashes": [ + { + "alg": "SHA-512", + "content": "1291c5a97028414900e96eec3a84f27272ebba807e8aff7763b1330b43977416f0c6906b5d2db1465859e57fbddffae13a733f197e36ca2a3bcd42e9cb12d6af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rebass@0.2.23", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/recaptcha2@1.3.1", + "group": "@types", + "name": "recaptcha2", + "version": "1.3.1", + "description": "TypeScript definitions for recaptcha2", + "hashes": [ + { + "alg": "SHA-512", + "content": "06851762c6c159d0b6071c6ec3ed22877e699fc4c6c9cb0540f65de44711df493bc1c1d39cbc1dc759652686359b759ff68c4b82bd29c5c308cd7ecc5736d1b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/recaptcha2@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/recaptcha2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/recase@1.0.2", + "group": "@types", + "name": "recase", + "version": "1.0.2", + "description": "TypeScript definitions for Recase", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c2628c0788cea6f80d4a52d10f3e876e5687d93b3f0b6d6b48584a654f7416fd4406f8de4cddc4318e8e059645e65be09f3d086aeaaa90c5ba511ffdf2f3b59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/recase@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/recase" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/recharts@1.8.23", + "group": "@types", + "name": "recharts", + "version": "1.8.23", + "description": "TypeScript definitions for Recharts", + "hashes": [ + { + "alg": "SHA-512", + "content": "3bf9883e6f5fe9dc1159f7a7388dc6430b06b5adf1d585a3c2a5ce099a82d0c01343a0be03e25cf15c459d252be0ddee62feb8ce4abdd11c1715a30d6e124abe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/recharts@1.8.23", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/recharts" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/recluster@0.4.3", + "group": "@types", + "name": "recluster", + "version": "0.4.3", + "description": "TypeScript definitions for recluster", + "hashes": [ + { + "alg": "SHA-512", + "content": "4259a885a515153061e11fcc05e3cb02d6fba69d55667bc20b1e87ddf420d5df05abc5549118dea5db645adfb99e80edbcb94a6631963603109c9d45c4f81016" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/recluster@0.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/recluster" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/recompose@0.26.5", + "group": "@types", + "name": "recompose", + "version": "0.26.5", + "description": "TypeScript definitions for Recompose", + "hashes": [ + { + "alg": "SHA-512", + "content": "225e6cb73fd9de9548325e3ca7282097a9e78512d0f0df1837c862d009e6d0ce548d5876b8c498d1a876bf3c1964ac6771ae0dcf2240ae5a128ec27d7cbdaf5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/recompose@0.26.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reconnectingwebsocket@1.0.7", + "group": "@types", + "name": "reconnectingwebsocket", + "version": "1.0.7", + "description": "TypeScript definitions for reconnectingwebsocket", + "hashes": [ + { + "alg": "SHA-512", + "content": "d7ba67219b068bd3fc60da7b734b9e6365846ae4b10e2bee15e1ae32e3cf24c037aa4df80a71600471aa93182e9f71d489f12ec0dafc71ffbdad4eef49df22e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reconnectingwebsocket@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/reconnectingwebsocket" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/recursive-readdir@2.2.1", + "group": "@types", + "name": "recursive-readdir", + "version": "2.2.1", + "description": "TypeScript definitions for recursive-readdir", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ddf8fb5ce3f176b9e227ab2e722b6148e45c6dc306d7dbe559a5c83ef6862c14955e9fca902866a90abf818b9c10b475357135d3f2cfb4ee5a3f9ca3e0bbc1a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/recursive-readdir@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/recursive-readdir" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redis-errors@1.2.1", + "group": "@types", + "name": "redis-errors", + "version": "1.2.1", + "description": "TypeScript definitions for redis-errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "f69e9240f783008478cf765dacfb111ffb1244c7880367dd44aa99dd8d6d85038b7831f868b63e27865edf6ce38380eaefae796342e89c2a11ac7e4eeefb6be3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redis-errors@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redis-errors" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redis-mock@0.17.1", + "group": "@types", + "name": "redis-mock", + "version": "0.17.1", + "description": "TypeScript definitions for redis-mock", + "hashes": [ + { + "alg": "SHA-512", + "content": "99db7629de7a7c796873c4a74275d906bc5dfc4ea36298fccd7003c88f28644eeab8af8fe22c0ef4fbc61ae65d548f86f0391b404bf450cae34250552720d2d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redis-mock@0.17.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redis-mock" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redis-rate-limiter@1.2.3", + "group": "@types", + "name": "redis-rate-limiter", + "version": "1.2.3", + "description": "TypeScript definitions for redis-rate-limiter", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bb8f068092357530ddb04b58770fd5b734c0ae75c08245c64fa4c7a05ccbea182b138fc021fbd50969f8ee11ab2ad0ff064a662b1df7de64517222ab2a107f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redis-rate-limiter@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redis-rate-limiter" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redis-scripto@0.1.5", + "group": "@types", + "name": "redis-scripto", + "version": "0.1.5", + "description": "TypeScript definitions for redis-scripto", + "hashes": [ + { + "alg": "SHA-512", + "content": "fed23204296f8a258edc72cd28559fb2f985da61e215290356fa2bb96d045eaf52a7e201971cabe836e5433d15553a9d54720a5f43b2311b7bb335f2de4124da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redis-scripto@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redis-scripto" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redlock@3.0.7", + "group": "@types", + "name": "redlock", + "version": "3.0.7", + "description": "TypeScript definitions for redlock", + "hashes": [ + { + "alg": "SHA-512", + "content": "2faf8d819197d91c69e2a8e7067f85b4b24a1bfada093cdec8ecce7dd8e8bfae301b50e4965486aad8b8a2bb6c52232ebf1f7e6c4d0fc79599a25529d7884a62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redlock@3.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redlock" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redom@3.23.1", + "group": "@types", + "name": "redom", + "version": "3.23.1", + "description": "Stub TypeScript definitions entry for redom, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3b28ea7d4c3c53b7f98428a5301a275bf0f7cc485a2a9a2618f32e0ed21e3a1aed8a6173ade01ec66f4b6c38e17a8600d44e8332ccf59d66917db78e05649ab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redom@3.23.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/redom/redom#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/redom/redom/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/redom/redom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redom@3.29.0", + "author": "Juha Lindstedt", + "name": "redom", + "version": "3.29.0", + "description": "Tiny turboboosted JavaScript library for creating user interfaces. 100 % test coverage!", + "hashes": [ + { + "alg": "SHA-512", + "content": "f6e26f7617e58fb8ffcc8c507886d143c7a46eb471b6b675bcab99d25a72dbf47924af2f1e3c86d0f5fc91ff734b299e51ae5efd9eafeeee2091629a3c6ff3ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Juha Lindstedt\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redom@3.29.0", + "externalReferences": [ + { + "type": "website", + "url": "https://redom.js.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/redom/redom/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/redom/redom.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reduce-reducers@0.1.3", + "group": "@types", + "name": "reduce-reducers", + "version": "0.1.3", + "description": "TypeScript definitions for reduce-reducers", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed4e4427c3c9b3dc7846456b273ab8732aba7a32beffbad4404b380ae37198fe29918591eda3e17abf4345b2d0e36f52cf0d1353a4f0abc8f7164e8db284c96e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reduce-reducers@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-action@1.2.5", + "group": "@types", + "name": "redux-action", + "version": "1.2.5", + "description": "TypeScript definitions for redux-action", + "hashes": [ + { + "alg": "SHA-512", + "content": "f065593cecfaf1f7c1f7614c9bb93cf5445294265137dc3b7607775ec6717d9d6ad1393de31134ad074c135ced73c238f16faf11f2dcbd69a55f8d557496bead" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-action@1.2.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-action-utils@2.0.32", + "group": "@types", + "name": "redux-action-utils", + "version": "2.0.32", + "description": "TypeScript definitions for redux-action-utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "13184475fe317d6fae4260eee07f2153d32778c2dbad8877a599d0e8f73b38b6140bc99b2b21fb9b64eaea85e25047bfeb465379e12251c65d2aa833f203e7be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-action-utils@2.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-actions@2.6.2", + "group": "@types", + "name": "redux-actions", + "version": "2.6.2", + "description": "TypeScript definitions for redux-actions", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ef708372f2b58500d7297371221105fd62fde8c0cddddca22baabdabc9420e858218cd703f6e10d97864924ae6a2eb6895476a8c654833f6d43992bd0a97e4e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-actions@2.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-actions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-auth-wrapper@2.0.13", + "group": "@types", + "name": "redux-auth-wrapper", + "version": "2.0.13", + "description": "TypeScript definitions for redux-auth-wrapper", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd1b77e7f7cbdbb2080c0d203120fe713be427987cbd02245f8d7b7e09af11672312d2183f7495eb5db51c5b2dbe0f1dc7333abda722ab3aeb590ac1cf16e05b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-auth-wrapper@2.0.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-auth-wrapper" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-batched-subscribe@0.1.4", + "group": "@types", + "name": "redux-batched-subscribe", + "version": "0.1.4", + "description": "TypeScript definitions for redux-batched-subscribe", + "hashes": [ + { + "alg": "SHA-512", + "content": "a66e99ba06753d95234c21ad8a20168469262d56ac9ad4c7db02bd9642885a66e9ae0f24a47cb471c360c2795f18618d0e68e0f5efa2b501e6ecbc9fb2e85e71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-batched-subscribe@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-debounced@0.2.19", + "group": "@types", + "name": "redux-debounced", + "version": "0.2.19", + "description": "TypeScript definitions for redux-debounced", + "hashes": [ + { + "alg": "SHA-512", + "content": "7973aee71e48749dbfe7999f71d855903f9c4edf42dfe6ef9e047e76668ce4980640a6603181fc45142af9c6bdf1e06db9112a127350e5cd4114501c6e9e2b7e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-debounced@0.2.19", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-devtools@3.7.0", + "group": "@types", + "name": "redux-devtools", + "version": "3.7.0", + "description": "Stub TypeScript definitions entry for redux-devtools, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ea19e2e89e746493dd32a9ac84e5919d19a8b01d515de56db8d7f7f1d966026a05bba963b675fa95234b5aee558bb4c07e21dc2f76bdc1e8c3c52ddf14682d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-devtools@3.7.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-devtools@3.7.0", + "author": "Dan Abramov", + "name": "redux-devtools", + "version": "3.7.0", + "description": "Redux DevTools with hot reloading and time travel", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e7c77517ee69c98a3d97b3e46270f2b51b22a46eea1dac22ad7d8989b0deb4df00b499cf7d5bfff1080b241953664612178387b9ee6da4d42c97d245730ac06" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-devtools@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux-devtools/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux-devtools.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-devtools-instrument@1.10.0", + "author": "Dan Abramov", + "name": "redux-devtools-instrument", + "version": "1.10.0", + "description": "Redux DevTools instrumentation", + "hashes": [ + { + "alg": "SHA-512", + "content": "5fc251042cd7d800d2329fa2895ed843cba84cdc849b454f14f7784fce78728cfa96f46206b152a80afd6004b69fc2b3c71f02250a2d474405f70b0c33edc3bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-devtools-instrument@1.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-instrument" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux-devtools/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux-devtools.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-devtools-dock-monitor@1.2.3", + "group": "@types", + "name": "redux-devtools-dock-monitor", + "version": "1.2.3", + "description": "Stub TypeScript definitions entry for redux-devtools-dock-monitor, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "a446d843cec9522de8053b5e712bf57164d5c788f5959f9dd55245aff16ba025f347b761ecfb7b90347268e4b015214a22b75191e8e5a625cc1eb2506ecd3747" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-devtools-dock-monitor@1.2.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-devtools-dock-monitor@1.2.0", + "author": "Dan Abramov", + "name": "redux-devtools-dock-monitor", + "version": "1.2.0", + "description": "A resizable and movable dock for Redux DevTools monitors", + "hashes": [ + { + "alg": "SHA-512", + "content": "f10b38ee38ece62b5931d8675d597db1fa5bd453edc5066ab35d6b78a52427cdf1c55b04f6994be855e3fa43e3452b69a73594b032cc38b002571df0fd38e245" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Dan Abramov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-devtools-dock-monitor@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-dock-monitor" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux-devtools/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux-devtools.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-key@0.2.1", + "author": "Thorsten Lorenz", + "name": "parse-key", + "version": "0.2.1", + "description": "Parses strings into key objects of the same format as the ones emitted by nodejs readline.", + "hashes": [ + { + "alg": "SHA-512", + "content": "10db5aeeda9361cd80d792411b6cf66fa6cd8daaab4e704482fc9c401c273ba4e67ef9370e2c7d221229baa23855dbf249de220e8c5e58b523c03383ad0dd2ef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-key@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/parse-key#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/parse-key/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/parse-key.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-dock@0.3.0", + "author": "Alexander", + "name": "react-dock", + "version": "0.3.0", + "description": "Resizable dockable react component", + "hashes": [ + { + "alg": "SHA-512", + "content": "0340dfcba7a7c1bea0aeec6c31702464cea15722444d372e078bbf09454f023e191f4fd42d069c2c79887541df62d65898f09f78480e6bb2b24ee7923eb22316" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Alexander Kuznetsov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-dock@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/redux-devtools" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux-devtools/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux-devtools.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-devtools-log-monitor@1.0.35", + "group": "@types", + "name": "redux-devtools-log-monitor", + "version": "1.0.35", + "description": "TypeScript definitions for redux-devtools-log-monitor", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3b6ea4c43aba825b6f2c6ac2bd85665e50a74b88ed8147ded739fcc83b66238a3b6a2bb53569577e0e2b33681e0b35a9a0756ce73b497b0a6457d7eb9501e2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-devtools-log-monitor@1.0.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/base16@1.0.2", + "group": "@types", + "name": "base16", + "version": "1.0.2", + "description": "TypeScript definitions for base16-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a183bf538543d436afc2b2ae09241674b1bee4adb648b3de9b6390687985710bb01e855e182f891954638b6314a995002106471289ce7957c05f4f616222ec76" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/base16@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-doghouse@1.0.2", + "group": "@types", + "name": "redux-doghouse", + "version": "1.0.2", + "description": "TypeScript definitions for redux-doghouse", + "hashes": [ + { + "alg": "SHA-512", + "content": "1037adf1c21d21ff9e0638643e38df58a6db0cc3a4a13a05c4dfb3c60da9dd1c284fc18a14018ab1cb7b3b91a8556c151a242b376af19834fff1ea0a371e5ee9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-doghouse@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-first-router@1.10.4", + "group": "@types", + "name": "redux-first-router", + "version": "1.10.4", + "description": "TypeScript definitions for redux-first-router", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5911f2fc7555013ec5756c8f76640be5fe5ff36dcd0bb9e223f2068cf548342f22a5b3892ff888a8d900025dabf48fc521589a0c0120815dae30751c74561fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-first-router@1.10.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-first-router-link@1.4.5", + "group": "@types", + "name": "redux-first-router-link", + "version": "1.4.5", + "description": "TypeScript definitions for redux-first-router-link", + "hashes": [ + { + "alg": "SHA-512", + "content": "63cc97813bd4fbbcce9994485281bf4fd1029482ab1062af8b317e9b452a0b0b9b5bdb0e58a9fde5cbc01b505da2e6611898e7288858e0c888c8e214958e4fc4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-first-router-link@1.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-first-router-link" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-first-router-restore-scroll@1.2.3", + "group": "@types", + "name": "redux-first-router-restore-scroll", + "version": "1.2.3", + "description": "TypeScript definitions for redux-first-router-restore-scroll", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca69268320ae20d44cc31ceaf1bf415dbbe86c90e826535f703c87b19d5bfc45541501cb13bda79797755f864c116fcfa7f59c385e820b892ff23b286af89471" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-first-router-restore-scroll@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-first-router-restore-scroll" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-first-routing@0.3.1", + "group": "@types", + "name": "redux-first-routing", + "version": "0.3.1", + "description": "TypeScript definitions for redux-first-routing", + "hashes": [ + { + "alg": "SHA-512", + "content": "845bed475266731568b2c6a1513d7107869f538ab729fa38e629c3a45f110ad569e4256b4d89537f844c111d42654d9556ef35cf7ea84cce2512c922911dbfde" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-first-routing@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-first-routing" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-form@7.5.10", + "group": "@types", + "name": "redux-form", + "version": "7.5.10", + "description": "TypeScript definitions for redux-form", + "hashes": [ + { + "alg": "SHA-512", + "content": "86f1ce0659d433cf49c495fbbbbca16c0b71239776ec7d6a3b37f0113f8a8e93085988da695bd19be9e52298d85c9be9ad875cd827fc5dff91d7a08e635aaac1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-form@7.5.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-form" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-immutable@3.0.40", + "group": "@types", + "name": "redux-immutable", + "version": "3.0.40", + "description": "TypeScript definitions for redux-immutable", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6a4089edc93d52bc91e46fa6eec74557fe36c9b5f4fbf3dcb0b8a54877c5686ef5ef6538779f65f4a63467433b80ea4fc1a08a3275cfe727976c3c882810be4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-immutable@3.0.40", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-immutable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-immutable-state-invariant@2.1.2", + "group": "@types", + "name": "redux-immutable-state-invariant", + "version": "2.1.2", + "description": "TypeScript definitions for redux-immutable-state-invariant", + "hashes": [ + { + "alg": "SHA-512", + "content": "10c70c80d4e7731631c01a8aa94418aeb28f2f30ecc818441f578bf3295c2c9eb8b768c5bc217cfa188fdab948fdc7442b6d69c0e784e595e2c4e59805d0f796" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-immutable-state-invariant@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-immutable-state-invariant" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-infinite-scroll@1.0.5", + "group": "@types", + "name": "redux-infinite-scroll", + "version": "1.0.5", + "description": "TypeScript definitions for redux-infinite-scroll", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d2036ffd78904138ead8ad2faff6a144a783ef92a8b2b8acdef560054f57ae5d52f56e9986f1d8d6b70a789c7ba1b3de71b54a1c382af4bcc5b268947a35265" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-infinite-scroll@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-infinite-scroll" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-injectable-store@1.1.0", + "group": "@types", + "name": "redux-injectable-store", + "version": "1.1.0", + "description": "TypeScript definitions for redux-injectable-store", + "hashes": [ + { + "alg": "SHA-512", + "content": "dea6ea9edd86093d9ce3a7b886d3f4760264978e82477d7cb572ff99d192e8be34f8b343c24fd907dd3b2a1e2f417bb36a53ee096304217158041f2f4d63c54d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-injectable-store@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-little-router@14.0.2", + "group": "@types", + "name": "redux-little-router", + "version": "14.0.2", + "description": "TypeScript definitions for redux-little-router", + "hashes": [ + { + "alg": "SHA-512", + "content": "633e1d1c12035e9eb9a7f2c7ab460b97d9cf9fe746827bbf2243c5f043a806aa6f49ceb62957c8260a7787752c332dc61036200dae8c6bd9d95db506560a8c05" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-little-router@14.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-localstorage@1.0.8", + "group": "@types", + "name": "redux-localstorage", + "version": "1.0.8", + "description": "TypeScript definitions for redux-localstorage", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6dfb0dd8d8ae17c31efd7b14c564edf9e9bb810a008ce8d9f232ffc49804966f4ddaf3583f10c1213601fac3d74e9e14ecd4296799fdb291a89ad055978ec6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-localstorage@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-localstorage-debounce@0.1.5", + "group": "@types", + "name": "redux-localstorage-debounce", + "version": "0.1.5", + "description": "TypeScript definitions for redux-localstorage-debounce", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fccd49a95665817dc7a363ded2977759ad127e8d6070dcb385a69802bb4eaeb2f39f9124f9c9b9bbd7c8d15814f163bd129ab3e269c7cf142479e46ac9424b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-localstorage-debounce@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-localstorage-debounce" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-localstorage-filter@0.1.4", + "group": "@types", + "name": "redux-localstorage-filter", + "version": "0.1.4", + "description": "TypeScript definitions for redux-localstorage-filter", + "hashes": [ + { + "alg": "SHA-512", + "content": "99b39ff6006cb97aa9b5136511b99bc7f455d568b6508fddbc0a5a08b4b45fa61d8a7b56963790aa608e2f4003ac98c56205c35cc91b03332d7fe5e8534abc9a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-localstorage-filter@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-logger@3.0.9", + "group": "@types", + "name": "redux-logger", + "version": "3.0.9", + "description": "TypeScript definitions for redux-logger", + "hashes": [ + { + "alg": "SHA-512", + "content": "73062155b60d807d3569ea5e33085dd00057e9f855076adc43d9bcd2ef05979d1938386c67c461400ae72d3904eff66b7eae12cffb5a36817b0d0cbda426522a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-logger@3.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-logger" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-mock-store@1.0.3", + "group": "@types", + "name": "redux-mock-store", + "version": "1.0.3", + "description": "TypeScript definitions for Redux Mock Store", + "hashes": [ + { + "alg": "SHA-512", + "content": "5aa7b7b496bac7d33130de0326731f6680510516a4d574cf925aa3e2a9159b9541a599c2f0f4800dfe242ee150f4d01d1daa307d6a04794333ecd59cd8632d9c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-mock-store@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-mock-store" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-optimistic-ui@0.4.10", + "group": "@types", + "name": "redux-optimistic-ui", + "version": "0.4.10", + "description": "TypeScript definitions for redux-optimistic-ui", + "hashes": [ + { + "alg": "SHA-512", + "content": "62df443a2118cb08a52b4c52d28132c4989ded844dc6a7240028db5674891cd0ee90ff048caf2293e1232e5cd533c7fa38d6b880edcb6c26795cb9914633a1a6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-optimistic-ui@0.4.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-orm@0.9.2", + "group": "@types", + "name": "redux-orm", + "version": "0.9.2", + "description": "TypeScript definitions for redux-orm", + "hashes": [ + { + "alg": "SHA-512", + "content": "38e44cf780f436d8e2d2cfc1ab955dd44d2dea743816b3807b160761310ccce73f656ffa0ac88e5f87fe6c8c61a2a28a553aabcc6dca2f4591a01171402fe5e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-orm@0.9.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-pack@0.1.6", + "group": "@types", + "name": "redux-pack", + "version": "0.1.6", + "description": "TypeScript definitions for redux-pack", + "hashes": [ + { + "alg": "SHA-512", + "content": "be9f0a433047d493b8cac1bc8b6a39a8f9cea15f82389b68047ab2770792faebaebe94c5b831006d95e0e248676474e7401cc9301218ea111811177c40b2b92b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-pack@0.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-pack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-persist-transform-encrypt@2.0.2", + "group": "@types", + "name": "redux-persist-transform-encrypt", + "version": "2.0.2", + "description": "TypeScript definitions for redux-persist-transform-encrypt", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb32e26d007bfff142fdefa2cc2b794189145aaccab10d88cdc6e8e9fdac2dd2488677f9ff20bdb76fd46d14bd9fe782a09f9beafa54dbf415733217b06cb201" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-persist-transform-encrypt@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-persist-transform-encrypt" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-persist@4.10.2", + "author": "rt2zz", + "name": "redux-persist", + "version": "4.10.2", + "description": "persist and rehydrate redux stores", + "hashes": [ + { + "alg": "SHA-512", + "content": "53e7b489e3060baf59afbdbddbd8895b8d1d12577b31f961ea6bb4789b5530b19f32afda26a8f150cd61cf2516311d5553200411d3c7b9099eab9b62f64ac882" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Zack Story\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/redux-persist@4.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rt2zz/redux-persist" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rt2zz/redux-persist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rt2zz/redux-persist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-persist-transform-filter@0.0.3", + "group": "@types", + "name": "redux-persist-transform-filter", + "version": "0.0.3", + "description": "TypeScript definitions for redux-persist-transform-filter", + "hashes": [ + { + "alg": "SHA-512", + "content": "d814d7fdba66e7fe747d1f0d6e3f95ac31375afe5909cfed603df99df608abdd54279459f4663215395c0ca122c2cc137dd6c8712d421718df26dfc4161d87f5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-persist-transform-filter@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-promise@0.5.29", + "group": "@types", + "name": "redux-promise", + "version": "0.5.29", + "description": "TypeScript definitions for redux-promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "9420424e2242c1e62d5b9620388006e34d1d022d82af6216ea67e1d5e67c5aa8314d1a8f6632c0150cf143aa1165a07d83c99dcebdbcbce737080a3ccbf35adb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-promise@0.5.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-promise-middleware@0.0.10", + "group": "@types", + "name": "redux-promise-middleware", + "version": "0.0.10", + "description": "TypeScript definitions for redux-promise-middleware", + "hashes": [ + { + "alg": "SHA-512", + "content": "dec0ee3dabe25558d1d2d94cb87c88ffacfde4b135b303fa82babc56149a3f8f642e30ccc198edc4fce3accff8b4a280437605f662e62a62633362d1503ff2bc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-promise-middleware@0.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-recycle@1.2.3", + "group": "@types", + "name": "redux-recycle", + "version": "1.2.3", + "description": "TypeScript definitions for redux-recycle", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa280ae011a349c410fcdb86935d8fb30c026e272aedda5d43334a44b6cc361ed51e42095b5d1b48c1d1e3326b536bff50cc7efa9c791bb22bd694edcab7b476" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-recycle@1.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-router@1.0.47", + "group": "@types", + "name": "redux-router", + "version": "1.0.47", + "description": "TypeScript definitions for redux-router", + "hashes": [ + { + "alg": "SHA-512", + "content": "44f5800d1ea8ae7f43a9918dc23db79d09d145034b8a565283bada2cea7f0dd3393416bed3b360135b08bb5bc6e0e566cfb80f527dcf6228f50580c071ad6bf0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-router@1.0.47", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-router" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/history@2.0.51", + "group": "@types", + "name": "history", + "version": "2.0.51", + "description": "TypeScript definitions for history", + "hashes": [ + { + "alg": "SHA-512", + "content": "872f1bed8d49f0e19ee8b6c08e3df19e242b8f7bfa96c8af09cae67f84f34a03f32e484878a81ce486674fb45e22a984ba87637cef04600ba816f22b1e2ffe8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/history@2.0.51", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/history" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/react-router@2.0.61", + "group": "@types", + "name": "react-router", + "version": "2.0.61", + "description": "TypeScript definitions for react-router", + "hashes": [ + { + "alg": "SHA-512", + "content": "d76f953aed7ec620bc44f73dcab8070b22c8efd56cc23b6ea9e4b680facc732c07ead91cf2b188521b382da2f70093eaa3977e44f9df46934a889ecc2b642172" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/react-router@2.0.61", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-router" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-shortcuts@0.0.0", + "group": "@types", + "name": "redux-shortcuts", + "version": "0.0.0", + "description": "TypeScript definitions for redux-shortcuts", + "hashes": [ + { + "alg": "SHA-512", + "content": "8aed4403844bc94a58133b5f4e8032b42a49210326a3284d8d16b8fb94fbb7315e4208cc20616b159edbafec50f272104f9d1c654fef1aca36977ae3c910e75d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-shortcuts@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mousetrap@1.6.9", + "group": "@types", + "name": "mousetrap", + "version": "1.6.9", + "description": "TypeScript definitions for Mousetrap", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d402237ae55b115f21424e27289706f9f88ec533a7fbdb38cc5abf9a8c693e613bf30605ea6b603953b77eaedb28b8092e9c9e54e126f994d263a3dc3e9e65e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mousetrap@1.6.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mousetrap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-socket.io@1.4.2", + "group": "@types", + "name": "redux-socket.io", + "version": "1.4.2", + "description": "TypeScript definitions for redux-socket.io", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e4084ce6c26311483a9b030e244a61a59c54473f9775b4f2d68a034d7044dfbdec37aeef979e8a06a1594e824e4dd6c8459211f01369afb4aea8f5a7a7de395" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-socket.io@1.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-socket.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socket.io-client@1.4.36", + "group": "@types", + "name": "socket.io-client", + "version": "1.4.36", + "description": "TypeScript definitions for socket.io-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "6495a3b4505e072d6445262955b7866131257fa06a3d05245c39471c3e24ff8d9bc82379461d36edfe320111c28a793db0a0246ed1995c40264746429dcdbf02" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socket.io-client@1.4.36", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-storage@4.1.0", + "group": "@types", + "name": "redux-storage", + "version": "4.1.0", + "description": "TypeScript definitions for redux-storage", + "hashes": [ + { + "alg": "SHA-512", + "content": "3bd01e4df4bcc79145041502c0e45992e74b6a12185118b89fc8481b25ca7d5ce293824e624b48f8521674d867d42b465812ac2a0e27c9ce60924a4389afc1bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-storage@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-storage-engine-jsurl@1.0.2", + "group": "@types", + "name": "redux-storage-engine-jsurl", + "version": "1.0.2", + "description": "TypeScript definitions for redux-storage-engine-jsurl", + "hashes": [ + { + "alg": "SHA-512", + "content": "093e74b83520551f2235a7f360568d202cec7efa49c82905b10c644f49f24bb4ea4438e8470e9815ecfe25ab99d6780b3b4cc328f8d5457dfa9768cb4b98152c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-storage-engine-jsurl@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-storage-engine-localstorage@1.1.1", + "group": "@types", + "name": "redux-storage-engine-localstorage", + "version": "1.1.1", + "description": "TypeScript definitions for redux-storage-engine-localstorage", + "hashes": [ + { + "alg": "SHA-512", + "content": "26e5ff90f1612f3e6269039cff29d06868d2bf60dd7e2316b32e83cb7aa93bf277c051171f5ef4686d266b83770cd73030fe0eaa73512b8636c5aaa4e7b28fad" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-storage-engine-localstorage@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-test-utils@0.2.1", + "group": "@types", + "name": "redux-test-utils", + "version": "0.2.1", + "description": "TypeScript definitions for redux-test-utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "329c01b8851e419fc5687ddf50e2d29969db9c53d02554f62714ffe7cd42ab057f0fe6e0859c0c8dd5891a27b9fec94622e96341597fba288189aeddfcd650b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-test-utils@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-testkit@1.0.5", + "group": "@types", + "name": "redux-testkit", + "version": "1.0.5", + "description": "TypeScript definitions for redux-testkit", + "hashes": [ + { + "alg": "SHA-512", + "content": "71cb82006035a4a8f22b31fa92dff2102ce50078c6ca5e97577c4d0605219977f0617deaff313ab32aa9262bdf60ea2fb00d42d40308519d95e78bcf95d2fb7e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-testkit@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/redux-thunk@2.4.1", + "author": "Dan Abramov", + "name": "redux-thunk", + "version": "2.4.1", + "description": "Thunk middleware for Redux.", + "hashes": [ + { + "alg": "SHA-512", + "content": "38e606358e49cb64d6bd32f52a0025572e9d731dec88f275c13abbe3510fc9429f9fa5ba9c285d2028d9c02774a7c01906ce645a96656e45d6da713fce351af9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2015-present Dan Abramov\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/redux-thunk@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/reduxjs/redux-thunk" + }, + { + "type": "issue-tracker", + "url": "https://github.com/reduxjs/redux-thunk/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/reduxjs/redux-thunk.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/redux-ui@0.0.14", + "group": "@types", + "name": "redux-ui", + "version": "0.0.14", + "description": "TypeScript definitions for redux-ui", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e6b85c58e7e7b45829d1f9705cfd45703a1b75852cb621881a0fafafa87e10bba19eeba645b857b3f7d3a9dd9061a30872cc0f625fe62479eec5b08770d41c4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/redux-ui@0.0.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ref@0.0.28", + "author": "Paul Loyd", + "group": "@types", + "name": "ref", + "version": "0.0.28", + "description": "TypeScript definitions for ref", + "hashes": [ + { + "alg": "SHA-512", + "content": "bfa85d6d6272148cc0b6475cee1209b8dcf40c2234923210b646b7a6ae464df30baacc4fa80f12ef18dd274464582db768b126c227d64032f1e1526704a0a7e5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/ref@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ref-array@0.0.28", + "author": "Paul Loyd", + "group": "@types", + "name": "ref-array", + "version": "0.0.28", + "description": "TypeScript definitions for ref-array", + "hashes": [ + { + "alg": "SHA-512", + "content": "75d9f99b5c45281ebd7dedb79ff459745c4e479516c656d79de9301ef42fcf83ae16f426a6865b2f1841afb655600798cc2ebf0c6761fb490b92a76ea1934564" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/ref-array@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ref-struct@0.0.29", + "group": "@types", + "name": "ref-struct", + "version": "0.0.29", + "description": "TypeScript definitions for ref-struct", + "hashes": [ + { + "alg": "SHA-512", + "content": "64e8b26c4c4d0c6fbe463c3ba8d0253fc67d4c67b85b54bb52fa876c263314c7367150614ee036f6dcc090eae4ddba98d027736cebe653b0395f654e8d3a4293" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ref-struct@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ref-union@0.0.28", + "author": "Paul Loyd", + "group": "@types", + "name": "ref-union", + "version": "0.0.28", + "description": "TypeScript definitions for ref-union", + "hashes": [ + { + "alg": "SHA-512", + "content": "42e5040d7aae1ec42e5a8f7c0fc7c975acd496b34bff092cf72f3dce052e9609d2a8ee09e855840d546dcc6faff82beebbad82ab15a4367b0c026f57b127bd80" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/ref-union@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reflux@6.4.3", + "group": "@types", + "name": "reflux", + "version": "6.4.3", + "description": "TypeScript definitions for RefluxJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d14d3b109b2d29ae588fd08d06be901b136ee4efe23e32a0f5e60b3862e40692e6634472bae501cf2e4ca48079cf4dd8d960d698d2c3af310eceb5b7280e428" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reflux@6.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/reflux" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/relateurl@0.2.29", + "group": "@types", + "name": "relateurl", + "version": "0.2.29", + "description": "TypeScript definitions for relateurl", + "hashes": [ + { + "alg": "SHA-512", + "content": "412bdebd9f88470c3695db5fbf542c918b2a55557008a41fd576f0b5ccb2a11bcb210cdfc8f863fc2fb7f8f2b348345d8b27a36a22e09eafff5d39257a8ae92e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/relateurl@0.2.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/relateurl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/relaxed-json@1.0.1", + "group": "@types", + "name": "relaxed-json", + "version": "1.0.1", + "description": "TypeScript definitions for relaxed-json", + "hashes": [ + { + "alg": "SHA-512", + "content": "52704abcb09ad7a44dacd7aaf0ad8da2200de9686bc3f7cf8e1ea25a5d6e62de13fbf02aca424a7d0bf538bfe4b642e9ae6c103e7065993ddfbbdc53737a3d00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/relaxed-json@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/relaxed-json" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/remarkable@1.7.6", + "group": "@types", + "name": "remarkable", + "version": "1.7.6", + "description": "TypeScript definitions for remarkable", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc81c97ba02acd93ec7bba476155d2f0fc8b6b015df5e1ec0b91024777184a862e8a292ca7ef8498cfb57a671f12c6e6421ebb5f50444c34e2967dc838688482" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/remarkable@1.7.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/highlight.js@9.12.4", + "group": "@types", + "name": "highlight.js", + "version": "9.12.4", + "description": "TypeScript definitions for highlight.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "b76b33764c26836249cae08cdb47bc911d97e7d5821396649786f39b5bb53ae9239bbf73a5b880bfe4239f02e7bae57458711c5f6360508b6ed2900c2ae38fc3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/highlight.js@9.12.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/highlight.js@9.18.5", + "author": "Ivan Sagalaev", + "name": "highlight.js", + "version": "9.18.5", + "description": "Syntax highlighting with language autodetection.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b96c5ca87ddfc11c25f9dbff22f2e2648ebf436305c83e733fa65c08e96edecc8b4b1aaceded7d86da75ee6127ec209764c308ff83d0c6d4b91c18923f743a0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "BSD 3-Clause License\n\nCopyright (c) 2006, Ivan Sagalaev.\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the name of the copyright holder nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/highlight.js@9.18.5", + "externalReferences": [ + { + "type": "website", + "url": "https://highlightjs.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/highlightjs/highlight.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/highlightjs/highlight.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/remote-redux-devtools@0.5.5", + "group": "@types", + "name": "remote-redux-devtools", + "version": "0.5.5", + "description": "TypeScript definitions for remote-redux-devtools", + "hashes": [ + { + "alg": "SHA-512", + "content": "5eec9ad537a044f01ef76fa79c4798a5fb9f13f9ad7cdf7df861f6ef679d6a85a885b300fb23faafec18a8ae2cabf7ef9a850fb4f1edc1947632493eeae1de05" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/remote-redux-devtools@0.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/remote-redux-devtools" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/remove-markdown@0.1.1", + "group": "@types", + "name": "remove-markdown", + "version": "0.1.1", + "description": "TypeScript definitions for remove-markdown", + "hashes": [ + { + "alg": "SHA-512", + "content": "48260e14c1d4ab288953933457680107a50374184fc266b7e23d2f617d098166aaa7fef88a56b63a9b358ede6d07f0b55105d55ea2be8aceb5f3ce1b2139f72d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/remove-markdown@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rename@1.0.4", + "group": "@types", + "name": "rename", + "version": "1.0.4", + "description": "TypeScript definitions for rename", + "hashes": [ + { + "alg": "SHA-512", + "content": "795f35fba6d5bf699d0816a190c79f8c453002328300fdc0bb286a582591c5c45a7957547875016a8ab6cd2cfee473471768f34da8cc71f2ef26ccb82b771bc0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rename@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rename" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/replace-ext@0.0.27", + "author": "Deividas Bakanas", + "group": "@types", + "name": "replace-ext", + "version": "0.0.27", + "description": "TypeScript definitions for replace-ext 0.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d6378d87a37f0d594bb9f8f15f7656d662eb62a25a5332c89062a5d0f78e20e8b66fe0e1969c22bb52d3952a69306f77fa59eb0ebab1b3e13896633c077e1ec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/replace-ext@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/request@2.48.8", + "group": "@types", + "name": "request", + "version": "2.48.8", + "description": "TypeScript definitions for request", + "hashes": [ + { + "alg": "SHA-512", + "content": "c218e4d440c93dc011da460745b165fe529e78a6138b4e40d792bd6e72c89c256ba0d0c2b5771ee7bc4a748d3fad0680dcafbaab4785c9404f9aa7d29dd51975" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/request@2.48.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/request" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/caseless@0.12.2", + "group": "@types", + "name": "caseless", + "version": "0.12.2", + "description": "TypeScript definitions for caseless", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9c9313230410fc511be307a27735c9ee027e4f925eeddd38b3020fb1765cf340648f4a605c5dff0aa081f4b9afe2fad8a8f994541c45e9d07126bda47892dd3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/caseless@0.12.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/tough-cookie@4.0.2", + "group": "@types", + "name": "tough-cookie", + "version": "4.0.2", + "description": "TypeScript definitions for tough-cookie", + "hashes": [ + { + "alg": "SHA-512", + "content": "439bed9755b9b9ed7a0fe9c8696f0959e6d24ab6895652be12d84a9fb7bb51c0f8296b1a489f01a863d735a3e0860b5c9ff7e1beb375ed3bfc92c52c4298a997" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/tough-cookie@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tough-cookie" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/request-as-curl@0.1.0", + "group": "@types", + "name": "request-as-curl", + "version": "0.1.0", + "description": "TypeScript definitions for request-as-curl", + "hashes": [ + { + "alg": "SHA-512", + "content": "65fd25c96fdd1f9eb7746c25f2666d5e63a5816686b864f85965bb5f84961708aa37788694fd179a6b7f4aa633fa412ba293c6fdf1e6b9c7c629b3054daaf7d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/request-as-curl@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/request-ip@0.0.33", + "group": "@types", + "name": "request-ip", + "version": "0.0.33", + "description": "TypeScript definitions for request-ip", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e98fb779ca4baf016cd0b6a852b717a19150e982d9687f83b32fa779236b4bfaa1cfe23609ce07cd4099a3387dfbdd006909477ba3d663ad313ecb89d0392e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/request-ip@0.0.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/request-promise@4.1.48", + "group": "@types", + "name": "request-promise", + "version": "4.1.48", + "description": "TypeScript definitions for request-promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0bb1fc5fc0fe46dc4dd4eb8417c4ac00e9cb6cc59eee2b2978236f29323dc9bd5fb3b56102467b3bdc62fbd4a30e389304e6ed40e55b3976406aca247565c9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/request-promise@4.1.48", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/request-promise" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/request-promise-native@1.0.18", + "group": "@types", + "name": "request-promise-native", + "version": "1.0.18", + "description": "TypeScript definitions for request-promise-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4f9ce0de21215cfdcd4b8d6c8bb99518f99d2e2c1dfe20c7cda10c83122dfde7e8fa9131534d102a8c4363a0f25489de2f1d1184a33a13adc4eb7d933e01c6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/request-promise-native@1.0.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/request-promise-native" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/requestretry@1.12.8", + "group": "@types", + "name": "requestretry", + "version": "1.12.8", + "description": "TypeScript definitions for requestretry", + "hashes": [ + { + "alg": "SHA-512", + "content": "34a76fd969847bafd5d4f989adf95fbc654df5bbee3ac9c798d442e26f131573cc4274452af9e790537823a03102dc388548b687703ecff687fa2af61d84cd3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/requestretry@1.12.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/requestretry" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/require-dir@0.3.0", + "group": "@types", + "name": "require-dir", + "version": "0.3.0", + "description": "TypeScript definitions for require-dir", + "hashes": [ + { + "alg": "SHA-512", + "content": "123e806932f1f04e9b81240f36613520bee417374773a19d7c035b90d52bdbf4bafdf612232ae663d32284c84fd4040976ef10462001e76f22620a2f78f8e77d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/require-dir@0.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/require-directory@2.1.2", + "group": "@types", + "name": "require-directory", + "version": "2.1.2", + "description": "TypeScript definitions for require-directory", + "hashes": [ + { + "alg": "SHA-512", + "content": "1541b93c9dabb15d93b2c4aca5565e7d347cfb01f7021afa29d001e966a72cdae8483bb40397b0e16554c679c653f13593a9f38a9f596b018001efd9ab31a7e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/require-directory@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/require-directory" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/require-from-string@1.2.1", + "group": "@types", + "name": "require-from-string", + "version": "1.2.1", + "description": "TypeScript definitions for require-from-string", + "hashes": [ + { + "alg": "SHA-512", + "content": "9880caee54c7734b96ebb4b13c8aa4c02af199d281579680113e7ad21c999d3f1ce84929f406a1dc63ea7bc3e5d58ce7fe2d8d318998bfe1e230bc2318308801" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/require-from-string@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/require-from-string" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/require-relative@0.8.0", + "group": "@types", + "name": "require-relative", + "version": "0.8.0", + "description": "TypeScript definitions for require-relative", + "hashes": [ + { + "alg": "SHA-512", + "content": "df10cb5a47921af91199358e8494be5a3a93ed04fca1a722b11a2b310ca903d637052467a73bb4274f9825470d6382a683cbd8f80e2f03073cab033cda4ddc30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/require-relative@0.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/requirejs@2.1.34", + "group": "@types", + "name": "requirejs", + "version": "2.1.34", + "description": "TypeScript definitions for RequireJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "8902c6344d43c884588a1eb4078ee5fe12395fb274c009e74412fa627f3919461083c166df097c92f4fa351c2770aae850e4b1eff95b01a80814d57bcb4d8389" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/requirejs@2.1.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/requirejs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/requirejs-domready@2.0.28", + "author": "Nobuhiro Nakamura", + "group": "@types", + "name": "requirejs-domready", + "version": "2.0.28", + "description": "TypeScript definitions for domReady 2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "58efb6e03091398245281d39e336d242a54f25dee51d4e1b1b903c3d61599040e5a1e1be8f4a702e8dd55bc17a663f16bcb04eab6593acf49dabf11530e98251" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/requirejs-domready@2.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/resemblejs@1.3.29", + "group": "@types", + "name": "resemblejs", + "version": "1.3.29", + "description": "TypeScript definitions for Resemble.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "de63c7ea4236bbd8af1d3e644dc353bfaddb2343a2bf8551abde546f57e0445bfa37f512615dda3add5521c6fb93cc002903d4a22021940d2112ff7ea9392857" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/resemblejs@1.3.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reservoir@0.1.0", + "group": "@types", + "name": "reservoir", + "version": "0.1.0", + "description": "TypeScript definitions for reservoir", + "hashes": [ + { + "alg": "SHA-512", + "content": "b04c329a1cfabcb6fa11183220551b0a5aacb46edf8cd078d6a9e0b5e3e322ddefff723ab3bd32904094f677ee3ee6ef53d2e7c43a4dc3bfebdcd5aba8e20ff1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reservoir@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/resolve@0.0.8", + "group": "@types", + "name": "resolve", + "version": "0.0.8", + "description": "TypeScript definitions for resolve", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ae0293da25fdcd3df7b5f214a8264a7c11b6737abd884a4ee8f26082dccf617bf6b4e3e81b305f7b364a43d92f2b88c1af9b804c448e7dfd265049a2d32a9b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/resolve@0.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/resolve-from@0.0.18", + "author": "unional", + "group": "@types", + "name": "resolve-from", + "version": "0.0.18", + "description": "TypeScript definitions for resolve-from", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fe73a4050012e31bc061bc0aa490daef9b5e15dbb3383bf5a433317687279b5c88f07e67b1dfcc2008674371da540d72bb085d35d9f8b0619df116c98cebb41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/resolve-from@0.0.18", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/resourcejs@1.9.7", + "group": "@types", + "name": "resourcejs", + "version": "1.9.7", + "description": "TypeScript definitions for resourcejs", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5097bbc6078a9ba74743197b0d46b2ddca69260f753e43792e41bbcba6f99aa9f4a66190bb67c84f7fd912dac3ac5ed4fed84042b55e4cc05cfea2222bcecee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/resourcejs@1.9.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/resourcejs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mongoose@6.5.0", + "author": "Guillermo Rauch", + "name": "mongoose", + "version": "6.5.0", + "description": "Mongoose MongoDB ODM", + "hashes": [ + { + "alg": "SHA-512", + "content": "8fe0654238f18198348969f8da42de65307dd4e7a37315a9636679d1bb194e2289ec71dc12d718db51a8770e3de8632406a24c4f3996ec6fe4674e265be09bed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# MIT License\n\nCopyright (c) 2010-2013 LearnBoost \nCopyright (c) 2013-2021 Automattic\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mongoose@6.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://mongoosejs.com" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Automattic/mongoose/issues/new" + }, + { + "type": "vcs", + "url": "git://github.com/Automattic/mongoose.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kareem@2.4.1", + "author": "Valeri Karpov", + "name": "kareem", + "version": "2.4.1", + "description": "Next-generation take on pre/post function hooks", + "hashes": [ + { + "alg": "SHA-512", + "content": "689f68a55a17ae84143dfa2f60fe646a3da533b267d361b0d776cbd2583dbf457b49a51cd2a6af3ecd04b9eeddd83702dcd8ea23a40050495736cb9949e33e10" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"{}\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright {yyyy} {name of copyright owner}\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n" + } + } + } + ], + "purl": "pkg:npm/kareem@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vkarpov15/kareem#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vkarpov15/kareem/issues" + }, + { + "type": "vcs", + "url": "git://github.com/vkarpov15/kareem.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mpath@0.9.0", + "author": "Aaron Heckmann", + "name": "mpath", + "version": "0.9.0", + "description": "{G,S}et object values using MongoDB-like path notation", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a425141393c870e43128155c471b51a7f53ff1723b5d9ce2885352539868d966583d2d24f69812e6717dff20221b809c9d4f618e735e519cdcb99879b37d27b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 [Aaron Heckmann](aaron.heckmann+github@gmail.com)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mpath@0.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aheckmann/mpath#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aheckmann/mpath/issues" + }, + { + "type": "vcs", + "url": "git://github.com/aheckmann/mpath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mquery@4.0.3", + "author": "Aaron Heckmann", + "name": "mquery", + "version": "4.0.3", + "description": "Expressive query building for MongoDB", + "hashes": [ + { + "alg": "SHA-512", + "content": "27985e23e3f4f08e952762b2dfedf722909d02f9581934948f04cfc6402bf22f04a1db8f3015f6398ff06b720a648425ecc53849b164f2776048ac81fdc975cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "(The MIT License)\n\nCopyright (c) 2012 [Aaron Heckmann](aaron.heckmann+github@gmail.com)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/mquery@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aheckmann/mquery/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aheckmann/mquery/issues/new" + }, + { + "type": "vcs", + "url": "git://github.com/aheckmann/mquery.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sift@16.0.0", + "author": "Craig Condon", + "name": "sift", + "version": "16.0.0", + "description": "MongoDB query filtering in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "20b4e374fd8cbfd575908c5631778c4c845b381aea29ce0901798532716addf29ec90d90c1adc3c35b9b7327b7bd1f98ea87c0d1bf60343affcb6b7a794788cd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/sift@16.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/crcn/sift.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/crcn/sift.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/crcn/sift.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/response-time@2.3.5", + "group": "@types", + "name": "response-time", + "version": "2.3.5", + "description": "TypeScript definitions for response-time", + "hashes": [ + { + "alg": "SHA-512", + "content": "e00373a7e2372bbb33b4514018f00b581bd29786b268348acc8d81a24f96373f9e9f6781d8fbe4e950a3478ecf0570563a4120dabe2e5a964e9570390cd20d39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/response-time@2.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/response-time" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rest@1.3.31", + "group": "@types", + "name": "rest", + "version": "1.3.31", + "description": "TypeScript definitions for rest.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f1aa3255b9df8016ab291a9323c0e68b277fd3d975f0ad4e3f59e0b97647013413cd8a80e4565062db20acba44ef15613e5da48cb0e153c7073f51f1d7abb93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rest@1.3.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rest" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/when@2.4.34", + "group": "@types", + "name": "when", + "version": "2.4.34", + "description": "TypeScript definitions for When", + "hashes": [ + { + "alg": "SHA-512", + "content": "b127f8f331ad222a14a008b825eaadc8aa13ee380f1b5b9ae996fde44b3e9c710b0eb385f6adcb235dfa30312bee283bcb7c1273efc50c23f3668996f6855bb5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/when@2.4.34", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/when" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restangular@1.5.46", + "group": "@types", + "name": "restangular", + "version": "1.5.46", + "description": "TypeScript definitions for Restangular", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e022ee9ce603eb386be1ef3aa16aaac3c6da508994071d85f73aa92320e0e8f5e3ddd138234235d76ef52be86276826c55190431608986283b03e15dfbd7c78" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restangular@1.5.46", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restangular" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restful.js@0.6.29", + "group": "@types", + "name": "restful.js", + "version": "0.6.29", + "description": "TypeScript definitions for restful.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf318d1e8734522198f41a10b494adbd1cd08d2309e31d253c21f9e4b4dae3c591122dcb56748be8fb9e4a5faf82c48c44f19b275045135682d8a6fda96da045" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restful.js@0.6.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restful.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restify@7.2.12", + "group": "@types", + "name": "restify", + "version": "7.2.12", + "description": "TypeScript definitions for restify", + "hashes": [ + { + "alg": "SHA-512", + "content": "d40731818cf75a7031fcdbe9c5139288d08948699b976868f02372020f9f86ea3ea28a572848ad4305d347bfe26e1280ceb05a7abc5117a9e7d985d769390dae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restify@7.2.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/bunyan@1.8.8", + "group": "@types", + "name": "bunyan", + "version": "1.8.8", + "description": "TypeScript definitions for bunyan", + "hashes": [ + { + "alg": "SHA-512", + "content": "09b96af98c9d837bbeb068b3da68c78c2e4c3e676363e368e2abc7ac5f815216e5b2649f32fb072db386eb6b4f6e89eca818fab1b5afd4b1dcb287b9270fbf3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/bunyan@1.8.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bunyan" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spdy@3.4.5", + "group": "@types", + "name": "spdy", + "version": "3.4.5", + "description": "TypeScript definitions for node-spdy", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff7ddf2112bf6aa90a37183d0528e9cedd6e726bcfade9a0783cb09bdcf60b698e9488792e38ef81cdd48501eac17b122c32c73d3f6396c9eb8ca4355e2549cc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spdy@3.4.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/spdy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restify-cookies@0.2.8", + "group": "@types", + "name": "restify-cookies", + "version": "0.2.8", + "description": "TypeScript definitions for restify-cookies", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c14dd0754e0e3a08e2c3e19afe97965cbbb500479ed08e7d2a5bc32eaf079f24bf0f5529703623a071613159edd537449a667cea04a1f96532ec4eec6734a0f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restify-cookies@0.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restify-cookies" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restify-cors-middleware@1.0.2", + "group": "@types", + "name": "restify-cors-middleware", + "version": "1.0.2", + "description": "TypeScript definitions for restify-cors-middleware", + "hashes": [ + { + "alg": "SHA-512", + "content": "9584297a628d365dc11671b230703c4f79758e0acc4f087e6c08da5da3714b56056d1625b079a1dc76192aa9cd328a67641aa97e2e6a6d5a8cccf719c36acfc4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restify-cors-middleware@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restify-cors-middleware" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restify-errors@4.3.4", + "group": "@types", + "name": "restify-errors", + "version": "4.3.4", + "description": "TypeScript definitions for restify-errors", + "hashes": [ + { + "alg": "SHA-512", + "content": "1863f0d635c2875f6b366170089213877a7d38bac32b853244873183a436c3cdfff26f03d670310a9830623b452c4a67d2ee5d41acec47828a1e689a2cd33801" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restify-errors@4.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restify-errors" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/verror@1.10.6", + "group": "@types", + "name": "verror", + "version": "1.10.6", + "description": "TypeScript definitions for verror", + "hashes": [ + { + "alg": "SHA-512", + "content": "34d9be81d78f017d551af3dc19908329064a6128805a280a84a6b3e4a17de211ba7f6b3c75ef4ec39fbb01b5e878ac4bf206af65f93852ab9203280e17676e11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/verror@1.10.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/verror" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restify-plugins@1.5.13", + "group": "@types", + "name": "restify-plugins", + "version": "1.5.13", + "description": "TypeScript definitions for restify-plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "956b6f597c31a035a56e2244fd6ea537b29419ec7a6c255f5f800378bca96d78b21eaa95e1963f5f7ec8fa5a50ad6a69fb507aa2477e903b189363d3bb276805" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restify-plugins@1.5.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restify-plugins" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restler@3.1.6", + "group": "@types", + "name": "restler", + "version": "3.1.6", + "description": "TypeScript definitions for restler", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3b25e26dea4562ccdf9c0b973c2f35bb781ce894c08f026c89ee118fd79f2eb43ac31f7f386379e8f86ffe90cc5f0e1bd111ad01c37632cf1f99aed3f6a887d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restler@3.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restler" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/restling@0.9.6", + "group": "@types", + "name": "restling", + "version": "0.9.6", + "description": "TypeScript definitions for restling", + "hashes": [ + { + "alg": "SHA-512", + "content": "37d87b8ecf021921ff2b868d9d06cf52854bcafdf9ec8492e5161fcdc4be3933adb73e6bd45e3e39df788a969042d086570d3690f6767737a7f061d988fa72b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/restling@0.9.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/restling" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/resumablejs@1.1.0", + "group": "@types", + "name": "resumablejs", + "version": "1.1.0", + "description": "Stub TypeScript definitions entry for resumablejs, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a17ccbb0c2dac3a29cb2544155ce02d37ab56c4543dd50ceccd512e23222fc9699ecdfbcfba556eee7f7c2a08d0c679a43e90a5adceac3d038ba130d0d3ac6e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/resumablejs@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/23/resumable.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/23/resumable.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/23/resumable.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resumablejs@1.1.0", + "author": "https://github.com/23/resumable.js/graphs/contributors", + "name": "resumablejs", + "version": "1.1.0", + "description": "A JavaScript library for providing multiple simultaneous, stable, fault-tolerant and resumable/restartable uploads via the HTML5 File API.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8144d64ed2766a17916f9b2f1c318732d42c0641b14c82e9640a53d75383a3111ee43ef91a160becd73f5988027095d8fb94559a6d8112ca76aab88290a59146" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/resumablejs@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/23/resumable.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/23/resumable.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/23/resumable.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rethinkdb@2.3.17", + "group": "@types", + "name": "rethinkdb", + "version": "2.3.17", + "description": "TypeScript definitions for RethinkDB", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9c6b424fcf5ab39e133e3943dffd752a60aa7758e226dca6a4f13688c80ea4f3624465dd55975d2ed47461266b0e578ae25702ebf133e96022e9ba9124333e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rethinkdb@2.3.17", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rethinkdb" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/retry@0.10.2", + "group": "@types", + "name": "retry", + "version": "0.10.2", + "description": "TypeScript definitions for retry", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ea264638550ed2d3d5e123b900dce37bd40c5ab913a14afef8eb7f55b0d5c2f62b21e085879c88bdf227fe9cfd4cc5057744c3ea5d20988293ec0c78e583d51" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/retry@0.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/retry-as-promised@2.3.3", + "group": "@types", + "name": "retry-as-promised", + "version": "2.3.3", + "description": "TypeScript definitions for retry-as-promised", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceabbf7c4824a5c6eb3d3b059c8c56a3df6f94c5dfebb971a26b92cb0d9d47285821424fc809c4b56e823a562cd88075d3241e052d8b49a85a5ac1ed0fe6f776" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/retry-as-promised@2.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/retry-as-promised" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rev-hash@2.0.0", + "group": "@types", + "name": "rev-hash", + "version": "2.0.0", + "description": "TypeScript definitions for rev-hash", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c533b0cfc27ba49f33867e41de2408fe32a24246fa51aa284fd6033fa2fd9d3f4f1ec20a081a60e319e27050a76156feb6a065a79463228d532254a72495593" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rev-hash@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/revalidate@1.1.3", + "group": "@types", + "name": "revalidate", + "version": "1.1.3", + "description": "TypeScript definitions for revalidate", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf0d93c26e83d03a1d94cd5dceac39d0908d50a8626a2a581a4e76a8035edb2c89ce0337542ae81475c6b3f488a270420d1bb33e89c1ad1e9b82a54ce91bd9df" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/revalidate@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/revalidate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/revalidator@0.3.8", + "group": "@types", + "name": "revalidator", + "version": "0.3.8", + "description": "TypeScript definitions for revalidator", + "hashes": [ + { + "alg": "SHA-512", + "content": "aba2928b73e494b190d027ac67f5ee2f0972e035d796726eb9c60e1bd96b06aacff2b2a2b8f65385abf6876fa91636a178da674f4a8a2b78b7d3841621e3de27" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/revalidator@0.3.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/revalidator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/reveal@3.3.33", + "group": "@types", + "name": "reveal", + "version": "3.3.33", + "description": "TypeScript definitions for Reveal", + "hashes": [ + { + "alg": "SHA-512", + "content": "94a6decc0f4e6b92df75247014373f1471061f8f858e25e1fdafcf09264098df8a09e4092ffdc294e7404303b1b77cdd1dcf17ca2a13f9c36f20e95eb70448ec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/reveal@3.3.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rewire@2.5.28", + "group": "@types", + "name": "rewire", + "version": "2.5.28", + "description": "TypeScript definitions for rewire", + "hashes": [ + { + "alg": "SHA-512", + "content": "b83d23fc040e6b995eeda7ee2bebbec288bc8cd285d6f7f70cdd07ecb08985fb7f94d3626d4afb55c01eb1d82d59f10abde668977646d4226ac31d8186b9e5f3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rewire@2.5.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rfc2047@2.0.1", + "group": "@types", + "name": "rfc2047", + "version": "2.0.1", + "description": "TypeScript definitions for rfc2047", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2582dca4bfe5d7304ec4a5eae476a7dd04150672cdbcaeef9adb504ad33390638228c44eed12abc872f005033e43255c723a6a00517a37d0ec699b7292f9305" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rfc2047@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rgrove__parse-xml@1.1.2", + "group": "@types", + "name": "rgrove__parse-xml", + "version": "1.1.2", + "description": "TypeScript definitions for @rgrove/parse-xml", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c1b1c5efb814501aa13341e5523958ae9288a14584931f51e5c740703154886e5ab25473f6e2b21123940f5e528d297666b87ced76d5281c43886bd2374a155" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rgrove__parse-xml@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rgrove__parse-xml" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rheostat@2.1.4", + "group": "@types", + "name": "rheostat", + "version": "2.1.4", + "description": "TypeScript definitions for rheostat", + "hashes": [ + { + "alg": "SHA-512", + "content": "e56556d3bd43a4f90f9950b3762339b674495ac2ad2fd21c907401c0823bfd4196e2ec9a1ca4448a8d1aad4263ff585fb98a5d33577fe67777253cb0aa181f10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rheostat@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rickshaw@0.0.28", + "group": "@types", + "name": "rickshaw", + "version": "0.0.28", + "description": "TypeScript definitions for Rickshaw", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fd07b9deacbca277602a2a3cea76b94bfde42041d565f9b6966e3ef4ed1bd353a2d9b66154be660c9c35635a290155627499315967183eb067bbc46efd9863a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rickshaw@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rimraf@2.0.5", + "group": "@types", + "name": "rimraf", + "version": "2.0.5", + "description": "TypeScript definitions for rimraf", + "hashes": [ + { + "alg": "SHA-512", + "content": "6323fe55f79aa80c85997a138771c28713903328c1c9132c1d4ee473928e2644a55ee76132140800b6d857bac787f97c776957dd5510ce9aeb700816751b94f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rimraf@2.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rimraf" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/riot@3.6.2", + "group": "@types", + "name": "riot", + "version": "3.6.2", + "description": "TypeScript definitions for riot", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bfabd7703a01977a8baad62a50331c2eba461ff253196e1cdbbaf16a5f85e17501f27fa0e7e293b1c191a45d2089f8767c73bf5f800ce90023bdd8ca9b4e2da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/riot@3.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/riot-api-nodejs@0.0.28", + "group": "@types", + "name": "riot-api-nodejs", + "version": "0.0.28", + "description": "TypeScript definitions for Riot Games API", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e909a8f3f705c4356020a63204946e6dce06506df7ac26db9707d1f8a0f710ac25a85d66b06da5da7dda94ee0c114fb180ba6a22edef0ab643f7c200f46d13f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/riot-api-nodejs@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/riot-games-api@0.0.28", + "group": "@types", + "name": "riot-games-api", + "version": "0.0.28", + "description": "TypeScript definitions for Riot Games API", + "hashes": [ + { + "alg": "SHA-512", + "content": "27391fb1aaae12fe83c8280fdf799dc9cb49c10e8fc18377d95c2dfcc7a1822ace059d90ad08bab681112d2619c981f2b531bd9533debe63a6372b5ad015387e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/riot-games-api@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/riot-route@3.1.1", + "group": "@types", + "name": "riot-route", + "version": "3.1.1", + "description": "TypeScript definitions for riot-route", + "hashes": [ + { + "alg": "SHA-512", + "content": "12fd42c02b694a0be57feb3b0fd69f74120f6be156cf321930204b82c3194a6631b2e198682f86554b48b5c7399ee770b7d6432634982302caa300fa6842b0aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/riot-route@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/riotcontrol@0.0.27", + "author": "Ilya Mochalov", + "group": "@types", + "name": "riotcontrol", + "version": "0.0.27", + "description": "TypeScript definitions for RiotControl", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fda914803a6acec40f3b7e4851942ac56b77c3765cbc22442b68077b63b8943374c90ffa115ba9eb9231b349b55ae91418ee095ea66f3ea482c142892889c30" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/riotcontrol@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/riotjs@0.0.28", + "group": "@types", + "name": "riotjs", + "version": "0.0.28", + "description": "TypeScript definitions for riot.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "77a145be3fcffa921d1f899228fbed4948c471a3143d69682f11b880416660150c053400e92b663600a937a153fc8ab86b50f09a936788595857baf68dd00ae0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/riotjs@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rison@0.0.6", + "group": "@types", + "name": "rison", + "version": "0.0.6", + "description": "TypeScript definitions for Rison", + "hashes": [ + { + "alg": "SHA-512", + "content": "984dde44ad1fa5337f1a7341388836b46ab670585c8505c5e9f09bacbc6eb3be53827a0e1026dd1e292bf78f0518efd402697bfd984b31ae456c6905e4f2af9b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rison@0.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rivets@0.9.2", + "group": "@types", + "name": "rivets", + "version": "0.9.2", + "description": "TypeScript definitions for rivets", + "hashes": [ + { + "alg": "SHA-512", + "content": "71e5c3d3379443310f59fac6c0e421185741350334c290d5f6952fd4096b580877241c849dfaee47f9373effda27bfc9f3e80adc6b08927dba58d0e201aa27a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rivets@0.9.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rivets" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rmfr@2.0.1", + "group": "@types", + "name": "rmfr", + "version": "2.0.1", + "description": "TypeScript definitions for rmfr", + "hashes": [ + { + "alg": "SHA-512", + "content": "18819066b0d50d8f827ff79aa25821387929813590e8ffcd427828cd57f773a5215a1f8bc60b37920fe04419a2f22456f144572cd2f1f3711d845e03b435a0dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rmfr@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rmfr" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/roads@5.0.1", + "group": "@types", + "name": "roads", + "version": "5.0.1", + "description": "TypeScript definitions for roads", + "hashes": [ + { + "alg": "SHA-512", + "content": "db5a0a2d88f97256f10cc08eecbf53f2024828a59692f90c03c22fa81a304f57549d28401812c92f3a0ebc4cbfd29e7a4c51a82bee7e172513a105fbde6b17b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/roads@5.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/roads-server@1.0.1", + "group": "@types", + "name": "roads-server", + "version": "1.0.1", + "description": "Stub TypeScript definitions entry for roads-server, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a76c24b59cf6b5b6d7f4ee28edec31e1fce7b992bbeb56dd05e88102b66be1bb10074e1e692fdadeb0f1cf89dcd5c5fc525b70274c3d238805f81f5b3913b90" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/roads-server@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Dashron/roads-server#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Dashron/roads-server/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Dashron/roads-server.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/roads-server@1.1.1", + "author": "Aaron Hedges", + "name": "roads-server", + "version": "1.1.1", + "description": "A simple web server for the roads framework", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfc672f350d963bc5285171229cd872871c997838db6529658b13be9e1c6fb5f7ba1d1c00ec800a56741f456fd47f4dc9c913b8129ad52788da0fc338cc2d3b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2018 Aaron Hedges\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/roads-server@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Dashron/roads-server" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Dashron/roads-server/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Dashron/roads-server.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/roll@1.2.0", + "group": "@types", + "name": "roll", + "version": "1.2.0", + "description": "TypeScript definitions for roll", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0a86edc35c6de8f0639d6d741b3735aaa9ae2b02d4741c6c3aa37ed13f8087818163429dc34d2194a422adfee8df0fe6513cec62f992488626bb179717d296c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/roll@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rolling-rate-limiter@0.1.0", + "group": "@types", + "name": "rolling-rate-limiter", + "version": "0.1.0", + "description": "TypeScript definitions for rolling-rate-limiter", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0b0324f5074c269079339ab2bdf070ad3a2304e55bbcc421405ed7f07cb5dc2a1e1fb52ba0dbeda861cbc0351b13fab5a65b623aeb87a72fc6343321afcf3a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rolling-rate-limiter@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rollup-plugin-json@2.3.1", + "group": "@types", + "name": "rollup-plugin-json", + "version": "2.3.1", + "description": "TypeScript definitions for rollup-plugin-json", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0d8295f4ee3c1d0eb7f1e268aab8d3c346fe102d7d7c363f0f75f0239c488bbe5bdc5e16f185679e9b3ea221a32efabd447b9774c0307b888f348817df2a800" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rollup-plugin-json@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rollup@0.54.1", + "author": "Rich Harris", + "name": "rollup", + "version": "0.54.1", + "description": "Next-generation ES6 module bundler", + "hashes": [ + { + "alg": "SHA-512", + "content": "79b51481443b2bfb0b9faec2b4ef098fc1f7460280a155aba62240ede9ce93064f6734c297c182f02674d20e63a308d7f342a0066cece19d4c57a7208254fce8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2017 [these people](https://github.com/rollup/rollup/graphs/contributors)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rollup@0.54.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rollup/rollup" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rollup/rollup/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/rollup/rollup.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ronomon__crypto-async@2.0.0", + "group": "@types", + "name": "ronomon__crypto-async", + "version": "2.0.0", + "description": "TypeScript definitions for @ronomon/crypto-async", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa7d7f0f0505bd0885353c3f4826de88e88eeac21e1f04d0c6e7f19985b6e8b130668123a076ca4f12dc0ecf1529c26242527cd44acd7caad57755ddea86719e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ronomon__crypto-async@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rosie@0.0.35", + "group": "@types", + "name": "rosie", + "version": "0.0.35", + "description": "TypeScript definitions for rosie", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8c8832327fc7f54f11c9e3c845207600acf6012855db94b538fcc81af26c47e63bc9e1b60cc68a28697df690c9b5dedd95f8ef31a92c5c305b5d633523193c8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rosie@0.0.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/roslib@0.18.3", + "group": "@types", + "name": "roslib", + "version": "0.18.3", + "description": "TypeScript definitions for roslib.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8101b62f1000b37cece26fac3ac91087913cfcd3fbd3bd5c82d69cab48b076036995abb81d6f3869a029da95651edb0687a3a68d9b90a57356ff5e8856e2983" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/roslib@0.18.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rot-js@0.6.5", + "group": "@types", + "name": "rot-js", + "version": "0.6.5", + "description": "TypeScript definitions for rot-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "da44df2b7cba1200f8bbdad5698e7c2961637a7bdb82ba430d190f5e090bb157af5b01a3581907cf1add111e09e8cfc4bff0bb6ebd02dcbeb226d7161f6c7ff3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rot-js@0.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/route-parser@0.1.4", + "group": "@types", + "name": "route-parser", + "version": "0.1.4", + "description": "TypeScript definitions for route-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "9701f749ec8ac020303fba14a0936bc8f0dd6d6dc1c7996b07a9a157989e6eacce24722eb7ac25692c69411e0bb24ea3ef00b4f2919e9ebff113c23f03827716" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/route-parser@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/route-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/routie@0.3.29", + "group": "@types", + "name": "routie", + "version": "0.3.29", + "description": "TypeScript definitions for routie", + "hashes": [ + { + "alg": "SHA-512", + "content": "45c7a6c57bb075040562c50dac39a20c8d6e481f674a1b312d67403d3d00a81f45e09acfd03e0bbfd69d25a64a9a45400580b903cf475f9c086ad998ef5b154e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/routie@0.3.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/routie" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/royalslider@9.4.32", + "group": "@types", + "name": "royalslider", + "version": "9.4.32", + "description": "TypeScript definitions for jQuery royal-slider", + "hashes": [ + { + "alg": "SHA-512", + "content": "49f1a6e5b1d6783264bcefcd94df50006ffd852a6d059e73cf9a5ba58681b6682f1e1f0c283f164659ec1761e1829f063390e5fc55064a46157a91be28f68ee3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/royalslider@9.4.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/royalslider" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rpio@0.0.2", + "group": "@types", + "name": "rpio", + "version": "0.0.2", + "description": "TypeScript definitions for node-rpio", + "hashes": [ + { + "alg": "SHA-512", + "content": "566ef7b29745ef50f7d4ace75dab694febf932745fab5fd8655f4aae134616d29dff8908abfc051951579b910db187532e80e6148ca61e81a71922429cfa6451" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rpio@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rrc@0.10.9", + "group": "@types", + "name": "rrc", + "version": "0.10.9", + "description": "TypeScript definitions for rrc", + "hashes": [ + { + "alg": "SHA-512", + "content": "31ca11ff4b06fb8023bf19bc82ccb4d5ea3259d441b859324840f46e7cc7cf8e68ac0428c01abade4750bdf6af1c4fa19ab8d0d15793577812c9a372742cb839" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rrc@0.10.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rrc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rsmq@0.3.27", + "author": "Qubo", + "group": "@types", + "name": "rsmq", + "version": "0.3.27", + "description": "TypeScript definitions for rsmq 0.3.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e757c7cbfae10f0f545da2932993cf9dc481cbb6f57afc5b15d5f6241fc35bf5bbe1443201e0230d3e3a4e30ca04a9f1077d8408f78fe921ff0fdddbfb2193e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/rsmq@0.3.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rsmq-worker@0.3.30", + "group": "@types", + "name": "rsmq-worker", + "version": "0.3.30", + "description": "TypeScript definitions for rsmq-worker", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e9542633a9a066012ec556e3532a422eafd690ec5074c62020ad01018742669aff93d6112b5b69bfe0ad0ee7718f38c600facb608a1b81650c62b39c78d8f4d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rsmq-worker@0.3.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rsmq-worker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rss@0.0.28", + "group": "@types", + "name": "rss", + "version": "0.0.28", + "description": "TypeScript definitions for rss", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b299dd01235b41392c0ec0237963c76d9497a04c817e8b34bcb491138a2bc9eea009187867b998e2ba75d6a81920bfa760d19656c9fd2411f32092be18589ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rss@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rsvp@4.0.4", + "group": "@types", + "name": "rsvp", + "version": "4.0.4", + "description": "TypeScript definitions for RSVP", + "hashes": [ + { + "alg": "SHA-512", + "content": "2773a5fbe1c20bbfe1c1985a9c3be0805614fc6b711f113f7bb706456c51d38045ed3b774ea259f38064cd0803c665f4baef086a08b27e67e85250400a1d8896" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rsvp@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rsvp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rsync@0.4.32", + "group": "@types", + "name": "rsync", + "version": "0.4.32", + "description": "TypeScript definitions for node-rsync", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f628cfbda3d0c9b8fb7a67f590f23fa4876a8c59419b716b61769c083b83d6987a99f5860f32c4cffcde472905a256f93de8984aa188cd3cfad81291e54dd4d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rsync@0.4.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rsync" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rtree@1.4.28", + "group": "@types", + "name": "rtree", + "version": "1.4.28", + "description": "TypeScript definitions for rtree", + "hashes": [ + { + "alg": "SHA-512", + "content": "8751225b64bd9fdf28ea29c51b6a597224fd69824dd71ca2823ca33d54cfba46ea59219e34ec8762db8f0a1b8850141f2c246c7cc70dbf353988e12448509645" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rtree@1.4.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rtree" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/run-parallel@1.1.0", + "group": "@types", + "name": "run-parallel", + "version": "1.1.0", + "description": "TypeScript definitions for run-parallel", + "hashes": [ + { + "alg": "SHA-512", + "content": "3eafe03163ff9903b77d0210eca5dee582aeca1c5c525dc0aeb22861449a0a6a1e2e57ed8f0368b43db831d92924fc18f2fbc4ab8be70b4ad55f04f9af2dd196" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/run-parallel@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/run-parallel-limit@1.0.0", + "group": "@types", + "name": "run-parallel-limit", + "version": "1.0.0", + "description": "TypeScript definitions for run-parallel-limit", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f78a053c068928dbfaa74e5e3b02173801caf3429ff49df892cba724bb7ebd3169a6cc83160d101848ee30e8701949b1e572a1b917e242e9e834d42efbb1f54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/run-parallel-limit@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/run-sequence@0.0.30", + "group": "@types", + "name": "run-sequence", + "version": "0.0.30", + "description": "TypeScript definitions for run-sequence", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f01abd5be320865082ca78193399e59cc66187434bc5145a40e83eb2d722ceea02a6628ac5f8f1ea754e4a1be9d6b77f0ebedae40e9b66ad29a51d7fd7b692f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/run-sequence@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/gulp@4.0.9", + "group": "@types", + "name": "gulp", + "version": "4.0.9", + "description": "TypeScript definitions for Gulp", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf34fec1f43cbb0a178c38512bd6649a6934f7f7db2cb98dff20c7162cc9884288bdef39aaeb4e9d770ffd3336b0a3c14d4f89735eaf7cf6ce32439131404ded" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/gulp@4.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/undertaker@1.2.8", + "group": "@types", + "name": "undertaker", + "version": "1.2.8", + "description": "TypeScript definitions for undertaker", + "hashes": [ + { + "alg": "SHA-512", + "content": "816dcf46a087629a38e571501c9061721ecbea1cad3ec21ed1078bba396716c8c73e75cb84970f74de9af77ebc77b6884201f623f7544cf141946792340dea3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/undertaker@1.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/undertaker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/undertaker-registry@1.0.1", + "group": "@types", + "name": "undertaker-registry", + "version": "1.0.1", + "description": "TypeScript definitions for undertaker-registry", + "hashes": [ + { + "alg": "SHA-512", + "content": "6784d8b842a7f7e45b3559352e5d924b8c7525e2c779ca2521b33f6bc82f79a1ec5b41ebf9140cada6400b04ced950fb26f7a9800e943b503556b6e4b50ac86d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/undertaker-registry@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-done@1.3.2", + "author": "Gulp Team", + "name": "async-done", + "version": "1.3.2", + "description": "Allows libraries to handle various caller provided asynchronous functions uniformly. Maps promises, observables, child processes and streams, and callbacks to callback style.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b989133fc770da8835b6ed679b36b59f508c5b4a9bf20596970a8c98b6fb321055b38057ac5ce24fa1d751dfbf465440fe2e07f409287d896851bb357f032a97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Blaine Bublitz, Eric Schoffstall and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async-done@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/async-done#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/async-done/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/async-done.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stream-exhaust@1.0.2", + "author": "Chris Dickinson", + "name": "stream-exhaust", + "version": "1.0.2", + "description": "Ensure that a stream is flowing data without mutating it", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ffa9aabf1a504ae716aad72acaf7fcc57324524cdc66719c052c64931b499781997fe19e86822c983973af63b377784bc54401b56e40d1cf910f192bcf61097" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/stream-exhaust@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chrisdickinson/stream-exhaust.git" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chrisdickinson/stream-exhaust.git" + }, + { + "type": "vcs", + "url": "git+https://github.com/chrisdickinson/stream-exhaust.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/vinyl-fs@2.4.12", + "group": "@types", + "name": "vinyl-fs", + "version": "2.4.12", + "description": "TypeScript definitions for vinyl-fs", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e00696085aeb86b22867945f8e3965b3e28bf0098953d3781ddc3b8bc1ec79d1c6192e65f7cab5beb0517d9ddb6687bcdc6694ba462e3b3eb22ef9f57eb1b5f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/vinyl-fs@2.4.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vinyl-fs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/glob-stream@6.1.1", + "group": "@types", + "name": "glob-stream", + "version": "6.1.1", + "description": "TypeScript definitions for glob-stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "0063944ec4dd6cf9114b4a837b2792fba2b2a667d5a5b4f98f6dd237c50f1badea8ca5cd2a35e7e95f70654afc1629f49bd97ca0661a3caf1bd9650c17cc48d4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/glob-stream@6.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/glob-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/vinyl@2.0.6", + "group": "@types", + "name": "vinyl", + "version": "2.0.6", + "description": "TypeScript definitions for vinyl", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b227488e0833479caa4a4e0046e90e893a71d38fdcc5b5afb78f66fc123cdad1ee1cbd1c8c9f46682c499b3eb4c77b96184650d83ef3d655d578713691c87ee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/vinyl@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/vinyl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/expect@1.20.4", + "group": "@types", + "name": "expect", + "version": "1.20.4", + "description": "TypeScript definitions for Expect", + "hashes": [ + { + "alg": "SHA-512", + "content": "439567df28d30f208c579d1307a55121b40dc521383a6651f3a5526c668da5f528966d2278f041e0a7441079b1a18e6c4f6fb60c8bd75b4aef3033f69c767832" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/expect@1.20.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/runes@0.4.1", + "group": "@types", + "name": "runes", + "version": "0.4.1", + "description": "TypeScript definitions for runes", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1bdaa10f46bfc15ca075c71ed2e4ecdb9d99aa20644faf0d128c12589cb03e9790c41a6cb0eef7855d0d02928fe0a2d0d307ec86a6c64e0242c35994f2268eb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/runes@0.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rwlock@5.0.3", + "group": "@types", + "name": "rwlock", + "version": "5.0.3", + "description": "TypeScript definitions for RWLock", + "hashes": [ + { + "alg": "SHA-512", + "content": "477d2833ef9a549d0b72fe291cf4c9595f07be290d0eba036cbc68457f5de69886ca167344010d5d304832d71e58a7279ac70a7c04a4d5883a1abf7e5f909307" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rwlock@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rwlock" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rword@2.2.0", + "group": "@types", + "name": "rword", + "version": "2.2.0", + "description": "TypeScript definitions for rword", + "hashes": [ + { + "alg": "SHA-512", + "content": "15a7f34a750ccff4e1e5335f87d7f19d99e7be254c2c7c4470d542cf75cffef707213c000c2215935f6199944eafcbf1e3d73ecb496d9d1b2c2af8265aed981d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rword@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx@4.1.2", + "group": "@types", + "name": "rx", + "version": "4.1.2", + "description": "TypeScript definitions for rx", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6bf19693dba36282aee8e1404697e69707650c15421d2cf3fff1b2c83f4c77774a592f8eb26ca2a385629a25058890b9794022c3d272b7a9338ed5093074568" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx@4.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-core@4.0.3", + "group": "@types", + "name": "rx-core", + "version": "4.0.3", + "description": "TypeScript definitions for rx-core", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ea3daa79ee1862a62f30860bd84853848fb994cf606921352c4bfbe459eca1119d3a5e8130daa4904af8118289715e7f21be92a3f9864322fa1b246e49140c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/rx-core@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-core-binding@4.0.4", + "group": "@types", + "name": "rx-core-binding", + "version": "4.0.4", + "description": "TypeScript definitions for rx-core-binding", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6991fc670b8c3cd742ea04f5303f96e0ed2151fd44b084c49a01e65041b107781a79ee98ca5d19579aaa4cacb241e32d6882547f736e74dbce77b8dd08f8301" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-core-binding@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite@4.0.6", + "group": "@types", + "name": "rx-lite", + "version": "4.0.6", + "description": "TypeScript definitions for rx-lite", + "hashes": [ + { + "alg": "SHA-512", + "content": "a18883ac521ca2bf730e6d150d471ad546d13a231807130b31a33aab3cf800301f3a603daf575811c0051fed9fb0f2390420a33ef57da560b75f77e56ebbecef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite@4.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-aggregates@4.0.3", + "group": "@types", + "name": "rx-lite-aggregates", + "version": "4.0.3", + "description": "TypeScript definitions for rx-lite-aggregates", + "hashes": [ + { + "alg": "SHA-512", + "content": "300183007cbc7116ad9bde050ddba1245fa2352e7ffe3ad9fcf21f9be418c3d38278381bca61470a133c61522f376cc0af0b117ed2a0137dd07d15af424e033e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-aggregates@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-async@4.0.2", + "group": "@types", + "name": "rx-lite-async", + "version": "4.0.2", + "description": "TypeScript definitions for rx-lite-async", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd312fe68f25ebbd366707c033968e7950df5300520ceb3e011a0699600a43a2ce22743c278ff38ccee8bf5d9fb93a64b5429d3108e4782a74ed577bde63e4c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-async@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-backpressure@4.0.3", + "group": "@types", + "name": "rx-lite-backpressure", + "version": "4.0.3", + "description": "TypeScript definitions for rx-lite-backpressure", + "hashes": [ + { + "alg": "SHA-512", + "content": "63a6887900ad35b6a7e5748017807c75f7e120abba680cbf4d716549c1f34b187a8af7d0050c3a523c72109c483addc84f8f58912fac8ae6b23361ff43472680" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-backpressure@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-coincidence@4.0.3", + "group": "@types", + "name": "rx-lite-coincidence", + "version": "4.0.3", + "description": "TypeScript definitions for rx-lite-coincidence", + "hashes": [ + { + "alg": "SHA-512", + "content": "d55349ab313d8002d4c8c1b2a435d9657cd1d13b7b2c2f43740650dcebbf43432e6cd537e5a81550d5ca1872a93536daf9fafc19d21d902dba6d10eab4240179" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-coincidence@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-experimental@4.0.1", + "group": "@types", + "name": "rx-lite-experimental", + "version": "4.0.1", + "description": "TypeScript definitions for rx-lite-experimental", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7274edc77bfb56337a2b5429405ab72acaa7541463d20fc37ad3a7821ed2407ac499a48eaf2037a563708d878f3ab21e2f1c0eb9c85b20ba0fceb3289c345a6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-experimental@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-joinpatterns@4.0.1", + "group": "@types", + "name": "rx-lite-joinpatterns", + "version": "4.0.1", + "description": "TypeScript definitions for rx-lite-joinpatterns", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfb49828e2f7d87ede2bd57fcf751765a6d89414a641b788ae9182335522370cf10d58d8574356f7d99853935619ddb1d8e700b6f26f0bf3d410d3ec5585b251" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-joinpatterns@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-testing@4.0.1", + "group": "@types", + "name": "rx-lite-testing", + "version": "4.0.1", + "description": "TypeScript definitions for rx-lite-testing", + "hashes": [ + { + "alg": "SHA-512", + "content": "91df8edac717fa653f2a448e9c9a3ee06b8f8e42154ef3ac0dbbf47e31904534fca0f7a9b47c606023b1b5f55e3f0182e8799e5267234ce5984015051d1876e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-testing@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-virtualtime@4.0.3", + "group": "@types", + "name": "rx-lite-virtualtime", + "version": "4.0.3", + "description": "TypeScript definitions for rx-lite-virtualtime", + "hashes": [ + { + "alg": "SHA-512", + "content": "dee0bab069a3a4e29ab594951c8db1075f9d79d82697aebd651beac72f96aa61890d5bac39dcb170a7f2ce35b43f7fc6ac288de2799190b54c84fc0709ce502e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-virtualtime@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-lite-time@4.0.3", + "group": "@types", + "name": "rx-lite-time", + "version": "4.0.3", + "description": "TypeScript definitions for rx-lite-time", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba43b9b0f283470086591651a8f95a014d12295c665b04a388eacb868403a16c595a0eafc81f572c465588a3b320ee8b9d3210065938532958574ae78492f143" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-lite-time@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-angular@0.0.30", + "group": "@types", + "name": "rx-angular", + "version": "0.0.30", + "description": "TypeScript definitions for angularjs extensions to rxjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb0735e2976790a0eb186ef21cd3cf29e02696b14cfd35d6371429102a11bebbbe46357e2eee6a7c631bbbeeb3c4801900decd7d84ef9afda213b55ec5389a89" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-angular@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-dom@7.0.3", + "group": "@types", + "name": "rx-dom", + "version": "7.0.3", + "description": "TypeScript definitions for RxJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "42061dce5bdef3bf57828f8fb9f85809f8f71585935507110659505b2f8a916aad0edd2ddc62fda2ba2de5b27dd7afcac77ab55403236f08fdb5769f2f2d5512" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-dom@7.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rx-dom" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-jquery@0.0.28", + "group": "@types", + "name": "rx-jquery", + "version": "0.0.28", + "description": "TypeScript definitions for RxJS-jQuery", + "hashes": [ + { + "alg": "SHA-512", + "content": "1640e31c18012f445d12e811f7786d3b7c0e5166dc77be6720e13c9d5ed018f0210ada511a91952ae7825e4b2c47d0fab6084a2daadb8d047e4a5ef17f727bd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx-jquery@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx-node@0.0.5", + "author": "Andre Luiz dos Santos", + "group": "@types", + "name": "rx-node", + "version": "0.0.5", + "description": "TypeScript definitions for RxJS bindings for Node", + "hashes": [ + { + "alg": "SHA-512", + "content": "81cbca9c57dbd0c94456c9a84d5b30e7c776a7687eb11e22220443bf8293f685a7d1161a9337667a22b7479b70740c70992042dfecdff3df0b7e2408c98886ad" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/rx-node@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/rx.wamp@0.5.6", + "group": "@types", + "name": "rx.wamp", + "version": "0.5.6", + "description": "TypeScript definitions for rx.wamp", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1d8c6dc1f8cd09728108f2fa66ebe32b2048a79c96e038e6ecee2c99dc8b8e6712365f19b406f32a3a5a1b6a4f63ef6c949da967dc16f83b6c815e835efd79b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/rx.wamp@0.5.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rx.wamp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/autobahn@20.9.1", + "group": "@types", + "name": "autobahn", + "version": "20.9.1", + "description": "TypeScript definitions for AutobahnJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "e45f464054bfb707b5e42fdbfbf469363e0f1f24ec7d6d3b8241c07c5ef0eac4f8e3094f3af80805f55dd313c0bb0d48779eeaef59ae49f11a874f1136265e35" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/autobahn@20.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/autobahn" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/s3-download-stream@0.1.2", + "group": "@types", + "name": "s3-download-stream", + "version": "0.1.2", + "description": "TypeScript definitions for s3-download-stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "12aefcb27ccca1fec0c25123b1896361003f40ce4f12d43a4cf2dc8d07d95cd02a9c341a0bd4cc2db9ce21437ada6001aa091203db91d5b9690b469c57390899" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/s3-download-stream@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/s3-download-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aws-sdk@2.1185.0", + "author": "Amazon Web Services", + "name": "aws-sdk", + "version": "2.1185.0", + "description": "AWS SDK for JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "be2165602e9100a3aa051338808078ac4f3428c14d56f124429366a5ddcfa8239e9863c44c3c425474b4a2a676eaa336efcb19547b7ea008cfcb91e665ab2c92" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/txt", + "content": "AWS SDK for JavaScript\nCopyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.\n\nThis product includes software developed at\nAmazon Web Services, Inc. (http://aws.amazon.com/).\n" + } + } + } + ], + "purl": "pkg:npm/aws-sdk@2.1185.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/aws/aws-sdk-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aws/aws-sdk-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/aws/aws-sdk-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/jmespath@0.16.0", + "author": "James Saryerwinnie", + "name": "jmespath", + "version": "0.16.0", + "description": "JMESPath implementation in javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "f45cd08c9ecc013b35b52a67728d4ae9aca2604ddf8a0b25ad703bd86d8743f9fbe91cef625a1fca2e5033e897e1846cfe9bb7cb3c655504924f6dfe74c0e49f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "Copyright 2014 James Saryerwinnie\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/jmespath@0.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jmespath/jmespath.js" + }, + { + "type": "issue-tracker", + "url": "http://github.com/jmespath/jmespath.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/jmespath/jmespath.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sax@1.2.1", + "author": "Isaac Z. Schlueter", + "name": "sax", + "version": "1.2.1", + "description": "An evented streaming XML parser in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a543bfd4e900d523166d0df2e3391b12f7e9480a8bdfdab59c3ec7b6059d0f1c9301462ab978c57e325adadecb75099b99cfd6451b9d880ba29a963524615b" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "The ISC License\n\nCopyright (c) Isaac Z. Schlueter and Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR\nIN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n====\n\n`String.fromCodePoint` by Mathias Bynens used according to terms of MIT\nLicense, as follows:\n\n Copyright Mathias Bynens \n\n Permission is hereby granted, free of charge, to any person obtaining\n a copy of this software and associated documentation files (the\n \"Software\"), to deal in the Software without restriction, including\n without limitation the rights to use, copy, modify, merge, publish,\n distribute, sublicense, and/or sell copies of the Software, and to\n permit persons to whom the Software is furnished to do so, subject to\n the following conditions:\n\n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sax@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/isaacs/sax-js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/isaacs/sax-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/isaacs/sax-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url@0.10.3", + "name": "url", + "version": "0.10.3", + "description": "The core `url` packaged standalone for use with Browserify.", + "hashes": [ + { + "alg": "SHA-512", + "content": "91b6a29496b6f50aed5e7c60abe0dd0841a56d3798336789531b33eaf8d96afac260f30814730a42648a60022e50ada2ee180f9b6f1af29897e4d4d4b4cfcb29" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/url@0.10.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/defunctzombie/node-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/defunctzombie/node-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/defunctzombie/node-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/util@0.12.4", + "author": "Joyent", + "name": "util", + "version": "0.12.4", + "description": "Node.js's util module for all engines", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0f9bd853437b1ee659755e285189cdc50c892eef40be88751d4ff5bddbaad28075794205ec61b29937c3120b7b49b52921b913b3bec42301a1443515ebfb5f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright Joyent, Inc. and other Node contributors. All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/util@0.12.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/node-util" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/node-util/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/node-util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-generator-function@1.0.10", + "author": "Jordan Harband", + "name": "is-generator-function", + "version": "1.0.10", + "description": "Determine if a function is a native generator function.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ec123cbd977ca25c443e3ec5dd981c043dc3b169758bb2929da65154548f6fab58998087a4782d0bd7aeea7aef3a73341ac5e777abf533bb0d2cc0bd22acbf0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-generator-function@1.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-generator-function#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-generator-function/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-generator-function.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-typed-array@1.1.9", + "author": "Jordan Harband", + "name": "is-typed-array", + "version": "1.1.9", + "description": "Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "91fae59d34e7f296647e924c520603ed8677ab3789816527f177d5601011738c2798d3a62db9aeb9a02cdeae5fbc1d1424e9fac8700a6864cf33b77a7b3a03fc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/is-typed-array@1.1.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/is-typed-array#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/is-typed-array/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/is-typed-array.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/available-typed-arrays@1.0.5", + "author": "Jordan Harband", + "name": "available-typed-arrays", + "version": "1.0.5", + "description": "Returns an array of Typed Array names that are available in the current environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cc0f42a2378e9e8a97b38924f52cf3ff4937c3534b2e7c84979a34a0bd5b28536b6ac5cb5078049e8d671f36dc582aa11333553143cb29d8ead2056a4763ab3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2020 Inspect JS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/available-typed-arrays@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/available-typed-arrays#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/available-typed-arrays/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/inspect-js/available-typed-arrays.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/for-each@0.3.3", + "author": "Raynos", + "name": "for-each", + "version": "0.3.3", + "description": "A better forEach", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ea61f2e9ee6a3dbc8c907fcca45b6bfb03ed8de108de09e239f83cfd5eb6a23b58a09fcd708e21fb15bf6f48e5af41f36d9926b81f6468413aeb5e2bdd5199b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2012 Raynos.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/for-each@0.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Raynos/for-each" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Raynos/for-each/issues" + }, + { + "type": "vcs", + "url": "git://github.com/Raynos/for-each.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/which-typed-array@1.1.8", + "author": "Jordan Harband", + "name": "which-typed-array", + "version": "1.1.8", + "description": "Which kind of Typed Array is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.", + "hashes": [ + { + "alg": "SHA-512", + "content": "267e1ee4f22d6dc007c8ba110f0bcf8f5ca9bb6ec325bb5d61751ae73b229eb531efb52f7dbd1c5f0c2718c4e7edc8d47e186a8154275490b017eedc814eeda7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Jordan Harband\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/which-typed-array@1.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/inspect-js/which-typed-array#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/inspect-js/which-typed-array/issues" + }, + { + "type": "vcs", + "url": "git://github.com/inspect-js/which-typed-array.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uuid@8.0.0", + "name": "uuid", + "version": "8.0.0", + "description": "RFC4122 (v1, v4, and v5) UUIDs", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3483470ea0644e4932081cb4705c8d56a4d3cf8a1158522220f31674fd4bd69e826a7ce52fdb45e0554dbe104c5691369b49f64b9868d8676cd10e91b29bfc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2010-2020 Robert Kieffer and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/uuid@8.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/uuidjs/uuid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/uuidjs/uuid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/uuidjs/uuid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/s3-upload-stream@1.0.3", + "group": "@types", + "name": "s3-upload-stream", + "version": "1.0.3", + "description": "TypeScript definitions for s3-upload-stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "f134b693bd01f085a54e69bd39f4ed41446f77c51d52ef99a55dc6e1a2f108fda4b4824320f32bbd64bb09e4ef532ec5bcdba54b3ac31c2320d9b7c5f38634c8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/s3-upload-stream@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/s3-upload-stream" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/s3-uploader@0.0.28", + "group": "@types", + "name": "s3-uploader", + "version": "0.0.28", + "description": "TypeScript definitions for s3-uploader", + "hashes": [ + { + "alg": "SHA-512", + "content": "155bc594d1af746c342d0d10ad1c60d12f9b2ccfa2fc95d9714819d1d29fceafd9db6ea10711d5499628eff28e72323572fda3e47ac0b966d25c2399373027d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/s3-uploader@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/s3rver@0.0.30", + "group": "@types", + "name": "s3rver", + "version": "0.0.30", + "description": "TypeScript definitions for S3rver", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc910c40a49e9beeb6317a4f6551e8a8b043e0277172cb69f355c928583acfca72cd33eb1926cb5fb34a97dc5a507695b22fa9d13dfde9f4329420272b867084" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/s3rver@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/safari-extension@0.0.27", + "author": "Luuk", + "group": "@types", + "name": "safari-extension", + "version": "0.0.27", + "description": "TypeScript definitions for Safari extension development", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a44716c16954de12d79b854e7802119666e78fe3bd36e8946052d9ac7129e75e6975e58003d8720199ecf5e49a06c1becf9a96d8898ca67ed986cc7a6b05a15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/safari-extension@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/safari-extension-content@0.0.14", + "author": "Luuk", + "group": "@types", + "name": "safari-extension-content", + "version": "0.0.14", + "description": "TypeScript definitions for Safari extension development (content-scripts)", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc8a2b04324636d135170bc2a7be1e9c8084f02ccd7a05d247080f4866cc8a5ef34d0f5648423efe7140f1eedad43eb61404dca525e0dc0771e075acf12a947d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/safari-extension-content@0.0.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/safe-compare@1.1.0", + "group": "@types", + "name": "safe-compare", + "version": "1.1.0", + "description": "TypeScript definitions for safe-compare", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6b8be2c9861d2047121adfb2291b2b5d696ef20c41de26788148c0f50668ad4b4ed1d63eb76eb7180b3af2fa5d1626f19d10a40d43b0d85ced9ea606e8ad63f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/safe-compare@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/safe-json-stringify@1.1.2", + "group": "@types", + "name": "safe-json-stringify", + "version": "1.1.2", + "description": "TypeScript definitions for safe-json-stringify", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e3fcb64c057147dd08fdb0d98dbbab32069919a8168cd341e03fb9da7fd0a766107791dc66ade9d6503d9c63abef4d68ee04cdcd3ce2e49cf28350e42e4d65c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/safe-json-stringify@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/safe-regex@1.1.3", + "group": "@types", + "name": "safe-regex", + "version": "1.1.3", + "description": "TypeScript definitions for safe-regex", + "hashes": [ + { + "alg": "SHA-512", + "content": "37b482a61d88f3635cf52ed54465172be74a9f4b0e6010f646772b015dcfb265f157ae58273e7fbc2f4239f44066745b82247364ecb9a7aef3e82710d0b3362f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/safe-regex@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/safe-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sails.io.js@1.0.6", + "group": "@types", + "name": "sails.io.js", + "version": "1.0.6", + "description": "TypeScript definitions for sails.io.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f18aa6007cdade833b5cd76304315ab474b2dbc83128ceaa4465a506c6d38f39f89efb26a4cf334d99bed36a57bb559d2a4c66d1ae2bdfd4476c444ef179f19" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sails.io.js@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sails.io.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/saml2-js@1.6.8", + "group": "@types", + "name": "saml2-js", + "version": "1.6.8", + "description": "TypeScript definitions for SAML2-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecd2cf2f9a26f870efa6cc3b8072cef8c7d974c0b3942b18d281396998bcb5f4464ee492de6b58935f4283b0b69f5bf4c876dbf6b9e414e84b2b18e541a1e17a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/saml2-js@1.6.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/saml20@0.1.1", + "group": "@types", + "name": "saml20", + "version": "0.1.1", + "description": "TypeScript definitions for saml20", + "hashes": [ + { + "alg": "SHA-512", + "content": "f84285dabc79435e2b49107b19e71089078e07de9f2a78c6108252dbfa799af1134fe536b4e721de6f811712225e7b37d006f3cc9b52998fc70387c478649c0e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/saml20@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/saml20" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/samlp@1.0.8", + "group": "@types", + "name": "samlp", + "version": "1.0.8", + "description": "TypeScript definitions for SAMLP", + "hashes": [ + { + "alg": "SHA-512", + "content": "a36c49fc37943b8fdc23327134fbdb786e0b07c47dd3916f435d703f1a799556505f02084031026f0f5e2ac6a98d08683596db565c06a04252281f0c0bf7fd3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/samlp@1.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/samlp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/passport@1.0.9", + "group": "@types", + "name": "passport", + "version": "1.0.9", + "description": "TypeScript definitions for Passport", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7e8a5cd486665047824fe3d19d0b63b851d0c4dcf38f2f0a666930bf88b916ee5d136425cea35cec4e79e55cfabaacfd54b1464f7db015e0851d8b0897c82ee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/passport@1.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/passport" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sammy@0.0.20", + "group": "@types", + "name": "sammy", + "version": "0.0.20", + "description": "TypeScript definitions for Sammy.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "22f030cf996cf516cd2bce749f08e4cf1e2de23bb75e70b830a418061c3b2268789645f00a4e411350c0a05767a961873d9c5c4f785641a48b80b4af64a28ce9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sammy@0.0.20", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sanctuary@0.14.2", + "group": "@types", + "name": "sanctuary", + "version": "0.14.2", + "description": "TypeScript definitions for sanctuary", + "hashes": [ + { + "alg": "SHA-512", + "content": "16f815636c97180623e4fa9f571343edd793018ca68fcae72267e8fcb0a507fd5d20ba63862080e164451aad41e30531bd8cd89955a2a36acb37f08be2e04481" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sanctuary@0.14.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sandboxed-module@2.0.30", + "group": "@types", + "name": "sandboxed-module", + "version": "2.0.30", + "description": "TypeScript definitions for sandboxed-module", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1fb1e06bb27c5ded92a54920cfa1313b02162a8fe2b3df081cdf4bbc420d1e3562e7d855ef85400d7e45d8f70af73dc500cf21b608309503386cd3cd0ed35c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sandboxed-module@2.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sandboxed-module" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sane@2.0.1", + "group": "@types", + "name": "sane", + "version": "2.0.1", + "description": "TypeScript definitions for sane", + "hashes": [ + { + "alg": "SHA-512", + "content": "b319db4b5e92b8bb67728aa6195d3eb8a33de67c77106e83c6bd08f59bc6855108dcc592489c66798c1f65b8b9cf0f60a8904ee66d58ce39a36a41a68a13cb98" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sane@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sane" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sanitize-filename@1.6.3", + "group": "@types", + "name": "sanitize-filename", + "version": "1.6.3", + "description": "Stub TypeScript definitions entry for sanitize-filename, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5d015f156bb2ac897340b2d576266178091546dc5b3297e567070f3b0bd70231c71e9293aa2417b34bb3149c760f0a134015e7b559a93005775f9fb409c7356" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sanitize-filename@1.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/parshap/node-sanitize-filename#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/parshap/node-sanitize-filename/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/parshap/node-sanitize-filename.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sanitize-filename@1.6.3", + "author": "Parsha Pourkhomami", + "name": "sanitize-filename", + "version": "1.6.3", + "description": "Sanitize a string for use as a filename", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbfe7631ccbb6b0de0466ec8adc183171fdb0a4e00851876788f65b8739033cea766cab0891924ab619e9075c1043f9298f89d73c8b63eab58665fa9589f0e7a" + } + ], + "licenses": [ + { + "license": { + "name": "WTFPL OR ISC", + "text": { + "contentType": "text/markdown", + "content": "This project is licensed under the [WTFPL][] and [ISC][] licenses.\n\n[WTFPL]: https://en.wikipedia.org/wiki/WTFPL\n[ISC]: https://opensource.org/licenses/ISC\n\n## WTFPL\n\nDO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE\nVersion 2, December 2004\n\nCopyright (C) 2004 Sam Hocevar \\\n\nEveryone is permitted to copy and distribute verbatim or modified copies\nof this license document, and changing it is allowed as long as the name\nis changed.\n\nDO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR\nCOPYING, DISTRIBUTION AND MODIFICATION\n\n0. You just DO WHAT THE FUCK YOU WANT TO.\n\n## ISC\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sanitize-filename@1.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/parshap/node-sanitize-filename#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/parshap/node-sanitize-filename/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/parshap/node-sanitize-filename.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/truncate-utf8-bytes@1.0.2", + "author": "Carl Xiong", + "name": "truncate-utf8-bytes", + "version": "1.0.2", + "description": "Truncate string to given length in bytes", + "hashes": [ + { + "alg": "SHA-512", + "content": "f793eed505d0bebb86121bfad9708c3b7326f741ac70e08296fac853008cd0f60e5cade4685de5dec207c71ef54e125f71b3363b902ee923b701609211f5b899" + } + ], + "licenses": [ + { + "license": { + "id": "WTFPL" + } + } + ], + "purl": "pkg:npm/truncate-utf8-bytes@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/parshap/truncate-utf8-bytes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/parshap/truncate-utf8-bytes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/parshap/truncate-utf8-bytes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/utf8-byte-length@1.0.4", + "author": "Carl Xiong", + "name": "utf8-byte-length", + "version": "1.0.4", + "description": "Get utf8 byte length of string", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3ec241182c16d6c6a4da844b16ae1c5ea5ca15389fb5cf93c62233d9c51932b5c75251a36322304ced79fc13ea5d4ae57b4b3bd6a2f045039e053b4252a2a84" + } + ], + "licenses": [ + { + "license": { + "id": "WTFPL" + } + } + ], + "purl": "pkg:npm/utf8-byte-length@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/parshap/utf8-byte-length#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/parshap/utf8-byte-length/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/parshap/utf8-byte-length.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sanitize-html@1.27.2", + "group": "@types", + "name": "sanitize-html", + "version": "1.27.2", + "description": "TypeScript definitions for sanitize-html", + "hashes": [ + { + "alg": "SHA-512", + "content": "0eb1f6ea6ec257a3c1e1855c9236d2231fb196807b1c1a25afd0ad9b481905f7d2bb9743578c892854063eab899517955bec66839f60c7e6fff3fa981f1644bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sanitize-html@1.27.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@4.1.0", + "author": "Felix Boehm", + "name": "htmlparser2", + "version": "4.1.0", + "description": "Fast & forgiving HTML/XML/RSS parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "22089e3628d431b903a2fca828e6d4d435219b58b035813f7ee89f1281077ddd6864a64368e3414a46a5ed8d35b21c6c338f51e1768c7467b3dd69c5f547e209" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2010, 2011, Chris Winberry . All rights reserved.\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n \nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/htmlparser2@4.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/htmlparser2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/htmlparser2/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/htmlparser2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/domhandler@3.3.0", + "author": "Felix Boehm", + "name": "domhandler", + "version": "3.3.0", + "description": "Handler for htmlparser2 that turns pages into a dom", + "hashes": [ + { + "alg": "SHA-512", + "content": "2622b4e21d07b79bbff347dd2cc084995e3390d87605ca0c141999ffdd56b5867ca955d22a38b0edf5cc8053e71dc49980ea375dd8a71ef9a70d478c7f9478c0" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright (c) Felix Böhm\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS,\nEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/domhandler@3.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/fb55/domhandler#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/fb55/domhandler/issues" + }, + { + "type": "vcs", + "url": "git://github.com/fb55/domhandler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sanitizer@0.0.28", + "author": "Dave Taylor", + "group": "@types", + "name": "sanitizer", + "version": "0.0.28", + "description": "TypeScript definitions for Sanitizer", + "hashes": [ + { + "alg": "SHA-512", + "content": "598ae599614c0a0b181d2f6e8ae925c902fa2d98d42dbb3080ebe70e0fe17939f74549869b8d290056d3e24af7acb62de2d54314c4c078ff85380d3b3eb9644b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/sanitizer@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sap__xsenv@1.2.2", + "group": "@types", + "name": "sap__xsenv", + "version": "1.2.2", + "description": "TypeScript definitions for non-npm package @sap/xsenv", + "hashes": [ + { + "alg": "SHA-512", + "content": "68e0b5381830c2be9402b6cca7fa3d2056ca60e1ef45c10beeedf5a9b40f83b9c84f059713615af770d25a23043fc7c1177bb5ffbe96c4174db25021d0c4e5f3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sap__xsenv@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sass-graph@2.1.3", + "group": "@types", + "name": "sass-graph", + "version": "2.1.3", + "description": "TypeScript definitions for sass-graph", + "hashes": [ + { + "alg": "SHA-512", + "content": "12e88d1170a55827c026769d86aaef03f85e48cb7cbd6499fd6d34a9d6773526094e46ce9cccfa0f7a0c6d19b1941696a2e557818e65d6843b52fa6ea873863b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sass-graph@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sass-graph" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sass-webpack-plugin@1.0.2", + "group": "@types", + "name": "sass-webpack-plugin", + "version": "1.0.2", + "description": "Stub TypeScript definitions entry for sass-webpack-plugin, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "28445bae4aca030ad8bcbc18d6083da942fe40c25fada69a8c422b8eb437c08fc7f397faae983b44b20f10433ee796a19f6e05200beb35f9ec1df8589b31180e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sass-webpack-plugin@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jalkoby/sass-webpack-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jalkoby/sass-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jalkoby/sass-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/sass-webpack-plugin@1.0.3", + "author": "Sergey Pchelintsev", + "name": "sass-webpack-plugin", + "version": "1.0.3", + "description": "Get your stylesheets together", + "hashes": [ + { + "alg": "SHA-512", + "content": "2da9a4fb2157e4061847c2a237dff5be841d8d965bb4046c0ff29f26d29fbeb6cfc29aad812f4357d2a231a07bafd3638f8fe68d6da7d9b66992af205b82fe16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017 Sergey Pchelintsev\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/sass-webpack-plugin@1.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jalkoby/sass-webpack-plugin#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jalkoby/sass-webpack-plugin/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/jalkoby/sass-webpack-plugin.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/autoprefixer@10.4.8", + "author": "Andrey Sitnik", + "name": "autoprefixer", + "version": "10.4.8", + "description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website", + "hashes": [ + { + "alg": "SHA-512", + "content": "58a13123f7921a018091600efb031574539b655ee141e9f9e14a43d640824cddedbe52f75b58cbe3e94f3ff33b330a0fed0e111f32ad3b7250e07c5811c77ec5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/autoprefixer@10.4.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/postcss/autoprefixer#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/autoprefixer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/autoprefixer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserslist@4.21.3", + "author": "Andrey Sitnik", + "name": "browserslist", + "version": "4.21.3", + "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8725b9431366d7551633b837adbffc00787389c8ef7bfbdc310b571d0adcb380db92a333b24428a22da091d5fef500deba9507555418a95a6eb757e6bb6cf3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2014 Andrey Sitnik and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserslist@4.21.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserslist/browserslist#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserslist/browserslist/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/browserslist/browserslist.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/node-releases@2.0.6", + "author": "Sergey Rubanov", + "name": "node-releases", + "version": "2.0.6", + "description": "Node.js releases data", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e25579cdb859b9fa26242c135eab9db5d61bcedfccbadd3d22d8a2a1d8a9d4b37469cc9f89b4e0c58e40fcca32f09c3913605d5e29785e53076cb11f8d45976" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License\n\nCopyright (c) 2017 Sergey Rubanov (https://github.com/chicoxyzzy)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/node-releases@2.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chicoxyzzy/node-releases#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chicoxyzzy/node-releases/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chicoxyzzy/node-releases.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/update-browserslist-db@1.0.5", + "author": "Andrey Sitnik", + "name": "update-browserslist-db", + "version": "1.0.5", + "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config", + "hashes": [ + { + "alg": "SHA-512", + "content": "76d7851690b2bee0ddafd4bf7dfd484a42adffd619c4a8c8f5695147df5cd7cd066b3b49b516bf7e7d7c15dc4654a56c9cf63bfdafc50cdebc99cbd498fe14ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2022 Andrey Sitnik and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/update-browserslist-db@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserslist/update-db#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserslist/update-db/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/browserslist/update-db.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escalade@3.1.1", + "author": "Luke Edwards", + "name": "escalade", + "version": "3.1.1", + "description": "A tiny (183B to 210B) and fast utility to ascend parent directories", + "hashes": [ + { + "alg": "SHA-512", + "content": "9347abda05242dff0ed332898808669139c9953bc8346bfbca00cd3db788b17fd3263189647ba1f41d94c5bb1a1249a5128f4c7e1ad2ce68489614652361979f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Luke Edwards (lukeed.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/escalade@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/lukeed/escalade#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lukeed/escalade/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lukeed/escalade.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/picocolors@1.0.0", + "author": "Alexey Raspopov", + "name": "picocolors", + "version": "1.0.0", + "description": "The tiniest and the fastest library for terminal output formatting with ANSI colors", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5fca0ae84cb947bbaeb38b6e95a130eff324609b415c71e72cb2da3e321b19d03fc3196dac9bc13c0235bb354e5555346de46c5b799e6a06e26bf87c8b6248d" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2021 Alexey Raspopov, Kostiantyn Denysov, Anton Verinov\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/picocolors@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/alexeyraspopov/picocolors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/alexeyraspopov/picocolors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/alexeyraspopov/picocolors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fraction.js@4.2.0", + "author": "Robert Eisele", + "name": "fraction.js", + "version": "4.2.0", + "description": "A rational number library", + "hashes": [ + { + "alg": "SHA-512", + "content": "3212ee2beda051c9d97bc64795a68836740b974c5120645f706936ca5f31a1001f1eb4ac2f7ad8bba14298176475b85cf443e5c321877b0691b2fc11309b4094" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Robert Eisele\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fraction.js@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://www.xarg.org/2014/03/rational-numbers-in-javascript/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/infusion/Fraction.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/infusion/Fraction.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss-value-parser@4.2.0", + "author": "Bogdan Chadkin", + "name": "postcss-value-parser", + "version": "4.2.0", + "description": "Transforms css values and at-rule params into the tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "a48484eba01b564a787c343b54707044d5f30002898f0e15c3b9d623ff90defba5cbb48d7e0617be6ea2e48805ca51c62b9b0fff11c06c1ecde3d392e2058dc9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) Bogdan Chadkin \n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss-value-parser@4.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/TrySound/postcss-value-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/TrySound/postcss-value-parser/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/TrySound/postcss-value-parser.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/postcss@8.4.14", + "author": "Andrey Sitnik", + "name": "postcss", + "version": "8.4.14", + "description": "Tool for transforming styles with JS plugins", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb5234517b56e95cab17d6a0093498ea655884ad5bb212431346bc2ee2e778b1b4ed201466b5a603ac799c1a09ab6ec5b73077e6b487febc9ba68109fe3eb5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2013 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/postcss@8.4.14", + "externalReferences": [ + { + "type": "website", + "url": "https://postcss.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/postcss/postcss/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/postcss/postcss.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/nanoid@3.3.4", + "author": "Andrey Sitnik", + "name": "nanoid", + "version": "3.3.4", + "description": "A tiny (116 bytes), secure URL-friendly unique string ID generator", + "hashes": [ + { + "alg": "SHA-512", + "content": "32a064421fce1d34b67a0a2f46d2e4e39c04c8d5f017e728903fb560f7fdbb955f26245d0224700767eba17e42a3d461db4c6ce2c88d3e6f2768da2d483e9107" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright 2017 Andrey Sitnik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/nanoid@3.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ai/nanoid#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ai/nanoid/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ai/nanoid.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/source-map-js@1.0.2", + "author": "Valentin 7rulnik Semirulnik", + "name": "source-map-js", + "version": "1.0.2", + "description": "Generates and consumes source maps", + "hashes": [ + { + "alg": "SHA-512", + "content": "4745ef549f56bac2e2a930848860a620208ca65702908c30475d663920fd091e6ef885d8762b1e784b970950234b9e33ab090b70f367994e0e789ead52b5a10f" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "\nCopyright (c) 2009-2011, Mozilla Foundation and contributors\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n* Neither the names of the Mozilla Foundation nor the names of project\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/source-map-js@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/7rulnik/source-map-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/7rulnik/source-map-js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/7rulnik/source-map-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sat@0.0.29", + "group": "@types", + "name": "sat", + "version": "0.0.29", + "description": "TypeScript definitions for sat.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "d668fdb7b48aa6f61225559498c58f0cfffcb5a916cbc4bc978ab6c02ea372bbdabeac405fb2e6a6aa7c0bd42cc8bbb3867478a5bb8eda015fa9c381e58c31f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sat@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/satnav@0.0.27", + "author": "Christian Holm Diget", + "group": "@types", + "name": "satnav", + "version": "0.0.27", + "description": "TypeScript definitions for satnav", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aee645586e21c0c5c6e09dbd6a5e0e7a5a56c756aec3bba3e8df7695ac29b82bb4a8ab2fd6d700590323b1fbbc8e9bbc88875cb9790562deb6424913ca069ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/satnav@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sax@1.2.4", + "group": "@types", + "name": "sax", + "version": "1.2.4", + "description": "TypeScript definitions for sax-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5201f7f8200c498df017506ead1643bb76c49b4e67fc0ad5297e1859e558644690b8eb6f2d261877f95e87d44fbf1acf69892cd8293e72cc73b9338186f6393" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sax@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sax" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/saywhen@1.1.3", + "group": "@types", + "name": "saywhen", + "version": "1.1.3", + "description": "TypeScript definitions for saywhen", + "hashes": [ + { + "alg": "SHA-512", + "content": "00dff42dae56704b3c7a8bf8bb0fed0a7203d41a2f89b28226057263183baf171afc7070fc022b39ace021a53977ad9f2dbd75004d8897a5e6211ca2039bfe1e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/saywhen@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/jasmine@4.0.3", + "group": "@types", + "name": "jasmine", + "version": "4.0.3", + "description": "TypeScript definitions for Jasmine", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a9a752efbc4b99764f1f492bdc84ada6670855aec353d0980913d0e2e8c8e7688a6611733c4cb08f3eb56d353621f3ee4c3dd63c8fd6c01ccbb64927f0a5926" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/jasmine@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jasmine" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scalike@0.0.27", + "author": "ryoppy", + "group": "@types", + "name": "scalike", + "version": "0.0.27", + "description": "TypeScript definitions for scalike API", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0ea74c698027c1b46d68f5a56cf02e833a75f5c54412673b16b680e4ebce89fecfec04b2e20fde27874e96eeaca2e9ac389d62fa2df4cb0ba6a0c135ec93a24" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/scalike@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/schema-registry@1.17.1", + "group": "@types", + "name": "schema-registry", + "version": "1.17.1", + "description": "TypeScript definitions for schema-registry", + "hashes": [ + { + "alg": "SHA-512", + "content": "30a7ba8ba7c06b226607ded46cf5824035ce0c43acf047e6cdeafe64f5faca4eb73f1484bfc0f2cf91c1902c9eb3aa85daffd67b06e027735bd4f0475fe7bd4c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/schema-registry@1.17.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/schema-registry" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/schwifty@4.0.4", + "group": "@types", + "name": "schwifty", + "version": "4.0.4", + "description": "TypeScript definitions for schwifty", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d52a5c2df5ff38cdd343f79cfeba23d073d65b279a71238141904e752da62d3cd754f92d2d1f06fed2e59d26d4aa0b4e647f8fff4ee1751c624ad0ba106f187" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/schwifty@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/hapi@18.0.7", + "group": "@types", + "name": "hapi", + "version": "18.0.7", + "description": "TypeScript definitions for hapi", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae13adbdaac5da46b83408c4511456130c7df280ed3a269060b90f766b00d325dee54e9af7f6098c023f26d1384a7590faf4eb08a48385519c427819a87ad4ec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/hapi@18.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hapi" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/boom@7.3.2", + "group": "@types", + "name": "boom", + "version": "7.3.2", + "description": "TypeScript definitions for boom", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bcfba080359cff0668330136e8297bc40ed3b74874a3f3aa26714ff6a4c0a451086a860b9c07cb2072675169d5c312f5c5462461304d2b7328f51888f72c2f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/boom@7.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/boom" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/catbox@10.0.7", + "group": "@types", + "name": "catbox", + "version": "10.0.7", + "description": "TypeScript definitions for catbox", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2f8e73357b21cac167dc6eaeea6f634de25b54826e2756c4fd40833a216e0aab16d06df40b6d102935337e07786f1efb854c7caf8498d9ac1637c0d3e9e2d8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/catbox@10.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/catbox" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/iron@5.0.2", + "group": "@types", + "name": "iron", + "version": "5.0.2", + "description": "TypeScript definitions for iron", + "hashes": [ + { + "alg": "SHA-512", + "content": "bb5979c4ee41b4b94f7de8b2eb4beb0bd637d1c47c80cedc843e67a480044d968e946a13f0a1eab504299a55397597a384949f201497d330479ca5bed1fc39a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/iron@5.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/iron" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mimos@3.0.3", + "group": "@types", + "name": "mimos", + "version": "3.0.3", + "description": "TypeScript definitions for mimos", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ed4ad50fb87a49f8b54af9ed4af526c3d95d3420e02a00a8155640519827471b6d1541a13728eb7b1629dc927635bb2c9936aecc285e381acd1fa27daff688a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mimos@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mimos" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mime-db@1.43.1", + "group": "@types", + "name": "mime-db", + "version": "1.43.1", + "description": "TypeScript definitions for mime-db", + "hashes": [ + { + "alg": "SHA-512", + "content": "90664963e47e5a7479464f913c750c111b5bdaa05156220708176d52b63e366c2e19bf2941d7d3a9088228faf1a5da32725f0a5a6d832dd929a1276de3bf57a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mime-db@1.43.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mime-db" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/podium@1.0.1", + "group": "@types", + "name": "podium", + "version": "1.0.1", + "description": "TypeScript definitions for podium", + "hashes": [ + { + "alg": "SHA-512", + "content": "75c83c579c0a82bbcd20193687380ade01e86d9d2eee95d6dfa36281f26afa5040fbf7ea23a1802346dd8cb0049190baec4b1a544aed78f92a8a924fb2cccded" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/podium@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/podium" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shot@4.0.1", + "group": "@types", + "name": "shot", + "version": "4.0.1", + "description": "TypeScript definitions for shot", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d4256c432985a6994a555c3599efc84522ba9bfe1a3d4682aa040151270e0e1ce4b7a82282a170b2ceb7e67f6e256cee023987ea2f488458d02b39f284616f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shot@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shot" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/knex@0.16.5", + "author": "Tim Griesser", + "name": "knex", + "version": "0.16.5", + "description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "d51571314f3318e06a8265e502fb3cbe8860f4c0f5e228916593ded087905dde79e27e31c4f9a83246c7e219457aa7cce9e39d144dc056a5529dc2f762ea1ca8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013-present Tim Griesser\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/knex@0.16.5", + "externalReferences": [ + { + "type": "website", + "url": "https://knexjs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tgriesser/knex/issues" + }, + { + "type": "vcs", + "url": "git://github.com/tgriesser/knex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/polyfill@7.12.1", + "author": "Sebastian McKenzie", + "group": "@babel", + "name": "polyfill", + "version": "7.12.1", + "description": "Provides polyfills necessary for a full ES2015+ environment", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f4a62d15ea0c4b8ba9456691a678d6b8cf1b701260ace368ac58b3636590c4d18f3255f82ed13d8e00797305b75896a6d6fd85d5be8047a404c433e8280a3f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2014-present Sebastian McKenzie and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/polyfill@7.12.1", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colorette@1.0.7", + "author": "Jorge Bucaran", + "name": "colorette", + "version": "1.0.7", + "description": "Node.js library for colorizing text using ANSI escape sequences.", + "hashes": [ + { + "alg": "SHA-512", + "content": "29e2b8925b2f02074e0c08c53e6e902f3bd2b62cc9aa5c4c06d568e0a40c0a0939b6dfed7fdac0cf19b12c7351ca7260ded26390a18a6c7c778f81cba31dbb2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright © 2015-present [Jorge Bucaran](https://github.com/jorgebucaran)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/colorette@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jorgebucaran/colorette" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jorgebucaran/colorette/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jorgebucaran/colorette.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/getopts@2.2.3", + "author": "Jorge Bucaran", + "name": "getopts", + "version": "2.2.3", + "description": "High performance Node.js CLI options parser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "be211c6fc4e981e1b4e7e36aa3913367c411d21c5dcab603a7a6524d9a9ed8cfe1e77064d37e8d9aa1b7f1585fe511a2ac2fce7fd5ea97ebfae81da0a76e7a49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright © 2015-present [Jorge Bucaran](https://github.com/jorgebucaran)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/getopts@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jorgebucaran/getopts#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jorgebucaran/getopts/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jorgebucaran/getopts.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/liftoff@3.1.0", + "author": "Tyler Kellen", + "name": "liftoff", + "version": "3.1.0", + "description": "Launch your command line tool with ease.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e520f949524095d08a6cdb37f6a493f4ba71284f59306218a23d4185decfe3b714c28f388d2e8895561fa3a963967858ba9a6c10e5f371bc05323da7780dfa2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Tyler Kellen\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/liftoff@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/js-cli/js-liftoff#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/js-cli/js-liftoff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/js-cli/js-liftoff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/findup-sync@3.0.0", + "author": "Gulp Team", + "name": "findup-sync", + "version": "3.0.0", + "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "baff1ad1ecec8c04fdf7391226c26dc75b1cc9e7ba8d2da20b84f9d27e8c700b9da590f9ac7b06b1dbe03be91def7852877bff6625bff1d0df2dbda9f72c69b7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2018 Ben Alman , Blaine Bublitz , and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/findup-sync@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/findup-sync#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/findup-sync/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/findup-sync.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fined@1.2.0", + "author": "Gulp Team", + "name": "fined", + "version": "1.2.0", + "description": "Find a file given a declaration of locations.", + "hashes": [ + { + "alg": "SHA-512", + "content": "6580ea3cb1b10e40e10d90636416fea03d7e8f4ac0e04d295d8e747a994000e3e0d8dfe050149293920cd7f4213dfc95a35f6527e0af5e9a9fbe4f9bda9ffc36" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016, 2017, 2018 Blaine Bublitz and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fined@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/fined#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/fined/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/fined.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.defaults@1.1.0", + "author": "Jon Schlinkert", + "name": "object.defaults", + "version": "1.1.0", + "description": "Like `extend` but only copies missing properties/values to the target object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "73f2b49b0fc5d75938744501316f2769752e06e8714427c6ed6fb2172f047228d4feb4a66b33947755c01047ba6c2d0eb976381d42a34c9bfbc5bc4832a771ac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object.defaults@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object.defaults" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object.defaults/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object.defaults.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-each@1.0.1", + "author": "Jon Schlinkert", + "name": "array-each", + "version": "1.0.1", + "description": "Loop over each item in an array and call the given function on every element.", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc78cbe5265aebc86428704504ae832424edafdb1f4c23c26a987f2fbb4c48b713160cbecd7ec4fbaab9500adbb4eb4c042b717480a97d30aca51b1efb2c325c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, 2017, Jon Schlinkert\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-each@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/array-each" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/array-each/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/array-each.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-slice@1.1.0", + "author": "Jon Schlinkert", + "name": "array-slice", + "version": "1.1.0", + "description": "Array-slice method. Slices `array` from the `start` index up to, but not including, the `end` index.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae555f656ff53e1d92372497c11f506240a1a7c12438489330ee55c31eb4bacc34e22e2759e9a49bd457990aa091015a2c7b2a2ee003be3a7a21f80bf65d8cf1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/array-slice@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/array-slice" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/array-slice/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/array-slice.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-filepath@1.0.2", + "author": "Jon Schlinkert", + "name": "parse-filepath", + "version": "1.0.2", + "description": "Pollyfill for node.js `path.parse`, parses a filepath into an object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1707515ca0a885255e5eac2d6289d94d7b5b1892ab9fe1cdc960d855ca79cae2657ac4f0347e2bb26459f86aca00f2796cba51c4448c792f919745421d1bc1d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-filepath@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/parse-filepath" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/parse-filepath/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/parse-filepath.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-absolute@1.0.0", + "author": "Jon Schlinkert", + "name": "is-absolute", + "version": "1.0.0", + "description": "Returns true if a file path is absolute. Does not rely on the path module and can be used as a polyfill for node.js native `path.isAbolute`.", + "hashes": [ + { + "alg": "SHA-512", + "content": "74e5a8a9f96f73274045adfad06befd7c0d9fe046e1ca8b6354ff05395f5645cdd61f1f6f67922359b05de6a78389dc7e32a3d331f00fee006373a733cddf204" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\nCopyright (c) 2009-2014, TJ Holowaychuk\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-absolute@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-absolute" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-absolute/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-absolute.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-relative@1.0.0", + "author": "Jon Schlinkert", + "name": "is-relative", + "version": "1.0.0", + "description": "Returns `true` if the path appears to be relative.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b0fd178ad22ab029ebb43084cb16e8f48db3c098488eb08c32217bef6df6ba41f98df69903d4cfbca5d93b465fdd4ca6c7df8fd704531b803e2230984b41b18" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-relative@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-relative" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-relative/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-relative.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-unc-path@1.0.0", + "author": "Jon Schlinkert", + "name": "is-unc-path", + "version": "1.0.0", + "description": "Returns true if a filepath is a windows UNC file path.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ab1a955dd1fb3b5962df56c4adbe017a8842676e30c5661f7f7a68510dc1964ddb937cd1ddf421de5301f781822375bc28e0e9fa86e9e4cedc0e680c34ca595" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/is-unc-path@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/is-unc-path" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/is-unc-path/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/is-unc-path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unc-path-regex@0.1.2", + "author": "Jon Schlinkert", + "name": "unc-path-regex", + "version": "0.1.2", + "description": "Regular expression for testing if a file path is a windows UNC file path. Can also be used as a component of another regexp via the `.source` property.", + "hashes": [ + { + "alg": "SHA-512", + "content": "7972f89e6253ee80a9919b07654389a3c85c5f719bb220ce6b442ef45eb8e9f8bc753dd7b92568a55a80704895cd228a1fb5280ed8b6df0357dea185c5c5b942" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unc-path-regex@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/regexhq/unc-path-regex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/regexhq/unc-path-regex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/regexhq/unc-path-regex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/flagged-respawn@1.0.1", + "author": "Gulp Team", + "name": "flagged-respawn", + "version": "1.0.1", + "description": "A tool for respawning node binaries when special flags are present.", + "hashes": [ + { + "alg": "SHA-512", + "content": "94d687355ca66a39a4d0e24c067f1f554014d41b4378a22a2a8561938c4000b079eda00b83a6f85b431f27f71413483d6015f2e5785294f22960827b1da63fdd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018 Tyler Kellen , Blaine Bublitz , and Eric Schoffstall \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/flagged-respawn@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/gulpjs/flagged-respawn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/gulpjs/flagged-respawn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/gulpjs/flagged-respawn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/object.map@1.0.1", + "author": "Jon Schlinkert", + "name": "object.map", + "version": "1.0.1", + "description": "Similar to map for arrays, this creates a new object by calling the callback on each property of the original object.", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfe98026ed8f2df9d25461f0216b9ba4e14bb1c2403412ae07fe80e02c41b2d7386aac1063415672ca69bb2e2353919207de72112e491d223edf7016b92e24eb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "\n\nCopyright (c) 2014-2017, Jon Schlinkert, contributors.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/object.map@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/object.map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/object.map/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/object.map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/make-iterator@1.0.1", + "author": "Jon Schlinkert", + "name": "make-iterator", + "version": "1.0.1", + "description": "Convert an argument into a valid iterator. Based on the `.makeIterator()` implementation in mout https://github.com/mout/mout.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a718ae5e1d22544abb54ceca30886ce60c6c7f10aec76511a6d510697a38899649c410334cf38b13606e98ee5d6df558abf841245051fdad6614398ec790069b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2018, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/make-iterator@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jonschlinkert/make-iterator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jonschlinkert/make-iterator/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jonschlinkert/make-iterator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pg-connection-string@2.0.0", + "author": "Blaine Bublitz", + "name": "pg-connection-string", + "version": "2.0.0", + "description": "Functions for dealing with a PostgresSQL connection string", + "hashes": [ + { + "alg": "SHA-512", + "content": "9be6ac491de2047d83062d9191c0a152113291c4626462db81ae945359c74efb1596fcd677ad7db8d6372b252cb87812e90cfb1ac44f318ae2d152276f70f9d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Iced Development\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/pg-connection-string@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iceddev/pg-connection-string" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iceddev/pg-connection-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/iceddev/pg-connection-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tarn@1.1.5", + "author": "Sami Koskimäki", + "name": "tarn", + "version": "1.1.5", + "description": "Simple and robust resource pool for node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ccb49dc708b01979e7568c93e01a70af72985b08e31bb59a632a02eadea33942af5a42e77e5c7acbd1696b9609d3c92f14fa3ae319b117a6b15c42bc4fcb9da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Vincit Oy\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/tarn@1.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vincit/tarn.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vincit/tarn.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/vincit/tarn.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tildify@1.2.0", + "author": "Sindre Sorhus", + "name": "tildify", + "version": "1.2.0", + "description": "Convert an absolute path to a tilde path: `/Users/sindresorhus/dev` → `~/dev`", + "hashes": [ + { + "alg": "SHA-512", + "content": "63dab519a57f04eeb967d61fe0d38632ec2ddd219da6d91906769a29f4d06a4ac3c822e2b8ed4a739c315b8c4b76c8f3ba746daad39d85e9225059996e497061" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/tildify@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/tildify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/tildify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/tildify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/objection@1.6.11", + "author": "Sami Koskimäki", + "name": "objection", + "version": "1.6.11", + "description": "An SQL-friendly ORM for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd6ea247af98bc58355389390f25f532b63ec6aa1d0ccf0000e5352746f71e5a6db0dc3c577b831e36604e2d5c14f3dee7e65e4d332f84816136250febe9ea61" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Sami Koskimäki\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/objection@1.6.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vincit/objection.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vincit/objection.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/vincit/objection.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scoped-http-client@0.11.1", + "group": "@types", + "name": "scoped-http-client", + "version": "0.11.1", + "description": "TypeScript definitions for scoped-http-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b14f12c073ec80f0578bdc44e41cf6369c0581e4e78f1191f2ff2e05ab33d4b259e328ee7199580ca77dc264b82371ccdc0edd7085b86bd0182a5b314f6c33b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scoped-http-client@0.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scoped-http-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/screenfull@3.3.3", + "group": "@types", + "name": "screenfull", + "version": "3.3.3", + "description": "TypeScript definitions for screenfull.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f6558a8e0d3610d1dd5ef351973474eae8d0cf4903d7023dc8cf9e9bdcbff4607c3e44a9d26fac747827c8e6b57252ac072d1748bf15fab32e1022d3573580e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/screenfull@3.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/screeps@2.5.5", + "group": "@types", + "name": "screeps", + "version": "2.5.5", + "description": "TypeScript definitions for Screeps", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef5b7b56865a98c445ed97eb9f1d81d99c22a02bfc8c863a83c50ee00fe22619a3105f95a17702183564c9bab23af51b7c381606008cc0e33301a8cf51573c97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/screeps@2.5.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/screeps-profiler@1.2.2", + "group": "@types", + "name": "screeps-profiler", + "version": "1.2.2", + "description": "TypeScript definitions for screeps-profiler", + "hashes": [ + { + "alg": "SHA-512", + "content": "73318a524f2e973d6aa2c8e5d2ae4783d62e8af1e93f4983b223e1911cb4a47c4c31880826dd337dd0423736285385a76efa1e471a73227fdc0408f93c1a89b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/screeps-profiler@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scriptjs@0.0.2", + "author": "Steve Lam", + "group": "@types", + "name": "scriptjs", + "version": "0.0.2", + "description": "TypeScript definitions for scriptjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "185ad48331987cd5f7556670332cebd09ac1c332efe4a7ace01401be8ea15dd472d78fc605ba42895c3007bbf5a36c4812f15ffbd1b2ce799886e7ac4108d26a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/scriptjs@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scroll-into-view@1.16.0", + "group": "@types", + "name": "scroll-into-view", + "version": "1.16.0", + "description": "TypeScript definitions for scroll-into-view", + "hashes": [ + { + "alg": "SHA-512", + "content": "593d1804fec22e2dd71ff8036d676d05fe26415c84ef342ba44676acdaf1cfdb55a083c97fdef31a57d1aa79040a3ecff2b3e4171565a3529b38e31eb5c72174" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scroll-into-view@1.16.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scroll-into-view" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scroller@0.1.2", + "group": "@types", + "name": "scroller", + "version": "0.1.2", + "description": "TypeScript definitions for Zynga Scroller", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9dbbd7f02cb564c2acf8fd1ffc0f92cf1446eb8297deb9f683c13453a3f4a0f0e77c0d6c43d735f17000c8486564884bb20a8a97b8617e6d76e42b090118293" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scroller@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scroller" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scrollreveal@0.0.3", + "group": "@types", + "name": "scrollreveal", + "version": "0.0.3", + "description": "TypeScript definitions for ScrollReveal", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f86963fc882120d5f2f44b604cc53d43b9e8ab2709f0e6e63dfaec0f9c0ece339a1d52fb9224449139ff9fec5cad29d13a8d4e1ebffc2d0dbae50b6ea9a2b6c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scrollreveal@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scrolltofixed@0.0.28", + "group": "@types", + "name": "scrolltofixed", + "version": "0.0.28", + "description": "TypeScript definitions for ScrollToFixed", + "hashes": [ + { + "alg": "SHA-512", + "content": "201e015cab750e9726796298edb334a437683dc6531f94bcb85cd72264052c13d87d9bfcc75eb6e183c01486372e1def6c7c4aecda890b1b727a8fa9a016cce5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scrolltofixed@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scrypt-async@1.3.2", + "group": "@types", + "name": "scrypt-async", + "version": "1.3.2", + "description": "TypeScript definitions for scrypt-async", + "hashes": [ + { + "alg": "SHA-512", + "content": "be64bac5234e2823406edad10136dc6d26c8d2b19f1bd72229c94c2791f5a3aecb72602ac62c00d6d35813ec8ba53743f0ad0b485c2eda453d51a8cede90de81" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scrypt-async@1.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scrypt-async" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/scryptsy@2.0.0", + "group": "@types", + "name": "scryptsy", + "version": "2.0.0", + "description": "TypeScript definitions for scryptsy", + "hashes": [ + { + "alg": "SHA-512", + "content": "8839a77812964ac9ac4774a51a2b0e567a42cfbb01e4caa1bf823fa4b8350d8ab6cedb564fae6bfb580e559b68c57893b127ff24ef0d860c822a1c7b72f19b68" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/scryptsy@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/seamless@0.0.2", + "group": "@types", + "name": "seamless", + "version": "0.0.2", + "description": "TypeScript definitions for seamless.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a9f757b3797679fbd6726b48b1808f4c99d7bde5207698d24d420d807b5560daf6b409ee97bf940ec02cc06931aecb413ec8c78d1c4c392d2ae03ab284a11fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/seamless@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/seamless-immutable@7.1.16", + "group": "@types", + "name": "seamless-immutable", + "version": "7.1.16", + "description": "TypeScript definitions for Seamless-immutable", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a88b52fd965ac3b6f88ba6ffb656860cf4e80002ca03b472fcbb0e26a24b8d5e5d2ac11a1e9ffb78692019a684c9550d8321d859439e4bd11d1dbb0cf5f5613" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/seamless-immutable@7.1.16", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/seamless-immutable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/secp256k1@3.5.3", + "group": "@types", + "name": "secp256k1", + "version": "3.5.3", + "description": "TypeScript definitions for secp256k1", + "hashes": [ + { + "alg": "SHA-512", + "content": "34672c3c34743fe43bd4eeb77b66b2b219a264603008e6bf70b273388ba13a20ef99bbeb088895b44a6a742246a201bdd819ebeadc3fea5a9506c44c125d7939" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/secp256k1@3.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/seed-random@2.2.1", + "group": "@types", + "name": "seed-random", + "version": "2.2.1", + "description": "TypeScript definitions for seed-random", + "hashes": [ + { + "alg": "SHA-512", + "content": "03b0f24677ed1162c46ddacdd3c5dd9c4012ad3f7bcbb18bff30ca6a28e8ee06d09f4e4ed777fb943c6682af92b88e090fbb00a9df579004762c3924ce9e2cfb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/seed-random@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/seed-random" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/seededshuffle@0.2.0", + "group": "@types", + "name": "seededshuffle", + "version": "0.2.0", + "description": "TypeScript definitions for seededshuffle", + "hashes": [ + { + "alg": "SHA-512", + "content": "75a7f2427c6f0cfc659c2744c67676801783da88a86a2fd35a39755d3fb1152d5ed8e16fe836c57000a79a5de43b3532ff660cba095de05fca2e7a6c86f1b2e4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/seededshuffle@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/seedrandom@2.4.30", + "group": "@types", + "name": "seedrandom", + "version": "2.4.30", + "description": "TypeScript definitions for seedrandom", + "hashes": [ + { + "alg": "SHA-512", + "content": "027c4b1dec2e6cb573a05fc0e2a7710461c22a27f0f1c637da2ae8dc3417f533dc7ad13de7305e56dde39ecbedbc051fd6fc3331fc33a78b7f2f6caa3e59e391" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/seedrandom@2.4.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/seedrandom" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/segment-analytics@0.0.28", + "group": "@types", + "name": "segment-analytics", + "version": "0.0.28", + "description": "TypeScript definitions for Segment's analytics.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a8fb56503cc9660175a713676ef7bb963b289f31b45675b9906435a45c6819a6930b990079e640054447f467901f3140f68b29aa189826bbe16c6caf3e40db3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/segment-analytics@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/select2@4.0.55", + "group": "@types", + "name": "select2", + "version": "4.0.55", + "description": "TypeScript definitions for Select2", + "hashes": [ + { + "alg": "SHA-512", + "content": "96a9e0613bfb5b57bc1e22d212aedc2619e72aa577beec020647e46ba65706833467c695a19ad1f60c636f047372a041c3812902f5576463ee68338cf9aa5e67" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/select2@4.0.55", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/select2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/selectables@1.4.1", + "group": "@types", + "name": "selectables", + "version": "1.4.1", + "description": "TypeScript definitions for selectables", + "hashes": [ + { + "alg": "SHA-512", + "content": "3baaa388204cdcda2538779022b302970684f54d0f499567c8a5191aea49efbb964c9cffa9370e858420bc74a54f9836e7e7292995dc42dcfa337c7fa1773751" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/selectables@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selectables" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/selectize@0.12.35", + "group": "@types", + "name": "selectize", + "version": "0.12.35", + "description": "TypeScript definitions for Selectize", + "hashes": [ + { + "alg": "SHA-512", + "content": "3adbad49df667f2976aa3c4d00182e5068704661dc25162a44d404515042e90230d0fd0329b86c005e5152189dd4bd0675818d79ff25ef7912075295a5acd7a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/selectize@0.12.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selectize" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/selenium-standalone@6.15.2", + "group": "@types", + "name": "selenium-standalone", + "version": "6.15.2", + "description": "TypeScript definitions for selenium-standalone", + "hashes": [ + { + "alg": "SHA-512", + "content": "267b780071dc50e3c6b99e5c25161f3f72293da94d73fa3506616fb851662ed5363edbc41afcb224f76912bab3643c6c3fc138ca34ecb7418bf903098845ae04" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/selenium-standalone@6.15.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui@2.2.7", + "group": "@types", + "name": "semantic-ui", + "version": "2.2.7", + "description": "TypeScript definitions for Semantic UI", + "hashes": [ + { + "alg": "SHA-512", + "content": "523eab6f2d869ee5723bba63f2f81416cbf979ac5bd24b697dab18701fef5e7480789e1c46320ebf191af84a0f8f0ded3c2638fd697146cb3c86c87b9115b342" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui@2.2.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-accordion@2.2.2", + "group": "@types", + "name": "semantic-ui-accordion", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-accordion", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c295723fdb45bb8852d0edecac959b306ddbf7038a96127173f09bceca519ab425bb6e24cb5613013dc3746f5ed367519e57857f97772d9af4c40421ef83c08" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-accordion@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-api@2.2.4", + "group": "@types", + "name": "semantic-ui-api", + "version": "2.2.4", + "description": "TypeScript definitions for semantic-ui-api", + "hashes": [ + { + "alg": "SHA-512", + "content": "e88bc28d90c9d1355bd44b6734540f3725663999cb18f10ac8402cf46d051775ee032c8e76d7c3e0d1872749249e75f5143fbefb27b412e495143bad6f01055b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-api@2.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-checkbox@2.2.2", + "group": "@types", + "name": "semantic-ui-checkbox", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-checkbox", + "hashes": [ + { + "alg": "SHA-512", + "content": "653032df23703806a8ce7c6c168477dd7a29267cb2cc01ab2de0e99fb8554e45189bbc201ac80ea517c6da9b1d3377c838291992413d204029d692c60627cbd6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-checkbox@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-dimmer@2.2.2", + "group": "@types", + "name": "semantic-ui-dimmer", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-dimmer", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0aedd6bfef4509f4053b26ed8c78e3bdb2344fae153a8dff95bc7893c256821a6efe00b8894e177cf03d6207a3830d0a66f9e6e321b424bc09834a432998a96" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-dimmer@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-dropdown@2.2.3", + "group": "@types", + "name": "semantic-ui-dropdown", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-dropdown", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb66488845af145c8bbbbfb2a8d579e7453d86cdec7ea3fb6a32f11c45a51a3c464b836c266cbd227eff51cc67a4907e2646a70b8264ca880437ac1195baaf87" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-dropdown@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-embed@2.2.2", + "group": "@types", + "name": "semantic-ui-embed", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-embed", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c5bdf41b4ad92201b3dfec48cff4bccafab6984fc8f5c7c82961157d6d262d0be591f4c0499fe9770145981139edee787615689d0fb7fcf03d0e52316d310e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-embed@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-form@2.2.6", + "group": "@types", + "name": "semantic-ui-form", + "version": "2.2.6", + "description": "TypeScript definitions for semantic-ui-form", + "hashes": [ + { + "alg": "SHA-512", + "content": "9218f7a3ac364d637d061ef2661b28b147c03cc0513ffac3dc3880a59acf51a8a80877f456b0ed62e8aa2574ddfd0b7b7195b6c3e360675ae257fde5797c7c88" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-form@2.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semantic-ui-form" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-modal@2.2.3", + "group": "@types", + "name": "semantic-ui-modal", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-modal", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e1e3c045935a5de2496e1630940ca9fb026977c682dd1452bcc05411cfa52c38c76fb17c763ab364b9b863a9cefdb5c07338d0bb36ccd25b6226b253cf1cd0a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-modal@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-nag@2.2.2", + "group": "@types", + "name": "semantic-ui-nag", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-nag", + "hashes": [ + { + "alg": "SHA-512", + "content": "82a8d216630bc3cbed3daebf46ffe61412b599da9a51b2e48540380ac4c386489b52a9cdaa9bc8fddd571452dd0bf50bbbdbfb525a0c4c29dd48629aa3eab9a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-nag@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-popup@2.2.3", + "group": "@types", + "name": "semantic-ui-popup", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-popup", + "hashes": [ + { + "alg": "SHA-512", + "content": "b70ec55d44c0b3e18453ddfd441a4e095abd1fcbd8a6cafcb98bc90b4454c570985c2507b2063380822494aa03fb13ef5027f7e0c1e7301c2bad308c268b311a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-popup@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-progress@2.2.3", + "group": "@types", + "name": "semantic-ui-progress", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-progress", + "hashes": [ + { + "alg": "SHA-512", + "content": "82fd22e3efee55b5099ee4f336fda812a27c08c40f78047a2beb36ce6d6be30687fbc650d1228cd43678b77c38804331857a995652e5c8885f6354a6508d06b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-progress@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-rating@2.2.2", + "group": "@types", + "name": "semantic-ui-rating", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-rating", + "hashes": [ + { + "alg": "SHA-512", + "content": "f78f7b4fc6c49e469d5ad4039791e7a3d96f899d9b263c79aca77f19faba3d6675ff8ffbd4bad8747d434abfac1d82791e46920346fb1855424f18bda4475de9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-rating@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-search@2.2.3", + "group": "@types", + "name": "semantic-ui-search", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-search", + "hashes": [ + { + "alg": "SHA-512", + "content": "255aeb5bdb9a9174ee74d9b5306ae44698ab2f6be6f0d095b6b3f21facc86c136a8b4f143de1d8f32c639c5a533efe6c30a0461a19129fd718ac6cfa0b07a0d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-search@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-shape@2.2.2", + "group": "@types", + "name": "semantic-ui-shape", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-shape", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d769e85ebae0d8deb0260394104400347f3322124851819b6ce62ef0fddd5794c1c254d78720801b853bab9776cfc1395baf4348ed3dd99b11f410a45574812" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-shape@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-sidebar@2.2.2", + "group": "@types", + "name": "semantic-ui-sidebar", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-sidebar", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e6ff0866362c93cd0c1db9ce26695f578ddc15738a55964857e6f8a9a56f6e9020a454663ca818102871588401cf85eeec0ac188b92f95a6bf37b7c5fb160f3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-sidebar@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-site@2.2.2", + "group": "@types", + "name": "semantic-ui-site", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-site", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f1c14c6aa412c094fa4eecea8060874146c65398a2d7bd2cc12dcce6b3726c867a0284465bc6d2916314b180af776385d809f2a7a57417105e91230e4517f98" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-site@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-sticky@2.2.3", + "group": "@types", + "name": "semantic-ui-sticky", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-sticky", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ce85df96ef9bbd1e4d28c105d419d0caa6f5612a5ff6d3b86e799a934d11193d39b100b0076e5e9b1cac67bdc26a45eae138574e6d070215918be4311746d70" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-sticky@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-tab@2.2.2", + "group": "@types", + "name": "semantic-ui-tab", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-tab", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3b6b64c90318e1ee956a473a5098977b85371a0effed018261d807b3e6662246b172961cf022b240717852c154552273d991cf0c0e504f83c5e6f9027df2b2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-tab@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-transition@2.2.2", + "group": "@types", + "name": "semantic-ui-transition", + "version": "2.2.2", + "description": "TypeScript definitions for semantic-ui-transition", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1924809fdea0abfbaf333efcd3282f67409de69de5be2bf2bd6362a9871ba35a030290e4047ad0cd6f90dbb7d6197bdd8bd129da3da0e0a7529568a028aed77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-transition@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semantic-ui-visibility@2.2.3", + "group": "@types", + "name": "semantic-ui-visibility", + "version": "2.2.3", + "description": "TypeScript definitions for semantic-ui-visibility", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2f7d78d91c98627fc470e1643af75671d98d2fa9d345d83d00613ee5b501f5fe62ff7c2a84c132e7765deabe009bc699e219b4e76116a3ab1d5d93cf898bf1d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semantic-ui-visibility@2.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semantic-ui-visibility" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semaphore@1.1.1", + "group": "@types", + "name": "semaphore", + "version": "1.1.1", + "description": "TypeScript definitions for semaphore", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e616932c94cb4118e5d8dacef1e8ef2f05e6dc8face19309743ddfef899029a35b9968f93bdf73fc7683ef6a205b086f91ef6d3538b3a5e103fb975985caecb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semaphore@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semver@5.5.0", + "group": "@types", + "name": "semver", + "version": "5.5.0", + "description": "TypeScript definitions for semver", + "hashes": [ + { + "alg": "SHA-512", + "content": "e35a84260047fd35a0a393454af042275aa4a22dd0e8e3521766afac7ab52d51197d8a5d1e68f4cbd4ae4cafaef59846d6c6102812f50165cac8b58fe11694a1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semver@5.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semver-compare@1.0.1", + "group": "@types", + "name": "semver-compare", + "version": "1.0.1", + "description": "TypeScript definitions for semver-compare", + "hashes": [ + { + "alg": "SHA-512", + "content": "c31d8b415bca9449215e9fc7a0a219fda48bf93bdf25d29ca3c8b4c494b7691f3bee6838a811f3353ebe0796bad6f7b0647a3bf447596afb241a7457102d87e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semver-compare@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semver-diff@2.1.1", + "group": "@types", + "name": "semver-diff", + "version": "2.1.1", + "description": "TypeScript definitions for semver-diff", + "hashes": [ + { + "alg": "SHA-512", + "content": "d7869a9901c5e08bb64fdaf77e81196c89be2522fb5cfd151d45b9d074918144837e95169befb272a7f5f8df0cacd6b6ed7302a31b400b7331aadbd47c70bf11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/semver-diff@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/semver-sort@0.0.0", + "group": "@types", + "name": "semver-sort", + "version": "0.0.0", + "description": "TypeScript definitions for semver-sort", + "hashes": [ + { + "alg": "SHA-512", + "content": "38d101c2ece15153a17a2ecdad99a7ab931e903ba7c9c77b4988f18cc0bddf4a24ae304b2c9846c1a9ff3b094bb9576019832fbe78976ca79454d6934e4a3c63" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/semver-sort@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sencha_touch@2.3.25", + "group": "@types", + "name": "sencha_touch", + "version": "2.3.25", + "description": "TypeScript definitions for Touch", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4bd8577546667bedebdb921e351fb4115116e728c67b14ec3ea6f371f67115baa47d4a7b324a22dd4e8c600399583cb01004cced33c343f90099e567f40c1f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sencha_touch@2.3.25", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sencha_touch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/send@0.14.7", + "group": "@types", + "name": "send", + "version": "0.14.7", + "description": "TypeScript definitions for send", + "hashes": [ + { + "alg": "SHA-512", + "content": "58250c6f3596d6c4c4657df571131c0717e55175ff2660187a3863c57b6b2c69febddff2c858c787f17d1488a00048c4d8b6ae85f1fde014fb3498fd46ed9696" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/send@0.14.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/seneca@2.1.11", + "group": "@types", + "name": "seneca", + "version": "2.1.11", + "description": "TypeScript definitions for seneca", + "hashes": [ + { + "alg": "SHA-512", + "content": "526ae794d8a4404b2daa7ea3e6ede472e275808ed78e0e7bee5f57846288d84b707780b4128ebe3d7fccaae926d9fcc5ed106f2cada290832998020677a43cd6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/seneca@2.1.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/seneca" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sequelize@4.28.14", + "group": "@types", + "name": "sequelize", + "version": "4.28.14", + "description": "TypeScript definitions for Sequelize", + "hashes": [ + { + "alg": "SHA-512", + "content": "3bc95327c60f5556a863dc6376e7210e5a3430e4b7c36eb6a6ba361f540cb85228fe473fa757a53ff5312ce4cfdb07153b670577a1af82183d652022262d062c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sequelize@4.28.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sequelize" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/continuation-local-storage@3.2.4", + "group": "@types", + "name": "continuation-local-storage", + "version": "3.2.4", + "description": "TypeScript definitions for continuation-local-storage", + "hashes": [ + { + "alg": "SHA-512", + "content": "393df6bc254cca653524c3ca0de634957ddc76e02bd0f9bf57021bc7280c7834b895172fe7ba985e7f5b3300517119c4a572816ffaf8c5869908045366594fd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/continuation-local-storage@3.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/continuation-local-storage" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/validator@13.7.4", + "group": "@types", + "name": "validator", + "version": "13.7.4", + "description": "TypeScript definitions for validator.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8069259e82eda5ca6635f25face6799c5eedec15e7933a5d738521a863372be93df0cf533edce716e148df3e12211c6775ded20c443b04a51f9df30fcc7b1c1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/validator@13.7.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/validator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sequelize-fixtures@0.6.3", + "group": "@types", + "name": "sequelize-fixtures", + "version": "0.6.3", + "description": "TypeScript definitions for Sequelize-Fixtures", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb6452d8509f54a94c35ec2a3769e517542a3b69f05b5fe40cc870813f6ed236e44dde4908570dd80afaf5c0e80c2b8691acd1c2a0b0935e58ef853836b2466a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sequelize-fixtures@0.6.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sequelize-fixtures" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sequencify@0.1.0", + "group": "@types", + "name": "sequencify", + "version": "0.1.0", + "description": "TypeScript definitions for sequencify", + "hashes": [ + { + "alg": "SHA-512", + "content": "35b003deb5896ae6b50d89a079830e94ce589a6d18a9a08846ec413f5c765d861d4e54f5ac069c9435b0f7bc56a71b34fe87fe08e8719ca79b68541c79960680" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sequencify@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sequester@1.0.0", + "author": "Artur Eshenbrener", + "group": "@types", + "name": "sequester", + "version": "1.0.0", + "description": "TypeScript definitions for sequester 1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd4e74bc47c4b313012412e3480e4920c0c8253170d7aaf48ccb30ee0ea2749e2120375704ece85f84bb8a5fd6b1fdb0d22f2c0e40f6e4914b9856d6f4f224c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/sequester@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/serialize-error@2.1.0", + "group": "@types", + "name": "serialize-error", + "version": "2.1.0", + "description": "TypeScript definitions for serialize-error", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d74183b24aef988e6b522b15a45e7d341f77b86a740c882683c342a6ec41df336fc36bbf559e2dccb7542e28ff5f981a1b68bc4dfb7be3852a308d0a7a5d8f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/serialize-error@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/serialize-javascript@1.5.0", + "group": "@types", + "name": "serialize-javascript", + "version": "1.5.0", + "description": "TypeScript definitions for serialize-javascript", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b19e78583ad5499c31739d93d575b5b73665095d5cab750b62abbfef50d839e5f548d41f813fec69ff8760c089505da7a36c7f20091bb6b71b6ee8b444ccaf2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/serialize-javascript@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/serialport@6.0.8", + "group": "@types", + "name": "serialport", + "version": "6.0.8", + "description": "TypeScript definitions for serialport", + "hashes": [ + { + "alg": "SHA-512", + "content": "bfb8f567e5b1a6c98fb8e138f466b93d1703ef1f30056984e042af8d759b1b3c355f2dd730305b59125f7614ca4558aff08f9a8ee881cbf2ae011f085a149b18" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/serialport@6.0.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serialport" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/serve-favicon@2.5.3", + "group": "@types", + "name": "serve-favicon", + "version": "2.5.3", + "description": "TypeScript definitions for serve-favicon", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e2ad72d12632d7cf08929e3844d6f32ee795fbfaa698fa7a17b0aaa2ffb78ad6e0729772fa4f091c00b66e267417a8e6a531d981cf76faeb6c97bda47ef3d57" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/serve-favicon@2.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-favicon" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/serve-index@1.9.1", + "group": "@types", + "name": "serve-index", + "version": "1.9.1", + "description": "TypeScript definitions for serve-index", + "hashes": [ + { + "alg": "SHA-512", + "content": "77f1ecde7583c4d2f6c4073398e559363f76619092e911b17c13e32b3baefd78ab0a05dda4a11bf3c75835bad81a29ede885562cd3feca89f0540b910b44f60e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/serve-index@1.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serve-index" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/server-destroy@1.0.1", + "group": "@types", + "name": "server-destroy", + "version": "1.0.1", + "description": "TypeScript definitions for server-destroy", + "hashes": [ + { + "alg": "SHA-512", + "content": "efb406afbc1a65b134634b85f86fae1f71f74a687203bf097f6af9afb412ae98345379125ddb96a468f33fd3ef3cb47f282cbe9078e3a67ba0447b184e71e8a6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/server-destroy@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/servicenow@10.0.1", + "group": "@types", + "name": "servicenow", + "version": "10.0.1", + "description": "TypeScript definitions for ServiceNow Javascript Scoped API", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffa3ee9f930cf8787cf1f863ea6b49963a2cd1e1a319f8d7f8b5d5c08e6d3ef94935fccf96c6e078e57f63c50ca35ba919f7e8c6ca0908985b500529d26e2a8f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/servicenow@10.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/session-file-store@1.2.2", + "group": "@types", + "name": "session-file-store", + "version": "1.2.2", + "description": "TypeScript definitions for express session-file-store", + "hashes": [ + { + "alg": "SHA-512", + "content": "97dc99f8f43cbda5e1721d3732b57edb90486e12a97967d907efb79e33c89ba94a7831914b6a85d9e94bb956b85eb85f25b39ba96d29ba107703a1426e4ada66" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/session-file-store@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/session-file-store" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/express-session@1.17.5", + "group": "@types", + "name": "express-session", + "version": "1.17.5", + "description": "TypeScript definitions for express-session", + "hashes": [ + { + "alg": "SHA-512", + "content": "9740e192f3557f250f1048acf1f7306dde3a569b5f03f8e63301dfa1bd937c331fdc7c8f2e207d98a0fbd4b5e1cf94cc5286ce0d73c3dbbcd74b0b4540b1e6fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/express-session@1.17.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express-session" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/set-cookie-parser@0.0.2", + "author": "Nick Paddock", + "group": "@types", + "name": "set-cookie-parser", + "version": "0.0.2", + "description": "TypeScript definitions for set-cookie-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d304f9040280c17a2d1a40ed1d6cdf97889d8cb7579286c0fd190203a42219378c4bad580007b593c5371c7d53dc931c15c04d025383020fe97d6eeed5e83e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/set-cookie-parser@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/set-value@2.0.0", + "group": "@types", + "name": "set-value", + "version": "2.0.0", + "description": "TypeScript definitions for set-value", + "hashes": [ + { + "alg": "SHA-512", + "content": "93c7422440bcd05fe66ec20e6791e3dd84b34d555507031db4ffccf51b5cd933381797ad55dfb6506f105220147db5e6e1f00179d2f6b41667ac185e63b530a4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/set-value@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/settings@0.1.1", + "group": "@types", + "name": "settings", + "version": "0.1.1", + "description": "TypeScript definitions for settings", + "hashes": [ + { + "alg": "SHA-512", + "content": "78ad38bd2ae85e9e30ceb92c4f4745e08e8cc158c9e6f0a53e9e29262aa7fbe7b87d0c3204986e77a612538f37d99f07e18d19c6cf4b677a27bfc2197aeb6b0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/settings@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/settings" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sha1@1.1.3", + "group": "@types", + "name": "sha1", + "version": "1.1.3", + "description": "TypeScript definitions for sha1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d77f1ffac6b3eed65ea92c8b4644c3d7d349619c96afa63daa89078b1df957bcbd88c7deda0bc153176fe9428aae911cdc0b02b237772c66f38bcda988a1a48" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sha1@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sha1" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shallowequal@0.2.4", + "group": "@types", + "name": "shallowequal", + "version": "0.2.4", + "description": "TypeScript definitions for shallowequal", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab51919be477856937df849e2c0a32dc4169c826ec28c6f96c6c70825ac83aba7d66ee160f0a8fc6b72b1b3d5c702990e7b767dbec83a561102a98ea6f8714dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shallowequal@0.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shapefile@0.5.2", + "group": "@types", + "name": "shapefile", + "version": "0.5.2", + "description": "TypeScript definitions for shapefile", + "hashes": [ + { + "alg": "SHA-512", + "content": "dda76ea1354aeb3596b4f95ee02e8a6e9df92d2387128dd164aa63ced47d40b5c10c4f5cf2fddcc80f1da33531eb04acb897b64465c7f7c4e1896707d30a8d0c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shapefile@0.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sharedworker@0.0.28", + "group": "@types", + "name": "sharedworker", + "version": "0.0.28", + "description": "TypeScript definitions for SharedWorker", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec4ecd74987ee9d57a693e72bd2cb20a60d6212dff4d671778e9587b5c4b4dee7e754f6f65acd3fba13efdb522194fae965e8ac167311173177418b1e9530bd2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sharedworker@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sharepoint@2016.1.10", + "group": "@types", + "name": "sharepoint", + "version": "2016.1.10", + "description": "TypeScript definitions for Microsoft SharePoint:", + "hashes": [ + { + "alg": "SHA-512", + "content": "792b7538d27876831d2605d5cafc0366998f2a9efe3fca6586487acafbdde4a9d158f15363562a2fd34fe64562b79187aa42c27538fcf674b4e844c48fa6132b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sharepoint@2016.1.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sharepoint" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/microsoft-ajax@0.0.37", + "group": "@types", + "name": "microsoft-ajax", + "version": "0.0.37", + "description": "TypeScript definitions for Microsoft ASP.NET Ajax client side library", + "hashes": [ + { + "alg": "SHA-512", + "content": "6395a12edf2cfc00d748a44e134ebb426eeb187ff5ea33d8b303ce2b1171f62a7195d9b66573c437342ecf2beec6a9074762c5becbdb1c8b309a2d39a9d503f6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/microsoft-ajax@0.0.37", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/microsoft-ajax" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sharp@0.17.10", + "group": "@types", + "name": "sharp", + "version": "0.17.10", + "description": "TypeScript definitions for sharp", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c84a2b69b6b626ea1529882faf376d5c6d3f0e7f9e13b9b5d8f7937ea5ca8d0a699766a77585193b7c2e47611450c16262295fcd2c7c7c7f80b13c8b08417aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sharp@0.17.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sheetify@6.0.1", + "group": "@types", + "name": "sheetify", + "version": "6.0.1", + "description": "TypeScript definitions for sheetify", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ed78c997d2911b16e88e2f9018140214dd67cd5f8e7dc24b73f0c7204dcc5d0aaaa6a9435d6b6b79caf43d75af442770ff7044fc37f926de43d37e7fc7ce183" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/sheetify@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shell-escape@0.2.0", + "group": "@types", + "name": "shell-escape", + "version": "0.2.0", + "description": "TypeScript definitions for shell-escape", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee451db49b54ca5bf221225b7bd14c72f3138d174fd04bcd0ced566d3d254f6da4fc83c188f453a6659a2aee474d62c218b4115951ebcd51d992d4c3bef476de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shell-escape@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shell-quote@1.7.1", + "group": "@types", + "name": "shell-quote", + "version": "1.7.1", + "description": "TypeScript definitions for shell-quote", + "hashes": [ + { + "alg": "SHA-512", + "content": "4966763689b5a64c97083a21452ae448abc387c40e1bd45f02caede7f36c3d00b8510279e5e1b4a82940e3423e1a47b3e0a4d0d2e0d44fc10b4574e17f72798f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shell-quote@1.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shell-quote" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shelljs@0.8.11", + "group": "@types", + "name": "shelljs", + "version": "0.8.11", + "description": "TypeScript definitions for ShellJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7dc9a32f121e4111a64a795402e2fa7797e428163dc15dc7786987ee292cc82328a18dd54044069d632dd230d233d16082752daf07d24bfd4e86424e4f6b143" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shelljs@0.8.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shelljs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shelljs-exec-proxy@0.1.0", + "group": "@types", + "name": "shelljs-exec-proxy", + "version": "0.1.0", + "description": "TypeScript definitions for shelljs-exec-proxy", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c7fccad21049fe3c62dd1f19c6291e8eeaecad079ced16bc9805b4d9cab0bf310224951d88c1eeade3615fa630f5e295eb48ff41ed54eb3aca442e5c16674bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shelljs-exec-proxy@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shimmer@1.0.2", + "group": "@types", + "name": "shimmer", + "version": "1.0.2", + "description": "TypeScript definitions for Shimmer", + "hashes": [ + { + "alg": "SHA-512", + "content": "74a92bd5b4f16c4b05961d804692b371a026b188b1aadf54c8276811993cac7c84e224187030b2bd28c349fec9516247949893b5b228423c4a87a562cb0a8302" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shimmer@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shimmer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shipit@1.5.3", + "group": "@types", + "name": "shipit", + "version": "1.5.3", + "description": "TypeScript definitions for shipit-cli", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bf1dd44c1c69038ad614e29d177334e795b17bd337b15a4e6cc5af0d57f91fb4b9ac6c3bca0fba9c6efc87ced9e5dbbea0b19cf34ccdfefa37385ce51574d25" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shipit@1.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shipit-utils@1.4.2", + "group": "@types", + "name": "shipit-utils", + "version": "1.4.2", + "description": "TypeScript definitions for shipit-utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "06c29fad1aaefcfae6b068033ce93713f29cd33fba607eb798faded361407872f47e0ec18a969070c72322d3937c70a587168b7519127f1ae7ddc7655141cd3b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shipit-utils@1.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shipit-cli@4.0.0", + "group": "@types", + "name": "shipit-cli", + "version": "4.0.0", + "description": "TypeScript definitions for shipit-cli", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e3d006327f650905a5ad65ebb22f7c24484bf9cc8afba5df5fa6eb7e2aaba5e598cfba82d85a108415307e892bc405ff6a84af22506e778de345bceea380dc1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shipit-cli@4.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shipit-cli" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shopify-buy@1.11.1", + "group": "@types", + "name": "shopify-buy", + "version": "1.11.1", + "description": "TypeScript definitions for shopify-buy", + "hashes": [ + { + "alg": "SHA-512", + "content": "48afa29ca8b7d067e3bb7c80cac8e4ecb52f509632b6442125c6c8e5a7d03e9bc6add04d18bb836adf6f728815f6f0a1da0a4f472990233680fea77b7891b9fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shopify-buy@1.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shortid@0.0.29", + "group": "@types", + "name": "shortid", + "version": "0.0.29", + "description": "TypeScript definitions for shortid", + "hashes": [ + { + "alg": "SHA-512", + "content": "f410980fd6ed836098e243dca4c43ebc247c53a57c7ff2af8b1603e596f1a1696485d74d17921e64c54bde9f90154920f876fe90f006f49824e1b9e7175bff17" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shortid@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/should-sinon@0.0.3", + "group": "@types", + "name": "should-sinon", + "version": "0.0.3", + "description": "TypeScript definitions for should-sinon", + "hashes": [ + { + "alg": "SHA-512", + "content": "2945d26806c6b1f04eff2d99bc2720d3ec3c8935c35c66b73e26d78ea6920b87305bf18ddb959844109ee5d6c1a2f1043b80304a9b06c526141fac244295d56c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/should-sinon@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon@5.0.7", + "group": "@types", + "name": "sinon", + "version": "5.0.7", + "description": "TypeScript definitions for Sinon", + "hashes": [ + { + "alg": "SHA-512", + "content": "a29c0c1ee7e1530927fd4503937e4b0db289a40d9506c653f162d4f0d8dacaf44b18fc5090dfbc5e67c2d97977e4c02c70113ce3af64a0b2c18da2375cb108c3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon@5.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/should@13.2.3", + "author": "TJ Holowaychuk", + "name": "should", + "version": "13.2.3", + "description": "test framework agnostic BDD-style assertions", + "hashes": [ + { + "alg": "SHA-512", + "content": "8202deb0bb6edb1a7e67123ecac25398d8e1d94d13b02fab43fa5f103f5b5196780ca79f3f6ec3fbb6095554ef2ac9a32e9222f6301aee2b700c69030e6b7519" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright(c) 2010-2013 TJ Holowaychuk \nCopyright(c) 2013-2017 Denis Bardadym \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/should@13.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shouldjs/should.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shouldjs/should.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shouldjs/should.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/should-equal@2.0.0", + "author": "Denis Bardadym", + "name": "should-equal", + "version": "2.0.0", + "description": "Deep comparison of 2 instances for should.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "64fdfa4ccacaf5eb84b9641806283d5b9e563c2eeea37eeacc01266e31f3e207f2b97ac452017c714bd054efb0f9ddce31f3ef491409db69529bc310278dcb4c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/should-equal@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shouldjs/equal" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shouldjs/equal/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shouldjs/equal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/should-type@1.4.0", + "author": "Denis Bardadym", + "name": "should-type", + "version": "1.4.0", + "description": "Simple module to get instance type. Like a bit more advanced version of typeof", + "hashes": [ + { + "alg": "SHA-512", + "content": "31d02c4eede7db9c836c87b535e37af46e27ea6527246b52247ca05f7fa837465b3b70d38804e77fb5e76097464f8d89097bab4dbd49234a8e051eb9b21be13d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/should-type@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shouldjs/type" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shouldjs/type/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shouldjs/type.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/should-format@3.0.3", + "author": "Denis Bardadym", + "name": "should-format", + "version": "3.0.3", + "description": "Formatting of objects for should.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "859e7c69db6e94093480ab6e6bb4317af8146974d35f1222f2de352f7ce8f401ef8d73b5ffbb1d2c40ae1de20dd9246d617a4d92686850fda975e5a0ae2710f9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/should-format@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shouldjs/format#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shouldjs/format/issues" + }, + { + "type": "vcs", + "url": "git://github.com/shouldjs/format.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/should-type-adaptors@1.1.0", + "author": "Denis Bardadym", + "name": "should-type-adaptors", + "version": "1.1.0", + "description": "Small utility functions to use the same traversing etc code on different types", + "hashes": [ + { + "alg": "SHA-512", + "content": "240e217682e737e91e6c4a7656cf1e05ef60eeecb4cdb468f9131c53412c372f91fa4d38f4a8be379b53e496a0b2dda0ec40236be7ae16ea171426bcbc89257c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Should.js assertion library\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/should-type-adaptors@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shouldjs/type-adaptors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shouldjs/type-adaptors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shouldjs/type-adaptors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/should-util@1.0.1", + "author": "Denis Bardadym", + "name": "should-util", + "version": "1.0.1", + "description": "Utility functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1717cb5fc71e5c0e4f2bda462a964509cd9a4306a558fc82365a1bd4d27f58dd762f01846679a7f53efbc8bd380f9efe0a27e112e4cd0fc83ab9269f98832da" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Should.js assertion library\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/should-util@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/shouldjs/util#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/shouldjs/util/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/shouldjs/util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/showdown@1.9.4", + "group": "@types", + "name": "showdown", + "version": "1.9.4", + "description": "TypeScript definitions for Showdown", + "hashes": [ + { + "alg": "SHA-512", + "content": "e747a10b72008a37e4be836a990f952fbdd2ee8acec6600af258d000506ff28ec6eba940672c508f52f7040bf6743f3a9b22d723eb2028fd6473101ac56df9eb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/showdown@1.9.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/showdown" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shrink-ray@0.1.2", + "group": "@types", + "name": "shrink-ray", + "version": "0.1.2", + "description": "TypeScript definitions for shrink-ray", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb1d104dcba31e42a5f77ae7af8e5d6d3f7d2aad1b7a16ede3f045634af49360c3af5c8868a1b51888bd5d4238c2aea2ed628894c82aa46fdc7f6f64d0f0b7d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/shrink-ray@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/shrink-ray" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/shuffle-array@0.0.28", + "author": "rhysd", + "group": "@types", + "name": "shuffle-array", + "version": "0.0.28", + "description": "TypeScript definitions for shuffle-array", + "hashes": [ + { + "alg": "SHA-512", + "content": "69ddc2c7551a82b1d7c8ba40542b0e340b3361e850e868edbdcee73cf84cb212b00b07cedd97218fdbf2ef7f001c208c0703b0ebff5ab5b6c8c06975a8c14090" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/shuffle-array@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/siema@1.4.8", + "group": "@types", + "name": "siema", + "version": "1.4.8", + "description": "TypeScript definitions for siema", + "hashes": [ + { + "alg": "SHA-512", + "content": "99c699dd57b455f5f7567c2a7f86dc66c1a6119f991917fe28baf06ddd9d4aa5d2cc6d2e67290813b3e4e28b94aa66952e462151414d34767d008475d877b286" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/siema@1.4.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/siema" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/siesta@0.0.27", + "author": "bquarmby", + "group": "@types", + "name": "siesta", + "version": "0.0.27", + "description": "TypeScript definitions for Siesta", + "hashes": [ + { + "alg": "SHA-512", + "content": "b533068ee1bf4ac6fce858e457c98eb2e38acd110b7f148a847ed26af6c181a8eafcd348228fc960ab841b9f19b92dda5ea72efd5015d4a3c13ab87be23f2a60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/siesta@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sigmajs@1.0.28", + "group": "@types", + "name": "sigmajs", + "version": "1.0.28", + "description": "TypeScript definitions for sigma.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c427f7705d783cdc1ca620199ec95baed6f3c0760bb19d5c4de02800f92d158702af806cf52215919c51396b93e292b15df325527982dae93dcfad19ea385ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sigmajs@1.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sigmajs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sigmund@1.0.0", + "group": "@types", + "name": "sigmund", + "version": "1.0.0", + "description": "TypeScript definitions for sigmund", + "hashes": [ + { + "alg": "SHA-512", + "content": "8cbd2f4e6f171103870aee837a135b6467855f146295b941b20616e1f6aa502413c1b45f9d9dbb0d91067a422a33f66c0c5308833d91918f0b22fa132e70d35c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sigmund@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/signale@1.4.4", + "group": "@types", + "name": "signale", + "version": "1.4.4", + "description": "TypeScript definitions for signale", + "hashes": [ + { + "alg": "SHA-512", + "content": "558cb854beb8800e2ec94218563e2d886145d15a5d9d16c97aa34434a197e36b683624efb7cdeb473c5daf45cae03477574d733ccd0940d22c2fe2305967e1b1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/signale@1.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/signale" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/signalr-no-jquery@0.1.3", + "group": "@types", + "name": "signalr-no-jquery", + "version": "0.1.3", + "description": "TypeScript definitions for signalr-no-jquery", + "hashes": [ + { + "alg": "SHA-512", + "content": "77fe37be335f18bf9cf62f3b9c621303e82548e7f5a4d15ef99bdd380eda0da2c6b238c143b70c5981a40dd63f1311adce0b8a64e66b87e119180a5a8c5882b8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/signalr-no-jquery@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/signalr-no-jquery" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/signals@1.0.1", + "group": "@types", + "name": "signals", + "version": "1.0.1", + "description": "TypeScript definitions for JS-Signals", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7aaac484fe75220cde0c3b9a59211ed776108db74368d2824bd72d49498a2f40befe1af5b3741234783d000d9da05b82e0f82078fddd23d675def65329107a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/signals@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/signature_pad@2.3.2", + "group": "@types", + "name": "signature_pad", + "version": "2.3.2", + "description": "TypeScript definitions for signature_pad", + "hashes": [ + { + "alg": "SHA-512", + "content": "7437d622045c77301a7953a92d198b1c8ba61b07398a7483e038f60ee8acdf2504a1200364408b2472a4510a616da00d43b9120b66e47f5273c813d299396b3d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/signature_pad@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/signature_pad" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-assign@0.1.4", + "group": "@types", + "name": "simple-assign", + "version": "0.1.4", + "description": "TypeScript definitions for simple-assign", + "hashes": [ + { + "alg": "SHA-512", + "content": "54387c33dd042e3588cef969904d24062b1ea5dd60583db81af2678319483602fe2bf2de3986f59ce7811370f97572d3aa375d585bd85f1da9a4d0b62567ce3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simple-assign@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-cw-node@0.0.29", + "group": "@types", + "name": "simple-cw-node", + "version": "0.0.29", + "description": "TypeScript definitions for simple-cw-node", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d14ed98350d18d784e7aee7b7459b5ce65154d561e6f17bbd848a13adb4f28b6787cc690c1b3f1f1d762087898f3d074d8ed471654fe53593a5b21a6b281195" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simple-cw-node@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/superagent@4.1.15", + "group": "@types", + "name": "superagent", + "version": "4.1.15", + "description": "TypeScript definitions for SuperAgent", + "hashes": [ + { + "alg": "SHA-512", + "content": "9aefcde2ebdf0cddb3550439018248fe0e2ac67d9b1c1eb9db5b7552e1f4f5284d5a379b4ea374645b982bdb988dc826234753404b3e3b08b510ee94d0e90e65" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/superagent@4.1.15", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/superagent" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/cookiejar@2.1.2", + "group": "@types", + "name": "cookiejar", + "version": "2.1.2", + "description": "TypeScript definitions for CookieJar", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7bdf1249aef7538d7ae7e232d2f5548645bcf49d4637725d833060d4e3c94a97e1d1f5d6db8d6d80f6bde0e34540fbe990a72eaeb87837de0cbb76ed812a9a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/cookiejar@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-lru@0.0.0", + "group": "@types", + "name": "simple-lru", + "version": "0.0.0", + "description": "TypeScript definitions for simple-lru", + "hashes": [ + { + "alg": "SHA-512", + "content": "26726d16b9c97d4727af149175db36d4cc02a05a841e90a6ae70781adc781ccbddf7eb06796bd129cc9bb5d0deab4b3ee035b53644bc1c780e4716cefa6720fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simple-lru@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-mock@0.0.27", + "author": "Leon Yu", + "group": "@types", + "name": "simple-mock", + "version": "0.0.27", + "description": "TypeScript definitions for simple-mock", + "hashes": [ + { + "alg": "SHA-512", + "content": "149961eda71dfffa87dfb4c37d18646f341227faf9831c5feedbd32de10135676881a096020f50b776c6cda40c5170696be8524ea6f074737e7077b57149d911" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/simple-mock@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-oauth2@1.6.2", + "group": "@types", + "name": "simple-oauth2", + "version": "1.6.2", + "description": "TypeScript definitions for simple-oauth2", + "hashes": [ + { + "alg": "SHA-512", + "content": "42de50477c3d7a83e57aafc4036a939bd94080163970ca75f2359e8a5a08f3cdbbc07777a2e654096c6631b7953afb0e6ccd5bbb2c32dad451c5c1a51b9c6c47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simple-oauth2@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/simple-oauth2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-peer@6.1.6", + "group": "@types", + "name": "simple-peer", + "version": "6.1.6", + "description": "TypeScript definitions for simple-peer", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e792d55ee270e434021fff96eb450e15a8c3fce3976d442ac53116a03b1893742f60677ae99e276df04191f3d6f9e56b6897ea2d60426f785904cb7229c40d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simple-peer@6.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-url-cache@0.0.1", + "author": "Antoine LUCAS", + "group": "@types", + "name": "simple-url-cache", + "version": "0.0.1", + "description": "TypeScript definitions for simple-url-cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe7483e8da40bb976ff8db15ad2e537a2a8107f9c0eced5db4e0d63abbf7b25c17716f5c3244a3eeb90fe46292cc0a129ca85111856e79ff0c83012d6a6b119c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/simple-url-cache@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-websocket@7.0.3", + "group": "@types", + "name": "simple-websocket", + "version": "7.0.3", + "description": "TypeScript definitions for simple-websocket", + "hashes": [ + { + "alg": "SHA-512", + "content": "aae241731d47e21a6ef83954c7008701ce10497e6e2a7e0bdb2ac8d41bce890a1d590985c961cc75b27a505a560dc752fc87c44b0cd976c7581eb975c9317970" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simple-websocket@7.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/simple-websocket" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ws@8.5.3", + "group": "@types", + "name": "ws", + "version": "8.5.3", + "description": "TypeScript definitions for ws", + "hashes": [ + { + "alg": "SHA-512", + "content": "e983a85a3aee2a3d6e2dfdc83471fb0f7a935f015f12c83591fddcd2e0dd4812707dafe5964c088eb00657b8fb99580635bcd34371e21ca2835e5e9b24f0fdef" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ws@8.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ws" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simple-xml@0.10.0", + "author": "Vitaliy Isikov", + "group": "@types", + "name": "simple-xml", + "version": "0.10.0", + "description": "TypeScript definitions for simple-xml", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0f533a07b88a6e65ed229c3055103b97ab7ad1b8d453c14a6f07026288b5a9a9a8b2f79a90b4572e1cac5ed29b68830f7bb5f4b4f9b93739f728a73884c8567" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/simple-xml@0.10.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simplebar@2.4.3", + "group": "@types", + "name": "simplebar", + "version": "2.4.3", + "description": "TypeScript definitions for simplebar.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "b935a17a3f9463df954071c020703024454bafdceba8ba5f28ad2fd4ddd573a4a7f7540f2637ce70ceb52f53d50ef605dedd8ad3ff5b4410c8db5432b28bea71" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simplebar@2.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simplemde@1.11.8", + "group": "@types", + "name": "simplemde", + "version": "1.11.8", + "description": "TypeScript definitions for SimpleMDE", + "hashes": [ + { + "alg": "SHA-512", + "content": "345dcc2758dd3f99c90790c7d873661902bad6646be91c687be1166e8c51d1706b212f79fcf807b8ff91cbaac227adc330c5fbd0e2b1bc9e1b08fe0822f2e13e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simplemde@1.11.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/simplemde" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simplesmtp@0.3.5", + "group": "@types", + "name": "simplesmtp", + "version": "0.3.5", + "description": "TypeScript definitions for simplesmtp", + "hashes": [ + { + "alg": "SHA-512", + "content": "77649be5e65de91e421a3c1f486c4d22d7c22682533d8ccd4d40cbe66ad4e23f19cc6d2d9450fc78cc53edf31f9cc94b3d16020b619b19885fc5481b01841e10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simplesmtp@0.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/simplesmtp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/simplestorage.js@0.2.32", + "group": "@types", + "name": "simplestorage.js", + "version": "0.2.32", + "description": "TypeScript definitions for simplestorage.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "339d882c21f6519226c0dd3c502d0c528a3849b762566e82ecefcbb9282e106b1f1210785ff78ed1887791a4c4cc049d6cb89287b26f42fe2ca669031853482d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/simplestorage.js@0.2.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/simplestorage.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/single-line-log@1.1.0", + "group": "@types", + "name": "single-line-log", + "version": "1.1.0", + "description": "TypeScript definitions for single-line-log", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d6c2a46f692b1fe32abfe1260be7fee7e62d915aa7fe8ed21195ab23eb972e6590d9d35c2d9037c0231ac4a5870bbf34f51cca819ac9cc11c6632be38c7a88d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/single-line-log@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-as-promised@4.0.14", + "group": "@types", + "name": "sinon-as-promised", + "version": "4.0.14", + "description": "TypeScript definitions for sinon-as-promised", + "hashes": [ + { + "alg": "SHA-512", + "content": "72e772d388ee29b0d751755d9bb9893eff701e44511e4f852ad3632b28da11ca639ab8564e45724db9b3e438d6c227dddaa36d5b4969251550daccb619c85988" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-as-promised@4.0.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-chai@3.2.8", + "group": "@types", + "name": "sinon-chai", + "version": "3.2.8", + "description": "TypeScript definitions for sinon-chai", + "hashes": [ + { + "alg": "SHA-512", + "content": "7782262106d3feb28c1bcf805e999c6a7e53dbf3cd7928eb621be4c1eb7acf4a7c93362d7e0037db1cce0656d4d32a897eafbfd0c97cd39885a0e0ced0b3f9fe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-chai@3.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sinon-chai" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/chai@4.3.1", + "group": "@types", + "name": "chai", + "version": "4.3.1", + "description": "TypeScript definitions for chai", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff33cca83933499f2ddd5b7139ae0a3eaeeecf35bdefc33d4ef87e8fb1872aea3a93a1932f13c9e09e601397237c9dbaa675ecb743791dac7c4abd13d8c8bdcd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/chai@4.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chai" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-chrome@2.2.11", + "group": "@types", + "name": "sinon-chrome", + "version": "2.2.11", + "description": "TypeScript definitions for Sinon-Chrome", + "hashes": [ + { + "alg": "SHA-512", + "content": "866a639480f0222f0b2d877364c87dfa88fa93898cee10f77440b66b9bf361b36f20422a0cbc440fc5a17eba2a2f32c72d85779e2e4dd5f2ce105d1f99a169a8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-chrome@2.2.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sinon-chrome" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/chrome@0.0.193", + "group": "@types", + "name": "chrome", + "version": "0.0.193", + "description": "TypeScript definitions for Chrome extension development", + "hashes": [ + { + "alg": "SHA-512", + "content": "47c0bce28aaf93c03c0bc1b5be205df2a2e90ebf3a63f8f00fe28b83351e91b213f5119db3a6bd1a7950ca0f0fee5b671a88133079221102b466572bbd37a8dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/chrome@0.0.193", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chrome" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/filesystem@0.0.32", + "group": "@types", + "name": "filesystem", + "version": "0.0.32", + "description": "TypeScript definitions for File System API", + "hashes": [ + { + "alg": "SHA-512", + "content": "62e7f88d1e5860c4760d5830b8288fd75b34c6e551c8f2a6cfcbe8e87058dc219d78c8fc69ff77085657f93f36f950f5f94a873b14eadf594eecc23b95ea41b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/filesystem@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/filesystem" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/filewriter@0.0.29", + "group": "@types", + "name": "filewriter", + "version": "0.0.29", + "description": "TypeScript definitions for File API: Writer", + "hashes": [ + { + "alg": "SHA-512", + "content": "06c3d71ff8ab5b486dd098ba8b0fe325a2bc2e3dc525e9a89f682f12a1caa4274309e7a61dafab2375811aae73edc0cc660a0b8d8e34a278a71b1aa4fbc37335" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/filewriter@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/har-format@1.2.8", + "group": "@types", + "name": "har-format", + "version": "1.2.8", + "description": "TypeScript definitions for HAR", + "hashes": [ + { + "alg": "SHA-512", + "content": "38fe8bf55b9935db2480d377cc5410e7871e603f0e2eae486ea3b854af753912df3a6ed6753fc2893fe91c4052404a82227276cb73ba8829bfcc6b4f125a6025" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/har-format@1.2.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/har-format" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-express-mock@1.3.9", + "group": "@types", + "name": "sinon-express-mock", + "version": "1.3.9", + "description": "TypeScript definitions for sinon-express-mock", + "hashes": [ + { + "alg": "SHA-512", + "content": "c07b5262a67f735172b4be2a10c55bdeda7c51993512752ae907388d0bf9789f4dd90b45752e165375a28eacdebb9af7fc37d9aa9bf39316db64b6b4fbd17db0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-express-mock@1.3.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-mongoose@1.3.11", + "group": "@types", + "name": "sinon-mongoose", + "version": "1.3.11", + "description": "TypeScript definitions for sinon-mongoose", + "hashes": [ + { + "alg": "SHA-512", + "content": "e73714e4e29aa599d68654eb71e0161d3a99c0b14768083c6aebcb0cb8979396f610fde231231a6b1b9a18e9762c5d6c5384957725787fd841aae9932e75251f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-mongoose@1.3.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-stub-promise@2.1.7", + "group": "@types", + "name": "sinon-stub-promise", + "version": "2.1.7", + "description": "TypeScript definitions for sinon-stub-promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb56d71032992daa695ee0fe1b50679a1ba09c28d9ec97c667d4f8dcabbdfb7e29cfa7298cddc2de720babedad3f912a0af7f3ffc7c6b4112642334ec45fabf5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-stub-promise@2.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sinon-test@1.0.7", + "group": "@types", + "name": "sinon-test", + "version": "1.0.7", + "description": "TypeScript definitions for sinon-test", + "hashes": [ + { + "alg": "SHA-512", + "content": "24dc64e559ad68f9f38ad0f119bed3eaa6a265a7b4a209fb8403190568b1c325d503d6c03eb9e2442f66a0f3f791f60f99e6e4aa8e8c1467dbf7f6c214478e28" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sinon-test@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sip.js@0.8.1", + "group": "@types", + "name": "sip.js", + "version": "0.8.1", + "description": "TypeScript definitions for sip.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce5d25af41e68d17ccdb7e9fded3c367460834f19958d7cac544bed7c28c9150419dd07205271abbf530ce220d569a0382731a23e55d793af085ac68f4f11778" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sip.js@0.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sipml@0.0.27", + "author": "A. Groenenboom", + "group": "@types", + "name": "sipml", + "version": "0.0.27", + "description": "TypeScript definitions for SIPml5", + "hashes": [ + { + "alg": "SHA-512", + "content": "15c0cc4b29f69ee01ae6d5c2e1403a9c110fd93f3598cf7bbf899f01a167ffc49587e5e3996a3e7f567e214896181e0b65fbdfc482c5656ae73d27fcd0f2fbe9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/sipml@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sitemap2@1.0.2", + "group": "@types", + "name": "sitemap2", + "version": "1.0.2", + "description": "TypeScript definitions for sitemap2", + "hashes": [ + { + "alg": "SHA-512", + "content": "66ef3b932db5b892e46a2113eb9049cf9f9f3cad40a4dd2b18c1856420f6cc219f85c7e87a4f0f7f61a522f8c6b0d8931d9c26a4df9cbe9e3c0fb9ac506eebf0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sitemap2@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sitemap2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/six-runtime@0.1.0", + "group": "@types", + "name": "six-runtime", + "version": "0.1.0", + "description": "TypeScript definitions for six-runtime", + "hashes": [ + { + "alg": "SHA-512", + "content": "55ac430ca65407efe075b7af8c87d3180310a4e2fde5e47878b84c87218634294e1239f5aaa3af3b8932eed7b8d1232f85d436c573dadb16a8cae3dc864042bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/six-runtime@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sjcl@1.0.30", + "group": "@types", + "name": "sjcl", + "version": "1.0.30", + "description": "TypeScript definitions for sjcl", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1e6c1b63d6bc772a1dd3a394673ee6be5382735701f63315261d0bc09715a9ce67e6ba9051cb25c020441c7a89fe7b9b56f5a05e380a53600e845df072b11c9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sjcl@1.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sjcl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/skatejs@5.0.4", + "group": "@types", + "name": "skatejs", + "version": "5.0.4", + "description": "TypeScript definitions for skatejs", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf20f9e3723684ce253486406b5848ba6f9099b70fd3d8a8a0e60a03c2922df42eb0bbbacab5d33e54f5a300c3650be3a2584a3bf494cc3da4879341236b66cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/skatejs@5.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/skatejs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ski@1.1.28", + "author": "Aya Morisawa", + "group": "@types", + "name": "ski", + "version": "1.1.28", + "description": "TypeScript definitions for ski 1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aba3bbc319228d2859e055ba29d0d14850efd3ea98d6511bde7e6eaf528cc9fa18550f58d64e148fde5c7d5592d00eba994ef1b70a4c46e416965eef9fcf36d8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/ski@1.1.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/skyway@0.0.28", + "group": "@types", + "name": "skyway", + "version": "0.0.28", + "description": "TypeScript definitions for SkyWay", + "hashes": [ + { + "alg": "SHA-512", + "content": "318fb7be79dd65d79efaaaec6fe67756d5ba35da9f2e2d2cfeccd2da9a77be14e7c38e30560b8e48db2ab4d13697f89fe87d06202f3cebf8d490caae248c4776" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/skyway@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/webrtc@0.0.32", + "group": "@types", + "name": "webrtc", + "version": "0.0.32", + "description": "TypeScript definitions for webrtc", + "hashes": [ + { + "alg": "SHA-512", + "content": "f85d0eceafa4b272ad8dc307ba34a06f8035563b746f8c2fbf13f7fe94e75cab08acba37e04807876cf7a89ab79ed5f875b2bacadc69635af33bfe19f2b56b1e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/webrtc@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webrtc" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slack-node@0.1.4", + "group": "@types", + "name": "slack-node", + "version": "0.1.4", + "description": "TypeScript definitions for slack-node", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b37015230fbe37c629af67ae3ab8bc817524223edfaaa9aa12f936eb60bbcd06c2f3da0d20c84d30975919276df3a8a34f21af19ccca2ffd27612436f9af68c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slack-node@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/slack-node" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slack-winston@0.0.1", + "group": "@types", + "name": "slack-winston", + "version": "0.0.1", + "description": "TypeScript definitions for slack-winston", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9872a086f4c889b82e27c28328ba21d3177df57c92d6bfdfef20d040f2ade7686db209c2d9c4afeeb30e710de6edef9cf4983d87c628fa156c3284076eb2b54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slack-winston@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/winston@2.4.4", + "group": "@types", + "name": "winston", + "version": "2.4.4", + "description": "Stub TypeScript definitions entry for winston, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "055182cedb32a56f0463027e1eaf90358893fcc5320a27f4a2e047f9f96b63ae8ee56f8a21700c30be84ff47c9a66ed58c8ce06a781a865e52d376c92501ab67" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/winston@2.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/winstonjs/winston#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/winstonjs/winston/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/winstonjs/winston.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/winston@3.8.1", + "author": "Charlie Robbins", + "name": "winston", + "version": "3.8.1", + "description": "A logger for just about everything.", + "hashes": [ + { + "alg": "SHA-512", + "content": "afee98022091e2e23737c79034e83c9373f73eac009b6d1c2ca973543f44eba0a1dfdf8b642f951f550a7fd25e9908f60774285077ca0fb3e87b09f43ebdd8d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010 Charlie Robbins\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/winston@3.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/winstonjs/winston#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/winstonjs/winston/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/winstonjs/winston.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40dabh/diagnostics@2.0.3", + "author": "Arnout Kazemier", + "group": "@dabh", + "name": "diagnostics", + "version": "2.0.3", + "description": "Tools for debugging your node.js modules and event loop", + "hashes": [ + { + "alg": "SHA-512", + "content": "86b9503888bb8407f3b0caa519217256e72bc77f0efa3eb088639ffff1f679cbc812a60de000c1492da22cc879505c83ba708d9e25083e4feadeb885bf8e7144" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40dabh/diagnostics@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/diagnostics" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/diagnostics/issues" + }, + { + "type": "vcs", + "url": "git://github.com/3rd-Eden/diagnostics.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/colorspace@1.1.4", + "author": "Arnout Kazemier", + "name": "colorspace", + "version": "1.1.4", + "description": "Generate HEX colors for a given namespace.", + "hashes": [ + { + "alg": "SHA-512", + "content": "060bca262b95bb58a00541769048d10995e897ac228866d8e62a4bfe854fc26d012fdb08a4c23333c20aeefc2ec48233397315dc4cb9c3ebf1866d2b47f4cdf3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/colorspace@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/colorspace" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/colorspace/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/3rd-Eden/colorspace.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/color@3.2.1", + "name": "color", + "version": "3.2.1", + "description": "Color conversion and manipulation with CSS string support", + "hashes": [ + { + "alg": "SHA-512", + "content": "023a6377c6aca99e8477141ea86cd4e560618537c9ff4700e1695badeedee6f5df9834a675aecebfa8de2a8aeef9bd2f1dc6f50aabeeae84c7a79cc85b385530" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2012 Heather Arthur\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/color@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Qix-/color#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Qix-/color/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Qix-/color.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/text-hex@1.0.0", + "author": "Arnout Kazemier", + "name": "text-hex", + "version": "1.0.0", + "description": "Generate a hex color from the given text", + "hashes": [ + { + "alg": "SHA-512", + "content": "bae546356ce0278ca145a3528ae6cf63b3a3212c38b30e04e54bf4c1b8e9f8ecdc6e6554febb13f2e8e07172619fdca9cec82be6f973a4fa8ff8c04129c1af6e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-2015 Arnout Kazemier \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/text-hex@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/text-hex" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/text-hex/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/3rd-Eden/text-hex.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/enabled@2.0.0", + "author": "Arnout Kazemier", + "name": "enabled", + "version": "2.0.0", + "description": "Check if a certain debug flag is enabled.", + "hashes": [ + { + "alg": "SHA-512", + "content": "00aacdf7c92ec0eccc21d022cd7188f3a505068a36e822f6d5433beb7cb587f18c489e3f38753d936625b26069c92705a3fc1b2f35902413025b8f883b7ffe39" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/enabled@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/enabled#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/enabled/issues" + }, + { + "type": "vcs", + "url": "git://github.com/3rd-Eden/enabled.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/kuler@2.0.0", + "author": "Arnout Kazemier", + "name": "kuler", + "version": "2.0.0", + "description": "Color your terminal using CSS/hex color codes", + "hashes": [ + { + "alg": "SHA-512", + "content": "5eaf671fb2a559999702da1d5c30d113bbece8353581353ccd80c70e258b4a2a78e44830ab7a652c7ccf9f6ecd82fccbdabd4b30f0b5bddaa1f7cb10c6daa3e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2014 Arnout Kazemier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/kuler@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/kuler" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/kuler/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/3rd-Eden/kuler.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async@3.2.4", + "author": "Caolan McMahon", + "name": "async", + "version": "3.2.4", + "description": "Higher-order functions and common patterns for asynchronous code", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d2560a1b938aefeb547d3d4483b58b7b98f541da8971351e51589700b07ebbebf79fd756d4670beeefe44662b61ab957433dc3b9d7dbfaf304615d0b71b15f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2010-2018 Caolan McMahon\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/async@3.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://caolan.github.io/async/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/caolan/async/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/caolan/async.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-stream@2.0.1", + "author": "Sindre Sorhus", + "name": "is-stream", + "version": "2.0.1", + "description": "Check if something is a Node.js stream", + "hashes": [ + { + "alg": "SHA-512", + "content": "b903e6f2472ce3b8f1dfc6ad01c593571ca5b506283d3ebccbd69661d57ac965d2c96f26cd26add132fa0a259d65e09d1772ab02fa55b671db4efe1137eaea75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (https://sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-stream@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/logform@2.4.2", + "author": "Charlie Robbins", + "name": "logform", + "version": "2.4.2", + "description": "An mutable object-based log format designed for chaining & objectMode streams.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b873d86299e0305c4759d3975035eae1173d971bcd0ff4e8f49683d4315db7542da2b74a2b307421266e217679e8af7addd47b067fa6b694fc01335cde5c71b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\r\n\r\nCopyright (c) 2017 Charlie Robbins & the Contributors.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/logform@2.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/winstonjs/logform#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/winstonjs/logform/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/winstonjs/logform.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40colors/colors@1.5.0", + "author": "DABH", + "group": "@colors", + "name": "colors", + "version": "1.5.0", + "description": "get colors in your node.js console", + "hashes": [ + { + "alg": "SHA-512", + "content": "a28582ae564fd758bc1889928d31d81cb92f1433f8f274b8fb6d389c66f54625ff59760798903620823dfded8359569b08449d5bb841004cc746a527f4e515bd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nOriginal Library\n - Copyright (c) Marak Squires\n\nAdditional Functionality\n - Copyright (c) Sindre Sorhus (sindresorhus.com)\n - Copyright (c) DABH (https://github.com/DABH)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40colors/colors@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DABH/colors.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DABH/colors.js/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/DABH/colors.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fecha@4.2.3", + "author": "Taylor Hakes", + "name": "fecha", + "version": "4.2.3", + "description": "Date formatting and parsing", + "hashes": [ + { + "alg": "SHA-512", + "content": "38fd88514e877982898b78b4cf8035f641cc4282d5b381dcf833eaab123687f0cf6474e6fef8ec7c2e8fd1be2308ccb5e178b32c1aaf9dd43e522943efbd3b27" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Taylor Hakes\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/fecha@4.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/taylorhakes/fecha" + }, + { + "type": "issue-tracker", + "url": "https://github.com/taylorhakes/fecha/issues" + }, + { + "type": "vcs", + "url": "git+https://taylorhakes@github.com/taylorhakes/fecha.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/safe-stable-stringify@2.3.1", + "author": "Ruben Bridgewater", + "name": "safe-stable-stringify", + "version": "2.3.1", + "description": "Deterministic and safely JSON.stringify to quickly serialize JavaScript objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "9180527d3fadae80fd70303ce550e71d9d6ba470b9d0ed20d5ee969461d50b3fe0f894bef5628b8fe5f0158c91f146eb64df2597d1d4a4300075d639f0c1a2b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Ruben Bridgewater\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/safe-stable-stringify@2.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/BridgeAR/safe-stable-stringify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/BridgeAR/safe-stable-stringify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/BridgeAR/safe-stable-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/triple-beam@1.3.0", + "author": "Charlie Robbins", + "name": "triple-beam", + "version": "1.3.0", + "description": "Definitions of levels for logging purposes & shareable Symbol constants.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5eb1d4bd5e47a5d2e6223e2e54cc478202db152658227ec7116b2a78f65c239d29728f8c3ea279d3030663bf785fb00e3a1c4e0408db92a7c06c47bf40ca762f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 winstonjs\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/triple-beam@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/winstonjs/triple-beam#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/winstonjs/triple-beam/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/winstonjs/triple-beam.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/one-time@1.0.0", + "author": "Arnout Kazemier", + "name": "one-time", + "version": "1.0.0", + "description": "Run the supplied function exactly one time (once)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e435ce8912b0b9211c43f974906085e90de37000c5bf9b52991689724fceaa454570eceeb41d77e0a4527c5d310eb2f7f4c367ab16c705b51472364885381bda" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/one-time@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/one-time#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/one-time/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/3rd-Eden/one-time.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fn.name@1.1.0", + "author": "Arnout Kazemier", + "name": "fn.name", + "version": "1.1.0", + "description": "Extract names from functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "1919e607980fc89a4085341d4994d2a7db9a3d2be5d3d2a861c310b6c07dad0a0e9b3b3d747e9f7de71c1fe67e72fe8febc1eee5b0ba263461e0087f98748d47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/fn.name@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/3rd-Eden/fn.name" + }, + { + "type": "issue-tracker", + "url": "https://github.com/3rd-Eden/fn.name/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/3rd-Eden/fn.name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stack-trace@0.0.10", + "author": "Felix Geisendörfer", + "name": "stack-trace", + "version": "0.0.10", + "description": "Get v8 stack traces as an array of CallSite objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "286cda85cee9b942a4cf232df88a807a9f9354d6ca3fe9362e6c21b9bdfd9b502c4d291a0eeb71e7a6830a8f872c3cdffc3dba0481d32563624c6d4a0098900a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2011 Felix Geisendörfer (felix@debuggable.com)\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stack-trace@0.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/felixge/node-stack-trace" + }, + { + "type": "issue-tracker", + "url": "https://github.com/felixge/node-stack-trace/issues" + }, + { + "type": "vcs", + "url": "git://github.com/felixge/node-stack-trace.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/winston-transport@4.5.0", + "author": "Charlie Robbins", + "name": "winston-transport", + "version": "4.5.0", + "description": "Base stream implementations for winston@3 and up.", + "hashes": [ + { + "alg": "SHA-512", + "content": "629673714cc179d8654c07c983abc90e5c846a2fc814c21571a119672977517225e209aa46953b004f3d0072e46f32d4b2fd0d566c3bb6cfa2ceda8ac713d6d5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Charlie Robbins & the contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/winston-transport@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/winstonjs/winston-transport#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/winstonjs/winston-transport/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/winstonjs/winston-transport.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slackdown@0.1.0", + "group": "@types", + "name": "slackdown", + "version": "0.1.0", + "description": "TypeScript definitions for slackdown", + "hashes": [ + { + "alg": "SHA-512", + "content": "48a77249d69b7bb85413454a7977b81452e3baef0f2ed649f092cc88feee6405ab6ba579aef569ae362240895c4fb6091fa033f7380110f304fd8cfc1293da8f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slackdown@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slackify-html@1.0.5", + "author": "Scott Rippee", + "group": "@types", + "name": "slackify-html", + "version": "1.0.5", + "description": "TypeScript definitions for slackify-html v1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "39cef48e74bee45778bdc22a37cd15035d063f9d29bc1b8946d2eaca03aebf4c3cec4f8fb4e83a582f490519e7a9d287f5f6ba9a5d1aacb52da6c021a74027d2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/slackify-html@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slate@0.33.4", + "group": "@types", + "name": "slate", + "version": "0.33.4", + "description": "TypeScript definitions for slate", + "hashes": [ + { + "alg": "SHA-512", + "content": "47a6a7d69651be0152463527156ebb94bd00f034c20e04d540f4fe5dfe71d5c3a1a59f7629725a21aee0eec3a02d7bf335219d4d7fb8c73acd70ff4fd2b0f93c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slate@0.33.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slate-base64-serializer@0.2.2", + "group": "@types", + "name": "slate-base64-serializer", + "version": "0.2.2", + "description": "TypeScript definitions for slate-base64-serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "41bd90c2a065321a15f2047c1e6931a6a992ef9f28fe9dd1e194fb152c9b61b3753c4d7cbaee59d37d2608b63d419e7216afbdcd43108786384ff53d40d141c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slate-base64-serializer@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slate-html-serializer@0.6.5", + "group": "@types", + "name": "slate-html-serializer", + "version": "0.6.5", + "description": "TypeScript definitions for slate-html-serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad97d9c412bd93b22ee18bb6afa2080b6b4170329e433cad86e5efb872c4a103e8ab0f62551e57925f355119297165c1c0b8dc9bfd88d935a91ab8e2a39c3fa2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slate-html-serializer@0.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/slate-html-serializer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slate-irc@0.0.28", + "group": "@types", + "name": "slate-irc", + "version": "0.0.28", + "description": "TypeScript definitions for slate-irc", + "hashes": [ + { + "alg": "SHA-512", + "content": "b73d00aca457f0075bf602616cf2433750f18d128f6a6c733e978c76b51cef314913c0c5c5f37e65d042392e034ae219cc87753917b1d9409b16ebc9bb58a0a6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slate-irc@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slate-plain-serializer@0.5.1", + "group": "@types", + "name": "slate-plain-serializer", + "version": "0.5.1", + "description": "TypeScript definitions for slate-plain-serializer", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d4f33c1766b471ea54ca819f8c035cd27da7dff3b2003de7806bb866c9e464d4b92898db1ac3314d4b8810e454f53c1f7316c6e5f2b470df95aa820514c830d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slate-plain-serializer@0.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slate-react@0.12.3", + "group": "@types", + "name": "slate-react", + "version": "0.12.3", + "description": "TypeScript definitions for slate-react", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3b4ab0c62a24be8644ea314db22b3f91dc7fa1c3deda8dc8957fc0bc2106e6d0a0875fda498bb8dd882022445f9b7bcdf8e4350c208560fed47f4d7a879989e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slate-react@0.12.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sleep@0.0.7", + "group": "@types", + "name": "sleep", + "version": "0.0.7", + "description": "TypeScript definitions for node-scanf", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd85e7b91cc670783e7fa3351024a626c9cb7aae2d2c06a4182d4dc2a89693c40d8f26cc8d73b2f7e607ef357bc6b411b2b6aeb65ed1e09826a2f1102a1f7154" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sleep@0.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slick-carousel@1.6.37", + "group": "@types", + "name": "slick-carousel", + "version": "1.6.37", + "description": "TypeScript definitions for stick", + "hashes": [ + { + "alg": "SHA-512", + "content": "442bf0272392c604d5ddcf98c5761d40557dddc9c573e04dfad24a5b235974853d8228dbcfc3c665af06a4587d704dfd837b19419d688a0c3ffe925c0925c83e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slick-carousel@1.6.37", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/slick-carousel" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slickgrid@2.1.32", + "group": "@types", + "name": "slickgrid", + "version": "2.1.32", + "description": "TypeScript definitions for SlickGrid", + "hashes": [ + { + "alg": "SHA-512", + "content": "4de20b6555b719cf8b5fdb3905b4717cadc654e697fa3091318009bfda6e158f852db0aa98c181fc06eb1ef94b53893f2706845adcdb54234ee47fefd629c0fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slickgrid@2.1.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/slickgrid" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slideout@0.1.20", + "group": "@types", + "name": "slideout", + "version": "0.1.20", + "description": "TypeScript definitions for Slideout", + "hashes": [ + { + "alg": "SHA-512", + "content": "2840c2f738660070a759dab5985117b9dd8a11904cf891d53674b97b87d8dbbc7e917f6738a58439754e584fcb5366f7685c975e3f77e8aa2020589ce7498554" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slideout@0.1.20", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/slideout" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slimerjs@0.10.5", + "group": "@types", + "name": "slimerjs", + "version": "0.10.5", + "description": "TypeScript definitions for SlimerJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "183a1862f712e9002f422f8a2d8ca93b1e45a7c4c5a10189b296ba591dc0c988d744595e2060cd481c43bc36795bc568d4eeb202033f1fe6ad9ab5f1267d0074" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slimerjs@0.10.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/slimerjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slocket@1.0.1", + "group": "@types", + "name": "slocket", + "version": "1.0.1", + "description": "TypeScript definitions for slocket", + "hashes": [ + { + "alg": "SHA-512", + "content": "401c8ed4386bb46b7acf8fdc79d74099f2aa80987ae7f56427d24d37098aae390dad6f5c364bf63420d9ee28195a7678c6f3f2b1d9a91ea27cbe8b2452f1973c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slocket@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/slug@0.9.1", + "group": "@types", + "name": "slug", + "version": "0.9.1", + "description": "TypeScript definitions for slug", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd1feef16150e3feae0888a48c8d346b9b81d3ce178e010635102f3386b504bdfd070f721220d01623d2d83809f253c3911d9077fbd9dba74247d5ea94a6c3a9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/slug@0.9.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/smart-fox-server@0.0.5", + "author": "Gregory Moore", + "group": "@types", + "name": "smart-fox-server", + "version": "0.0.5", + "description": "TypeScript definitions for SmartFoxServer Apis", + "hashes": [ + { + "alg": "SHA-512", + "content": "90cbf812a044f56a2f1491450d8ee93249e16e3cc11ac93e1f0b07d479889faa01f85ef5b5f92be12add336182b868ab0e43229c6b5cb6058aad9c276923149f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/smart-fox-server@0.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/smoothscroll-polyfill@0.3.1", + "group": "@types", + "name": "smoothscroll-polyfill", + "version": "0.3.1", + "description": "TypeScript definitions for smoothscroll-polyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8a907c38cbe132782b555c44fbc281d48486df58509f95cd04d26667495f997633d0787b7ff4a3c4b93ee0496fe4150f0edc41b7d0f2cefbe6210a10edf3e02" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/smoothscroll-polyfill@0.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/smtp-server@3.5.7", + "group": "@types", + "name": "smtp-server", + "version": "3.5.7", + "description": "TypeScript definitions for smtp-server", + "hashes": [ + { + "alg": "SHA-512", + "content": "f07b5c09e3750c2bb73f70f8ba77d1970453dac339e0f4120677f009fe87665e021f6df8953bd3271297bd9b5c25a8e0f260a08922e427aaeb6ad121c60be1a9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/smtp-server@3.5.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/smtp-server" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/nodemailer@6.4.4", + "group": "@types", + "name": "nodemailer", + "version": "6.4.4", + "description": "TypeScript definitions for Nodemailer", + "hashes": [ + { + "alg": "SHA-512", + "content": "2acc38b7b8a58977981af210712220590e412ee0bf9a58c811b8dfeb5e6cbe164bd743c4f6df9e8bc3bd803683dc53c26ac5099fd2932f0cf62452728a2caeab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/nodemailer@6.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/nodemailer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/smtpapi@1.2.30", + "author": "Antonio Morales", + "group": "@types", + "name": "smtpapi", + "version": "1.2.30", + "description": "TypeScript definitions for smtpapi-nodejs v1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0dd43c804ebb378a0e4d75950345b1d067f5a46d5fd70023925a7cf797ec9263f3eb3a142ae92e7b40c74aa1fc716c773697b81901ae7230e1a61c77e4039d18" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/smtpapi@1.2.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/snapsvg@0.4.35", + "group": "@types", + "name": "snapsvg", + "version": "0.4.35", + "description": "TypeScript definitions for Snap-SVG", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c3039328d1858f74a4fa23690db9c22bdde5bb7c42d5e5ce14d9837cca3e560a068909f4400b5e7cfa8c9ee0eabd2f2a99440d2750cf87bd5603c134f0edf9a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/snapsvg@0.4.35", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/mina@0.4.2", + "group": "@types", + "name": "mina", + "version": "0.4.2", + "description": "TypeScript definitions for mina Snap-SVG", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa0f8677e8ed7ade98bae6781f26f354614cdfb0ae4fe8fc890f8944d3cddb62764b5f8555a7f9f523a2099023ddbcdc607730084f31e0d604d2c1d21a452dfd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/mina@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/snazzy-info-window@1.1.7", + "group": "@types", + "name": "snazzy-info-window", + "version": "1.1.7", + "description": "TypeScript definitions for snazzy-info-window", + "hashes": [ + { + "alg": "SHA-512", + "content": "58669e214f8b9e98fe8b8b322f49b536b2eab442d6b10169029ace138113b9d1339640bb2f1ab70c73f2cd1a58391b1da0cf70df8894769a8aad5fd63d001eee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/snazzy-info-window@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/snazzy-info-window" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/snekfetch@4.0.4", + "group": "@types", + "name": "snekfetch", + "version": "4.0.4", + "description": "TypeScript definitions for snekfetch", + "hashes": [ + { + "alg": "SHA-512", + "content": "414f6858f56484257f83e64ee7d51797b4fc87f84c45cc54e97603cf89e4911633ffc7599b9623683ff246e36b635b9a3a3a8eb4eb509fc7c7da37aa747267bb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/snekfetch@4.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/snekfetch" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/snoowrap@1.19.0", + "group": "@types", + "name": "snoowrap", + "version": "1.19.0", + "description": "Stub TypeScript definitions entry for snoowrap, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce3cd6ffb06b80d8bdc3695f072be53da173f9cf3d1de568b96a318a5a5126e0d4d8c36c4d15b96910dcffc0e07e7d42ac5617fbb88dd7cf9b4acc3f94188709" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/snoowrap@1.19.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/not-an-aardvark/snoowrap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/not-an-aardvark/snoowrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/not-an-aardvark/snoowrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/snoowrap@1.23.0", + "author": "not-an-aardvark", + "name": "snoowrap", + "version": "1.23.0", + "description": "A JavaScript wrapper for the reddit API", + "hashes": [ + { + "alg": "SHA-512", + "content": "f052065abdb419cf9dfc2dcd46b34fa7955014d6fe786690caf2243392942fbd6962944cdb7d5f91174b37274caddb4b3510eb4d97990291c709bf1493f42e4d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright © 2016 @not-an-aardvark\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the “Software”), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/snoowrap@1.23.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/not-an-aardvark/snoowrap" + }, + { + "type": "issue-tracker", + "url": "https://github.com/not-an-aardvark/snoowrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/not-an-aardvark/snoowrap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/promise-chains@0.3.12", + "author": "not-an-aardvark", + "name": "promise-chains", + "version": "0.3.12", + "description": "A wrapper to to allow easy synchronous manipulation of Promises", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e02b469c03f7636f16c984dfa8a11dfe542873803af8c1362184197124251008edb3b03dfbfd2b87071796701fbfbe5c1a836344afe905cf4dff5411ecfb33f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n=====================\n\nCopyright © 2016 @not-an-aardvark\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the “Software”), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/promise-chains@0.3.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/not-an-aardvark/promise-chains#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/not-an-aardvark/promise-chains/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/not-an-aardvark/promise-chains.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/harmony-reflect@1.6.2", + "name": "harmony-reflect", + "version": "1.6.2", + "description": "ES5 shim for ES6 (ECMAScript 6) Reflect and Proxy objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c8a7f9f7f11f644230c4ce25f20d3b96defbe8c71cb18f11735cbac1af5f2e078ec69d2b7e1bd0f6f5faaba4ce5992ca4c70f202b9ddd7b01250e18d94460f2" + } + ], + "licenses": [ + { + "license": { + "name": "(Apache-2.0 OR MPL-1.1)" + } + } + ], + "purl": "pkg:npm/harmony-reflect@1.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tvcutsem/harmony-reflect" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tvcutsem/harmony-reflect/issues" + }, + { + "type": "vcs", + "url": "git+https://tvcutsem@github.com/tvcutsem/harmony-reflect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/request-promise@4.2.6", + "author": "Nicolai Kamenzky", + "name": "request-promise", + "version": "4.2.6", + "description": "The simplified HTTP request client 'request' with Promise support. Powered by Bluebird.", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c21c8dc324951a9243abf1f36809cef71399d4e5ba884e339814c0eb28760e5d65eb803fd205a0bb2e3c2e3f2994a6b472b85d3a50aee177f94c1e49945e095" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2020, Nicolai Kamenzky, Ty Abonil, and contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/request-promise@4.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/request/request-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/request/request-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/request/request-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/request-promise-core@1.1.4", + "author": "Nicolai Kamenzky", + "name": "request-promise-core", + "version": "1.1.4", + "description": "Core Promise support implementation for the simplified HTTP request client 'request'.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d36c07c10517560fb68d34ea153811f8a4dfca8a057a2f26a960d36500f03c2706e8bd1b62d44f3c9b7b18030b0b8b9af284f2ac13d00fc278c54e07548d3a7" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2020, Nicolai Kamenzky and contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/request-promise-core@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/request/promise-core#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/request/promise-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/request/promise-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stealthy-require@1.1.1", + "author": "Nicolai Kamenzky", + "name": "stealthy-require", + "version": "1.1.1", + "description": "The closest you can get to require something with bypassing the require cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "6675a962762e822395118e4691cb892b58a8e55f1098d602846eb68128adf69415184ad7b6b2ae3c2e792136954ae92632d6b9aa9314eefa8bb762e79e2e1ffe" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License\n\nCopyright (c) 2017, Nicolai Kamenzky and contributors\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/stealthy-require@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/analog-nico/stealthy-require#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/analog-nico/stealthy-require/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/analog-nico/stealthy-require.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ws@3.3.3", + "author": "Einar Otto Stangvik", + "name": "ws", + "version": "3.3.3", + "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a372aa8a95cd51d4bbc2943304749ed7cd250463bad12a0ad32568dc260981bd8c9286ee5ae057e9d86460fe4e4422dde79cbe49a7e530e5797ea001e77bb1e3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011 Einar Otto Stangvik \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ws@3.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/websockets/ws" + }, + { + "type": "issue-tracker", + "url": "https://github.com/websockets/ws/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/websockets/ws.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/snowboy@1.3.1", + "group": "@types", + "name": "snowboy", + "version": "1.3.1", + "description": "Stub TypeScript definitions entry for snowboy, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2a916f48dcf6dc0099aaeab909cfdaa8c1df4e5ded574415001c8516eb8e0d898deeb89e5d160893b68e60e066eb1cceb27e20b578daec6a0dd34674ecf48c2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/snowboy@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Kitt-AI/snowboy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Kitt-AI/snowboy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Kitt-AI/snowboy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/snowboy@1.3.1", + "author": "KITT.AI", + "name": "snowboy", + "version": "1.3.1", + "description": "Snowboy is a customizable hotword detection engine", + "hashes": [ + { + "alg": "SHA-512", + "content": "62fc097dfcb76f4d3420a09baacc8c5ab43a81afea65110280da066fd99291b1465f54081b82afd12e29544b14a5b3351ade1bfb5e013ae7e47627190ac4ede2" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "content": "THIS LICENSE GOVERNS THE SOURCE CODE, THE LIBRARIES, THE RESOURCE FILES, AS WELL\nAS THE HOTWORD MODEL snowboy/resources/snowboy.umdl PROVIDED IN THIS REPOSITORY.\nALL OTHER HOTWORD MODELS ARE GOVERNED BY THEIR OWN LICENSES.\n\n\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/snowboy@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Kitt-AI/snowboy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/Kitt-AI/snowboy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/Kitt-AI/snowboy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socket.io@1.4.42", + "group": "@types", + "name": "socket.io", + "version": "1.4.42", + "description": "TypeScript definitions for socket.io", + "hashes": [ + { + "alg": "SHA-512", + "content": "d929d671edc3881564b30849829a38152a0c4c000792cc583855da0597b889caebaefa5779ef3250f3994fbef1cd6bcb670eb74294445071d6ccce254291e3b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socket.io@1.4.42", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socket.io-parser@2.2.1", + "group": "@types", + "name": "socket.io-parser", + "version": "2.2.1", + "description": "TypeScript definitions for socket.io-parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8935bfbb37bb5220dc973f10096fadbe35ca42d71fdf3e7ef3f35f16e3178d09d3d3a7a56c3bf5fc7c2b20ebeba0e1ae7a9b5bfdb0489320850a56ea5c1ce15" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socket.io-parser@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socket.io-redis@1.0.27", + "group": "@types", + "name": "socket.io-redis", + "version": "1.0.27", + "description": "TypeScript definitions for socket.io-redis", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3224f0e39f90e7722df0643d9b7758df3ec264aaf4f0a0d1a938817effe3f8e5c3a7e33ad8b143bd99c18dfec868c48942cfa6dc7518524575b06451907353c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socket.io-redis@1.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socket.io.users@0.0.30", + "group": "@types", + "name": "socket.io.users", + "version": "0.0.30", + "description": "TypeScript definitions for socket.io.users", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbf1218171f4d8ff22d91966ee4a33e60e9da27a6b622d69d76a7d24e2572535eef50747124a7c9c3085b571262600495d86081d95d8866de5c486e03019ae23" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socket.io.users@0.0.30", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socketio-jwt@0.0.0", + "group": "@types", + "name": "socketio-jwt", + "version": "0.0.0", + "description": "TypeScript definitions for socketio-jwt", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0c287682e001475899d525dba35ad878371b09bd0dd7e42a08fa0ee5953b85a8366fd242237d4d841ab8bb30fdf0f74c07ec6cff1b29536de663d947dca156c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socketio-jwt@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socketio-jwt-auth@0.0.0", + "group": "@types", + "name": "socketio-jwt-auth", + "version": "0.0.0", + "description": "TypeScript definitions for socketio-jwt-auth", + "hashes": [ + { + "alg": "SHA-512", + "content": "9529c00eb42e1dfe2e588006693a54a478d72e656276489681fba09d6c7637a2c0ea06276b583328fc5e81217a8eaa3fbb6b7ea6deee557bca5e93145d9a56d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socketio-jwt-auth@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socketio-wildcard@2.0.4", + "group": "@types", + "name": "socketio-wildcard", + "version": "2.0.4", + "description": "TypeScript definitions for socketio-wildcard", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3604aec17f7b2d21cbca5d68d116d3e008e3188b829684048f855ce462964e47da906ed8fbc412443e2d1f924b0325ea9e457085db76b314439a4415ee50234" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socketio-wildcard@2.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socket.io@2.1.13", + "group": "@types", + "name": "socket.io", + "version": "2.1.13", + "description": "TypeScript definitions for socket.io", + "hashes": [ + { + "alg": "SHA-512", + "content": "d929d671edc3881564b30849829a38152a0c4c000792cc583855da0597b889caebaefa5779ef3250f3994fbef1cd6bcb670eb74294445071d6ccce254291e3b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/socket.io@2.1.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/engine.io@3.1.7", + "group": "@types", + "name": "engine.io", + "version": "3.1.7", + "description": "TypeScript definitions for engine.io", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8d8d55dcae9fb5b12f18a5151aef5e2bd298333b0112756e548c72fb0ffd9915d057d015d45ed8352d4ae9fb296fa9bbcc70c594cbbdd8a51a313cdd95a0a01" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/engine.io@3.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/engine.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/socketty@0.2.27", + "author": "Nax", + "group": "@types", + "name": "socketty", + "version": "0.2.27", + "description": "TypeScript definitions for Socketty v0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "877112e25cd151bf74e15154ff502afe13edc2a1ff37f9525cbc2f686d357be5b870cf0a89c83aee29ba7c97d29c4c66651e24865fc28978fa0279ad878e7cec" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/socketty@0.2.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sockjs@0.3.33", + "group": "@types", + "name": "sockjs", + "version": "0.3.33", + "description": "TypeScript definitions for sockjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f428411ed3936f5276adf9ba0f4d9d1d81a2d9e127d2a2e5d482fe67a1489e7c6d9a8e02a39844e8f59272baab25edd7e5d9a1e52c9522922e81e196257628b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sockjs@0.3.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sockjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sockjs-client@1.5.1", + "group": "@types", + "name": "sockjs-client", + "version": "1.5.1", + "description": "TypeScript definitions for sockjs-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e664ce80d463dd8c5d1b72e2140bee7485910c1a4cccb221bd6f2e97f54fbb21914e88fb73ecc27d874e454a93d5c658f88be4f3ce81b7112a3514995b2dbe8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sockjs-client@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sockjs-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/solidity-parser-antlr@0.2.3", + "group": "@types", + "name": "solidity-parser-antlr", + "version": "0.2.3", + "description": "TypeScript definitions for solidity-parser-antlr", + "hashes": [ + { + "alg": "SHA-512", + "content": "1684b2653fb54d36a87db12d196d680bdc07343d58b21bd57877ab304fc987a8087476c1016156f00f7b618a8efdda477058c8c043c47a95f411f976724260c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/solidity-parser-antlr@0.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/solr-client@0.7.6", + "group": "@types", + "name": "solr-client", + "version": "0.7.6", + "description": "TypeScript definitions for solr-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "36ce6c95fb4ce61e40d71005f6ea51482664adc6a9c58b9dd0f7b71b04c3bd3052c0fb652c93f53fc662d348b48cc837edbc513431ece3de095703ecbe6d9ca4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/solr-client@0.7.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/solr-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/solution-center-communicator@2.3.2", + "group": "@types", + "name": "solution-center-communicator", + "version": "2.3.2", + "description": "TypeScript definitions for Solution Center Communicator", + "hashes": [ + { + "alg": "SHA-512", + "content": "de19738274aa04893dde485fec935d4846ceafc25569291c7a6bcabcf6c1bf06b3b2c6c533bb29a54aea3b5ad5d18b23a4be3b1789f544acd5a49c4912b90678" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/solution-center-communicator@2.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/solution-center-communicator" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sort-array@2.0.0", + "group": "@types", + "name": "sort-array", + "version": "2.0.0", + "description": "TypeScript definitions for sort-array", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b518ed99b72d1d91fae19a200a44ed35c7106e2cf1f64462de693818613c2fc8aa0005402140ae90596c217ccb59b95ecf55bde33ee2f577148674fe2debf68" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sort-array@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sortablejs@1.13.0", + "group": "@types", + "name": "sortablejs", + "version": "1.13.0", + "description": "TypeScript definitions for Sortable.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b7d3ae0c1fbda211f7860981060adec50b15e801768c3c6d103e7b2d731bcf99b979e1eae9212bb4e9dfbe158dfb4a68daeb8896cb92fcc0ec871c182159b25" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sortablejs@1.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sortablejs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/soundjs@0.6.28", + "group": "@types", + "name": "soundjs", + "version": "0.6.28", + "description": "TypeScript definitions for SoundJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b792dc0fbd87d0ac7faa1847b5b60c42e68e2b242ec25714262fd0b3f6d815ab4a16f7d3e63df469d45ed85c42e26c2bd5de589e0f8134b1466f9c310a59a3e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/soundjs@0.6.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/createjs-lib@0.0.29", + "author": "Pedro Ferreira", + "group": "@types", + "name": "createjs-lib", + "version": "0.0.29", + "description": "TypeScript definitions for CreateJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a371e3a1bcd12ac1e49f58d313eb0bb80ec1f4f57d298679730828f9b3e540c0b5ee4ec6fc612faf0269e083e0d3b96bbbe6f705dea16cab1650f39299dff2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/createjs-lib@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/preloadjs@0.6.32", + "author": "Pedro Ferreira", + "group": "@types", + "name": "preloadjs", + "version": "0.6.32", + "description": "TypeScript definitions for PreloadJS", + "hashes": [ + { + "alg": "SHA-512", + "content": "bedac5cd7e406daf8262cfe789aa6743393daa62735e62ab695fd5b72fd3fc758efa0bf7068c83a55f8ea04512efa3519df4588b5922844d08ba388cecc8c240" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/preloadjs@0.6.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/soundmanager2@2.97.4", + "group": "@types", + "name": "soundmanager2", + "version": "2.97.4", + "description": "TypeScript definitions for soundmanager2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d09d6d7365201fea4ad515c69d70d9035eab942b89cf91a7001dd7f0d5825c4634aff81fcb28998bd07cfe4fbe92ecb01b18fd32a843700858efcd3b760f031c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/soundmanager2@2.97.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/soundmanager2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/soupbintcp@0.2.2", + "group": "@types", + "name": "soupbintcp", + "version": "0.2.2", + "description": "TypeScript definitions for soupbintcp", + "hashes": [ + { + "alg": "SHA-512", + "content": "85e4b8ce2650d4d7225ba3c0f8baf90e064a8d5eb9bdc49b08a1dd1d7d1bab05d59f6f97c65ba8f5f6d226dcdb77815332fd71add092c1d60a382e4d40a9f439" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/soupbintcp@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/soupbintcp" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/source-map-support@0.4.2", + "group": "@types", + "name": "source-map-support", + "version": "0.4.2", + "description": "TypeScript definitions for source-map-support", + "hashes": [ + { + "alg": "SHA-512", + "content": "19b196c77f4ef0d7541d20a176b5345de8a004082ed537a0de5970134b25495707daa2126904fbd1fb40887fa1e0722ddd520e6c5537e0f4a95c8289b970b26d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/source-map-support@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/space-pen@0.0.28", + "group": "@types", + "name": "space-pen", + "version": "0.0.28", + "description": "TypeScript definitions for SpacePen", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6244cd36e134ab1a1ad142e0f02a50c1089181c4d36ababf305214f56177748f38ee42ae17267f2a8cedb630f86ee714580e64cc770c68d19dc8cd018f87d31" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/space-pen@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spark-md5@3.0.2", + "group": "@types", + "name": "spark-md5", + "version": "3.0.2", + "description": "TypeScript definitions for spark-md5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3613f95545aa9e955f6a991cf32753ca4e9caba674fb9b076778a34907d854b72a590cc8209680df154088a91471de5611c6d782c174aaf5cf96ef555fd109d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spark-md5@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sparkly@3.1.0", + "group": "@types", + "name": "sparkly", + "version": "3.1.0", + "description": "TypeScript definitions for sparkly", + "hashes": [ + { + "alg": "SHA-512", + "content": "d780d446db5bb026ef26c2900d008c0e23e228c00cf43915dc9df33640e254a2cf36de4401e6323665c1dfe7e722b2f34813f5feaf294efdb846fc8a691e0351" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sparkly@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sparkpost@2.1.5", + "group": "@types", + "name": "sparkpost", + "version": "2.1.5", + "description": "TypeScript definitions for sparkpost", + "hashes": [ + { + "alg": "SHA-512", + "content": "b251622f4999767311842578a4913b8362bbef95b55e188478052de56593068329c48c51a44a8954478e91c30b6970fcf50fcf8dadb8c39fcd504e5b7beb8e47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sparkpost@2.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sparkpost" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sparqljs@1.5.0", + "group": "@types", + "name": "sparqljs", + "version": "1.5.0", + "description": "TypeScript definitions for sparqljs", + "hashes": [ + { + "alg": "SHA-512", + "content": "3242396986aaada4731c8f8490aeb2e30b20fe7dee5df89ae89a27438d850df985ea74f4710c5e3a8f9632d9a07d46170710af811cda9e966a07a69a0a401cb6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sparqljs@1.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spatialite@0.0.2", + "group": "@types", + "name": "spatialite", + "version": "0.0.2", + "description": "TypeScript definitions for spatialite", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0765e5f1a820c408d5ec8ffb63109db6a14b4a31b852342fb20f59827e21d1e2ded0d9465f55a2bd7bf059ab85658323aaceddaa96b78ae7c77d307c748c1a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spatialite@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sqlite3@3.1.8", + "group": "@types", + "name": "sqlite3", + "version": "3.1.8", + "description": "TypeScript definitions for sqlite3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1032dfea9f25169ea8937095e6e597cd3c805e27f0d5bc90f0c70fb4b40c4f26f69dcdf88fd5086bc8ed49391eadd727dbf0da7341bfd1b9dd3a9a86f995a20" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sqlite3@3.1.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sqlite3" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spdx-correct@2.0.0", + "group": "@types", + "name": "spdx-correct", + "version": "2.0.0", + "description": "TypeScript definitions for spdx-correct", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d18191c76a7be9b9e6e8baa4ba2822eeae7bd463d33db4932023495efaba44c6574eb594ff3697075b857b14a0c53cb262bc10f9be4001815d38f33ac9969cb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spdx-correct@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spdx-satisfies@0.1.0", + "group": "@types", + "name": "spdx-satisfies", + "version": "0.1.0", + "description": "TypeScript definitions for spdx-satisfies", + "hashes": [ + { + "alg": "SHA-512", + "content": "63715a8ded468bf97eb528c0a39d8ba66ddf2e7a50b502df61c9a92278a44a81c1c5c90e14a975b865957d1c88dcb9d7dbe6eb711503a31ed3d3c789eb451095" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spdx-satisfies@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/speakeasy@2.0.7", + "group": "@types", + "name": "speakeasy", + "version": "2.0.7", + "description": "TypeScript definitions for speakeasy", + "hashes": [ + { + "alg": "SHA-512", + "content": "24470e84dd92402a17f3a65f89911ef29c7ce2c549b62bc15cc65f395c804536048f486bc306e3d6717417010bde7252a0457ab936dc74b96530a0600181d609" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/speakeasy@2.0.7", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/speakeasy" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/speakingurl@13.0.3", + "group": "@types", + "name": "speakingurl", + "version": "13.0.3", + "description": "TypeScript definitions for speakingurl", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c11d901a353130d581b744e2fb1ed4e9ec78d6f070fb0ee1586d6a289d42936478fb7b23ade2f3f3c8c71cdfec6058dbfbc62dabce26a20571c8abac017b2af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/speakingurl@13.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/speakingurl" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spectacle@1.2.2", + "group": "@types", + "name": "spectacle", + "version": "1.2.2", + "description": "TypeScript definitions for Spectacle", + "hashes": [ + { + "alg": "SHA-512", + "content": "2824ad8982372f4b7e3df5ab456b8a06066cf5706a7839e6eee20cd8e4b2e415bf5257ea0b06c84b9ee36ea3ee445cc086ff4b7e073b8695113c53f5fe247af1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spectacle@1.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spectrum@1.8.2", + "group": "@types", + "name": "spectrum", + "version": "1.8.2", + "description": "TypeScript definitions for spectrum", + "hashes": [ + { + "alg": "SHA-512", + "content": "3db102ff62a2a6c77b0a1e485f8236c42a69f679508011fe3f34e158757892777b7f4be22c3636c37849d10a45e3fc30c1e50f3c6a006726fb5bb1d2e20f8533" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spectrum@1.8.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/spectrum" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/tinycolor2@1.4.3", + "group": "@types", + "name": "tinycolor2", + "version": "1.4.3", + "description": "TypeScript definitions for tinycolor", + "hashes": [ + { + "alg": "SHA-512", + "content": "29fd70f4d1391c4806c4247221c45747f658b43bf457c1553ed607c0bc65d0efa66865f47ab13bee94250f48293fefca072319f3b98e03bf528e27e1481dcf8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/tinycolor2@1.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/tinycolor2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/split@0.3.28", + "author": "Marcin Porębski", + "group": "@types", + "name": "split", + "version": "0.3.28", + "description": "TypeScript definitions for split v0.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7a256b20cd74e86d51fa7607d819e752f18d1945cdb48edcc7096631f90ff0f567e9c1490f63c1536bee72f0a3f3b509dedcd988e3efecd336c230c92e935b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/split@0.3.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/split.js@1.6.0", + "group": "@types", + "name": "split.js", + "version": "1.6.0", + "description": "Stub TypeScript definitions entry for split.js, which provides its own types definitions", + "hashes": [ + { + "alg": "SHA-512", + "content": "b51ff05ad9df67e662105aeeb0a1e7d6a2949d996944e7dfedaeb0bd1c12f48988de90facadad19a0b7899b3ccd85a515144c82ac7d95c65c19aebda94c515cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/split.js@1.6.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/nathancahill/split/tree/master/packages/splitjs" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/split.js@1.6.5", + "author": "Nathan Cahill", + "name": "split.js", + "version": "1.6.5", + "description": "2kb unopinionated utility for resizeable split views", + "hashes": [ + { + "alg": "SHA-512", + "content": "98f4e7182892fd18ae4cdb158429bd0def5c08052cacd145be245b00374a8a257e2a4f072a9ff47d6bbb2abf298b7ff2066b2a2c51ee5c64fd51467e08d2f017" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright (c) 2020 Nathan Cahill\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/split.js@1.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://split.js.org/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nathancahill/split/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nathancahill/split.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/split2@2.1.6", + "group": "@types", + "name": "split2", + "version": "2.1.6", + "description": "TypeScript definitions for split2", + "hashes": [ + { + "alg": "SHA-512", + "content": "75d68548e32ecb6469f7b97aabf2c4b5e43282f4d026e119f92461c45291d2e5c6b1d6c50ea5ff405db1a0670ea8b43c5d5f75bf4d529c0bf6be982284d816fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/split2@2.1.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/splunk-bunyan-logger@0.9.0", + "group": "@types", + "name": "splunk-bunyan-logger", + "version": "0.9.0", + "description": "TypeScript definitions for splunk-bunyan-logger", + "hashes": [ + { + "alg": "SHA-512", + "content": "a66b001443c10558feb6323b50b02623a1b97140e60279b5f8ea0c792978685071d4c4409595f51c3e3396ba415e813958f705239c5a6ac9c039711444429a11" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/splunk-bunyan-logger@0.9.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/splunk-logging@0.9.2", + "group": "@types", + "name": "splunk-logging", + "version": "0.9.2", + "description": "TypeScript definitions for splunk-logging", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed13e59c719ac0ebf6f653785dc7e0ff87da3a5c5e4d660e6bdd737b6c452d9b7e6da1f43bd4693e27346126276dc3e1e329f23e3595e6f11f332cff7aeb7edd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/splunk-logging@0.9.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/splunk-logging" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spotify-api@0.0.0", + "author": "Niels Kristian Hansen Skovmand", + "group": "@types", + "name": "spotify-api", + "version": "0.0.0", + "description": "TypeScript definitions for The Spotify Web API (including changes March 29th 2016)", + "hashes": [ + { + "alg": "SHA-512", + "content": "7be547ef6761399fb25a597d7a28c1586284966e425c67953d959e822dda046430703d8fa29bf5b9959849a0aa6f0f8846982b24cb148faee51b8c72994b9b1e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/spotify-api@0.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/spotify-web-playback-sdk@0.1.12", + "group": "@types", + "name": "spotify-web-playback-sdk", + "version": "0.1.12", + "description": "TypeScript definitions for spotify-web-playback-sdk", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa529535d1e240b4b3b54a0c4f3ed9a3c0f19b371dd64f3d0add97b0d31597c05f0b3a2da2f69efe148bbc73e8b9afcdf22e7dd8b675ab44ac82d407e894febc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/spotify-web-playback-sdk@0.1.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/spotify-web-playback-sdk" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sprintf@0.1.0", + "group": "@types", + "name": "sprintf", + "version": "0.1.0", + "description": "TypeScript definitions for sprintf", + "hashes": [ + { + "alg": "SHA-512", + "content": "da70ab6abf881c117c6af022a683b7326666fa97b785a10cfe30fee137836869ab053ec27496ff9348d0e47a26b5782c49cb95dee77f1a816ebfb9140dee157f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sprintf@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sprintf-js@1.1.2", + "group": "@types", + "name": "sprintf-js", + "version": "1.1.2", + "description": "TypeScript definitions for sprintf-js", + "hashes": [ + { + "alg": "SHA-512", + "content": "864833605faa9c897cb933bcae65125527d0f0121f3170b8c89005e27f0113be7c62c28166f142e0dba69c07a08fb2a6ca53f49621193696fd45118531b15e8c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sprintf-js@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sql-bricks@2.0.2", + "group": "@types", + "name": "sql-bricks", + "version": "2.0.2", + "description": "TypeScript definitions for sql-bricks", + "hashes": [ + { + "alg": "SHA-512", + "content": "f85f06221b83c6c75596078d6ec984378ef6009f801149d4f7e410f7b0520845d7fedee110152703a96f0f1975c79bd048a203a8e98f13a6688aa8c990ff8c12" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sql-bricks@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sql-bricks" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sql.js@0.0.29", + "group": "@types", + "name": "sql.js", + "version": "0.0.29", + "description": "TypeScript definitions for sql.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "40376a67493ea75627a619127597aba6e1ff84eb3fc04f557ed360b30e7a2081b9426dd7f9567a35b9e7be614d911a019f929efe3b84fe0ca967fcb80abddf6b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sql.js@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sqlstring@2.3.0", + "group": "@types", + "name": "sqlstring", + "version": "2.3.0", + "description": "TypeScript definitions for sqlstring", + "hashes": [ + { + "alg": "SHA-512", + "content": "90c15e703618164fdfe5f9633b4505ad23f05352716389888d7ea273b307bf99c3eac11ddcd60ba1670e57fdece83aeced11dd0b04d0743e4d760565d08db3ce" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sqlstring@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sqs-consumer@3.8.0", + "group": "@types", + "name": "sqs-consumer", + "version": "3.8.0", + "description": "TypeScript definitions for sqs-consumer", + "hashes": [ + { + "alg": "SHA-512", + "content": "826a4fe5e2cfbca52359c87dd229ed87fecf714ded7d337edc1e174a67c641129ed1f33577c0a8e0c95c4908d71ef878c52806326147b4afec90981f4149fdf2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sqs-consumer@3.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sqs-producer@1.6.0", + "group": "@types", + "name": "sqs-producer", + "version": "1.6.0", + "description": "TypeScript definitions for sqs-producer", + "hashes": [ + { + "alg": "SHA-512", + "content": "f05fb24bf9ce9d44acf07a6f7865aabb887ccc4de636ab17ee4c36155c6fce4df7104df53a35019167982727deab83f97f9b6ccad98c09777e51d305d83cf6b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sqs-producer@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/squirejs@0.2.28", + "author": "Bradley Ayers", + "group": "@types", + "name": "squirejs", + "version": "0.2.28", + "description": "TypeScript definitions for Squire 0.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6dafb97ee5e3a5068ef5e5722ecdbb92add9c30d2ce279593ca8052b638211c8f29111a70d1eee3da657a3612955242f55ecaff3806bde5655f4560efeccc025" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/squirejs@0.2.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/srp@0.0.27", + "author": "Pat Smuk", + "group": "@types", + "name": "srp", + "version": "0.0.27", + "description": "TypeScript definitions for node-srp", + "hashes": [ + { + "alg": "SHA-512", + "content": "b14e36ad16cc66bffb92eb24ee68bb0f8568e28d2972117f2aa7a4ec32600adb90d05074a6fa3d996cf67689c03f2536c1c646a323e0f27bf547abf8114d5eab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/srp@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/bignum@0.0.29", + "author": "Pat Smuk", + "group": "@types", + "name": "bignum", + "version": "0.0.29", + "description": "TypeScript definitions for BigNum", + "hashes": [ + { + "alg": "SHA-512", + "content": "910065d6f7cecdc514c58306d3cc1aab309023fbbdac4d5d25c486601229ab48786ae47d3fbe00fd96b32a449528a8a8d7542288ba1de5a8915156fccb775996" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/bignum@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ssh-key-decrypt@0.1.0", + "group": "@types", + "name": "ssh-key-decrypt", + "version": "0.1.0", + "description": "TypeScript definitions for ssh-key-decrypt", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b5588d74e99a415ea06a9550de3dd8137fad003b3f85a6ea85b5b77baccb20736c761913db750cdb21c7f81b8ded2799e27c5474569d7d910d7481b33ff441d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ssh-key-decrypt@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ssh2@0.5.52", + "group": "@types", + "name": "ssh2", + "version": "0.5.52", + "description": "TypeScript definitions for ssh2", + "hashes": [ + { + "alg": "SHA-512", + "content": "95b2cb957c5d09939224c0889ca1f6fbd57fefb113d89e8d3d01e9148d2475aeb50ddd4a82526cf9f3d005c862ce6cd848e24181d4da8e13ea04ed71c4bcb0be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ssh2@0.5.52", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ssh2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ssh2-streams@0.1.9", + "group": "@types", + "name": "ssh2-streams", + "version": "0.1.9", + "description": "TypeScript definitions for ssh2-streams", + "hashes": [ + { + "alg": "SHA-512", + "content": "23627d8caa9f9af5cb4791a8983882a07ac4279f2100e985ade91f16a98215df80ea06844adbd69cfca4a1653095dd4f360e06e5a8352f0740f8bcf5768449aa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ssh2-streams@0.1.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ssh2-streams" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/ssh2-sftp-client@2.5.1", + "group": "@types", + "name": "ssh2-sftp-client", + "version": "2.5.1", + "description": "TypeScript definitions for ssh2-sftp-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "673b035e38e1bbdc79db0424646e1641318a00a04ea1270dd308f8e4901dfe8e589daba315e17c869eb7afed24a6c4b38a923c34b80aca2f1cb30a3d3f233c0d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/ssh2-sftp-client@2.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sshpk@1.17.0", + "group": "@types", + "name": "sshpk", + "version": "1.17.0", + "description": "TypeScript definitions for sshpk", + "hashes": [ + { + "alg": "SHA-512", + "content": "c87c559fda39afd838a9de87072037c9d21d1c6cf1c39345402c18eee4b868cd5be112e77b176d2f0a74f03ab99f45bf6acac3a6f6d7d3e0beb737a9e2d54365" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sshpk@1.17.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sshpk" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/asn1@0.2.0", + "group": "@types", + "name": "asn1", + "version": "0.2.0", + "description": "TypeScript definitions for asn1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e5333122961b200f5cd49d216108d00d7df0afead38101005da5b6048f0408cf053b9df0496e07159a654da96b2921ee65473be8db5771e3d1870b8e1ea183e6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/asn1@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stack-mapper@0.2.28", + "author": "Rogier Schouten", + "group": "@types", + "name": "stack-mapper", + "version": "0.2.28", + "description": "TypeScript definitions for stack-mapper 0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0765e3f886b39f0ea19dd9d9cce1945f3f9c260208bd09db285b38a9dc39f4e17303a5dbf12c7a0f997b6dc9dc20e1d28707bb9b445fe8af620e5bbce967d5d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/stack-mapper@0.2.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stack-trace@0.0.29", + "group": "@types", + "name": "stack-trace", + "version": "0.0.29", + "description": "TypeScript definitions for node-stack-trace", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e07ce5fe98663f37237124b21b0d6acef438c6a15496f7e681f07db2cb57f2df68ecbf18a3866c8923d7c3160bf3dd83f896f25aabd0f3751fccd5b3a055cf6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stack-trace@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stack-utils@1.0.1", + "group": "@types", + "name": "stack-utils", + "version": "1.0.1", + "description": "TypeScript definitions for stack-utils", + "hashes": [ + { + "alg": "SHA-512", + "content": "978d81820a6947accb9a97d4e9fabd1c46b6a063c423ccab48f2f71884e37d1227a696056a139b6c840e40add41b1127c90a65b592da3deef9d38e8d39942293" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stack-utils@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stacktrace-js@0.0.32", + "group": "@types", + "name": "stacktrace-js", + "version": "0.0.32", + "description": "TypeScript definitions for stacktrace.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "49dc6696b1df3b407181b04ff47656314a36ae299af25c0c8cf8969ba4b47722a40dae42b1e6a692d1615e0f2e9aedd33d50644a55fa668079b940c92bcf72be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stacktrace-js@0.0.32", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stale-lru-cache@5.1.3", + "group": "@types", + "name": "stale-lru-cache", + "version": "5.1.3", + "description": "TypeScript definitions for stale-lru-cache", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ddeb1c1649005152adc6e080ddd10952fe8857191e1644aad6b93b716813c261383f8f5224e3fa16961f292231df9b7dbbfe16022bec7c3dd18557a96982479" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stale-lru-cache@5.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stale-lru-cache" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stampit@3.0.5", + "group": "@types", + "name": "stampit", + "version": "3.0.5", + "description": "TypeScript definitions for stampit", + "hashes": [ + { + "alg": "SHA-512", + "content": "492d2f885709f4216d1e266c0ef43cb7e80368acad1523d74885b3b30f32c28f8193a10d32d5ba99eab9094be5f53dffd102a4d4a53200937445fca07ad51f10" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stampit@3.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stampit" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stamplay-js-sdk@1.2.33", + "group": "@types", + "name": "stamplay-js-sdk", + "version": "1.2.33", + "description": "TypeScript definitions for non-npm package stamplay-js-sdk", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8e5e726246b942061b07f55056c77f7269535f8932f7d8bec375f5454cd5958f15430d9a0145e8313b4e36d0532903d834be7a83805cef92737668c93eb7348" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stamplay-js-sdk@1.2.33", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/starwars-names@1.6.0", + "group": "@types", + "name": "starwars-names", + "version": "1.6.0", + "description": "TypeScript definitions for starwars-names", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ee25ce2f11549dadd1d70251166c633083aa8992a09a56a27111c70c5292dd97a5308d0cf271b9469d8f04cb830f2564dd8377017a029d4b024c5660f88b6fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/starwars-names@1.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stat-mode@0.2.0", + "group": "@types", + "name": "stat-mode", + "version": "0.2.0", + "description": "TypeScript definitions for stat-mode", + "hashes": [ + { + "alg": "SHA-512", + "content": "89ebe44f241f91f72493e05ce31e2093f5a01196231aac0fadc82fc0b1a410a2e8bfadba767ce8466e9230ca998fd6ccefcbcfaec83ce104f34862f67426e9ed" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stat-mode@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/static-eval@0.2.31", + "group": "@types", + "name": "static-eval", + "version": "0.2.31", + "description": "TypeScript definitions for static-eval", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc91c995b79baf2769b4d803d13633c9b5e2cd6bf928b3b4c22f36d708cc971abe8550ab5ab1db521eff9283f8204e1c10d1ea7dc747373027af43005254734a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/static-eval@0.2.31", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/static-eval" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/esprima@4.0.3", + "group": "@types", + "name": "esprima", + "version": "4.0.3", + "description": "TypeScript definitions for Esprima", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e8d7874859556d17488cb0a9187a4ebefb8716263c29be883eadc84bba5c201491935ea21e4dd08ebd8d01df230b4da23031c282749ea641b491eb0607cbdf0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/esprima@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/esprima" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stats.js@0.17.0", + "group": "@types", + "name": "stats.js", + "version": "0.17.0", + "description": "TypeScript definitions for Stats.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "f70f9aedb47c3de0747424ff1c150b5367cca9fe81033bca6f115ba188660ed0e428f8b25d86e3a1ed9abb0b17944148ec214d305d5d0afddd147e4fa32f51d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stats.js@0.17.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/statsd-client@0.4.3", + "group": "@types", + "name": "statsd-client", + "version": "0.4.3", + "description": "TypeScript definitions for statsd-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "3073effd8f8f5e5c77a3a66b5a3be3c1e413776e5411bf2386f0fb6371520eca9485456c6ad01c73a30a08709e055c18d9bb9f81327c5f49ba3a409b6968e2dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/statsd-client@0.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/statsd-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/statuses@1.5.1", + "group": "@types", + "name": "statuses", + "version": "1.5.1", + "description": "TypeScript definitions for statuses", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbd0edf1706918b70c0e1c6cfb6ff036af39f052fa25222be0017dcd5c055a6f95ce6331fa21b2b6b1abb7fe86a5d45fc7c8243699a34d56250e0d1d6e4e311a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/statuses@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/std-mocks@1.0.1", + "group": "@types", + "name": "std-mocks", + "version": "1.0.1", + "description": "TypeScript definitions for std-mocks", + "hashes": [ + { + "alg": "SHA-512", + "content": "a703ab189ea39ea6f56f0f53c6b99b6c74c8fbb9e063cc84124ad31bb949bb0a65bc54fd5d2c0e0900b765be04f9eea0f720f3ac55fe4b5cac2d9b93ff4ed662" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/std-mocks@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/std-mocks" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/steam@0.0.27", + "author": "Andrey Kurdyumov", + "group": "@types", + "name": "steam", + "version": "0.0.27", + "description": "TypeScript definitions for steam", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b4a1bef2d585774abf4211a791ebc85bff35a3f0c73d6c4acebfb185c8a0cce024bd16af7b0e23222210ff5cde760d612b44c80b76d2f83c26d9087aaa49ff9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/steam@0.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/steam-client@2.5.3", + "group": "@types", + "name": "steam-client", + "version": "2.5.3", + "description": "TypeScript definitions for steam-client", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1eea813dbebb15f08efae9a97da98f72fb22cdaa0dbc865cd94b62e0fff4da7f692c1896933e8aed9fac153a9a0a48fb9dbeddbc14a0d88ba11fa0d40cd013b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/steam-client@2.5.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/steam-client" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/bytebuffer@5.0.43", + "group": "@types", + "name": "bytebuffer", + "version": "5.0.43", + "description": "TypeScript definitions for bytebuffer.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd09d362fcb82e94a88c78ca7668389d7148d4102260fbd9fe4de8b9ccd90109db0e9ae4d71ab1262166147cb2f32e8cb94ab7b25cf97ab34cb67ea7f3bb952b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/bytebuffer@5.0.43", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bytebuffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/long@4.0.2", + "group": "@types", + "name": "long", + "version": "4.0.2", + "description": "TypeScript definitions for long.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "32a4c6128e5b8f9b75e7b53a7c0fc1883ca73649f46249d5761e3c08c3e44d2a454d59af6a8e544269bbb8417ac41128eea20c02563f25295e61a13a54e76968" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/long@4.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/long" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/steam-totp@2.1.0", + "group": "@types", + "name": "steam-totp", + "version": "2.1.0", + "description": "TypeScript definitions for steam-totp", + "hashes": [ + { + "alg": "SHA-512", + "content": "33142064dd653f27dc81caebac004194e82276d70ee415d6f86ef0f7ff02d19d6ebdd959c20f2d01c5957ad3f36d8a4f1e33dee458da6e6be402344d26b976ab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/steam-totp@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/steamid@1.1.0", + "group": "@types", + "name": "steamid", + "version": "1.1.0", + "description": "TypeScript definitions for steamid", + "hashes": [ + { + "alg": "SHA-512", + "content": "8303b703eae81ee51976b3e3f0b55c819725ff1980221b2cb9797c844bc3dbfb39d66be9b8c25ae1b0067065d2a6ce24e04e69923de728c94fff761b3f7bc232" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/steamid@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/steed@1.1.2", + "group": "@types", + "name": "steed", + "version": "1.1.2", + "description": "TypeScript definitions for steed", + "hashes": [ + { + "alg": "SHA-512", + "content": "8179cd26ec9b8f4199f4c2c639ca89a8d9944d71adebd71244dc6cfeddc2951887d3c120add3857860b46eccd16367594ee3a1c14e9c7a0ba89aa7443b685894" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/steed@1.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stellar-sdk@0.8.6", + "group": "@types", + "name": "stellar-sdk", + "version": "0.8.6", + "description": "TypeScript definitions for stellar-sdk", + "hashes": [ + { + "alg": "SHA-512", + "content": "6da34e1be0c2ab8570485b1a5c7c31847d8f0f9b7ddd5f47fa7be9ebd77ae7a71ce1117a432397199ee53e415c76286ba81eb9e5b6bc886de054490d81584f1e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stellar-sdk@0.8.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stemmer@1.0.2", + "group": "@types", + "name": "stemmer", + "version": "1.0.2", + "description": "TypeScript definitions for stemmer", + "hashes": [ + { + "alg": "SHA-512", + "content": "da0584205a956638d9c68f3f4dcba008097b9d6f4977d02b103a5301ce671fb77e65492b78703b1b3b8570b674b1f94bac0e5bd4f67edb20f21c972e3fd2965b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stemmer@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/sticky-cluster@0.3.2", + "group": "@types", + "name": "sticky-cluster", + "version": "0.3.2", + "description": "TypeScript definitions for sticky-cluster", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc50bde6742cc7f0703a83e541335854a0b98a7b981e6217ec7c9c0093efa26cb0d4e419f71bf4ecd94f5a689a39ce597645fb53ba1293a5d69b31c930295bc8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/sticky-cluster@0.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sticky-cluster" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stompjs@2.3.5", + "group": "@types", + "name": "stompjs", + "version": "2.3.5", + "description": "TypeScript definitions for stompjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1690bf11941d6eb99b7c5c911d9f0745755e51205710c3d5213507d3a62258723a82e9042916a73961c22b947f8affce3710625521a38500d8eceeeedb99397" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stompjs@2.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stompjs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stoppable@1.1.1", + "group": "@types", + "name": "stoppable", + "version": "1.1.1", + "description": "TypeScript definitions for stoppable", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fc37e7c2003448618ac664e726391f193413aa864b564c1fdb3149792ef1ad4f6d3540a25938e1f952c172237aadb5e33a64025b26a66805c2eaab1288c2387" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stoppable@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stoppable" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storejs@2.0.3", + "group": "@types", + "name": "storejs", + "version": "2.0.3", + "description": "TypeScript definitions for store.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "545fca3c65042b18bb8f7fff1da3c229a29b32d28e9d661ff9a2f365c050ae14007077af038380d87c05a5e27a4ba243ef1a52d3a1b72bba1993221fa7d95f79" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storejs@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-a11y@3.3.1", + "group": "@types", + "name": "storybook__addon-a11y", + "version": "3.3.1", + "description": "TypeScript definitions for @storybook/addon-a11y", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6646f880ab8b97b84f70206ba21bb7c7b12f3628df825471baef44ac4b079f73649bbe2dc6deb368bfe291774fc0da9a4080ee3449189e719e942b7920ae1b0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-a11y@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-actions@3.4.3", + "group": "@types", + "name": "storybook__addon-actions", + "version": "3.4.3", + "description": "TypeScript definitions for @storybook/addon-actions", + "hashes": [ + { + "alg": "SHA-512", + "content": "4521457ebb941cbecb6b8099a6e88a674999bebe68ae37a7140da3737d6d7cfc2f0377d8347e3ff5749f036301d3c22925b177684aed6164f90ed8a09319e5b6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-actions@3.4.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-backgrounds@3.2.1", + "group": "@types", + "name": "storybook__addon-backgrounds", + "version": "3.2.1", + "description": "TypeScript definitions for @storybook/addon-backgrounds", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3c9181e805f1b5a19c7838cbcb59c4b3641d93a0a0c177bb23b09ea2a287afe458b54d12104c0738fd3b3db382198c2bff2e94c2a9c09277764f55bfc167650" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-backgrounds@3.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-info@3.4.4", + "group": "@types", + "name": "storybook__addon-info", + "version": "3.4.4", + "description": "TypeScript definitions for @storybook/addon-info", + "hashes": [ + { + "alg": "SHA-512", + "content": "c770088187daa23923c6af56c6d404fd9750ce9b62b224b32f82797302af3bcbc83321cf7730f894c00e12cfae70fe374f199995daddbadab3ceadb48db6d929" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-info@3.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__react@3.0.9", + "group": "@types", + "name": "storybook__react", + "version": "3.0.9", + "description": "TypeScript definitions for @storybook/react", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba140c9324bf59920a9fccf6db60fc5896d6cbb69761aa9acecacb29da512ec1c1cf661a0156c09a3e2faf6ad00df03bf91823c13319287b3d56b81af254646d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__react@3.0.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/webpack-env@1.17.0", + "group": "@types", + "name": "webpack-env", + "version": "1.17.0", + "description": "TypeScript definitions for webpack (module API)", + "hashes": [ + { + "alg": "SHA-512", + "content": "78749a358132c510392001b4626ff20b27fcea789950817f4e958aa1f408fc255f8791ec3045327c4da4c05c616b8a30d2ce60d0b7c8490c690ca8db443ae2cf" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/webpack-env@1.17.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-env" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-knobs@3.4.1", + "group": "@types", + "name": "storybook__addon-knobs", + "version": "3.4.1", + "description": "TypeScript definitions for @storybook/addon-knobs", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a692c49e8a99f74f7ccc696c71ace29c935c86dba2978e3af0b6cb352208d7cf41e7921463504610305d269eae5ac23ef66137e58a75a29a8903469e053cc47" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-knobs@3.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-links@3.3.5", + "group": "@types", + "name": "storybook__addon-links", + "version": "3.3.5", + "description": "TypeScript definitions for @storybook/addon-links", + "hashes": [ + { + "alg": "SHA-512", + "content": "87ef0a6feb99bf8feeb960fe2b9ae4bbc691c5d97aca30c9ac5cdb706c30759b7a2306062bd1bc3e690ffba1eff8dec730ebb286b64f88b2fffea5455832ffd1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-links@3.3.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-notes@3.3.3", + "group": "@types", + "name": "storybook__addon-notes", + "version": "3.3.3", + "description": "TypeScript definitions for @storybook/addon-notes", + "hashes": [ + { + "alg": "SHA-512", + "content": "9af1bae38621e5b47b4b4df2e4c63ae58b97ed7a06e91efffa5f6fd9c407dfd86e2bcfe958d9887ad19c181cf4452fb594a06faad66be79390ca3ffd642cb88c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-notes@3.3.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-options@3.2.3", + "group": "@types", + "name": "storybook__addon-options", + "version": "3.2.3", + "description": "TypeScript definitions for @storybook/addon-options", + "hashes": [ + { + "alg": "SHA-512", + "content": "1dc41f0c158be4b6fb357d5435f584de093ed27da7f1bb2f61dd7babd2d48da401f8cb8759e2a61c8eb4cc614bff7270d70a3da8e4deba954b446874c7e77a7f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-options@3.2.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__addon-storyshots@3.4.9", + "group": "@types", + "name": "storybook__addon-storyshots", + "version": "3.4.9", + "description": "TypeScript definitions for @storybook/addon-storyshots", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b8cedd53a3deee7442384e2c1d8d50529d53a2ed2d6de08b31c2832d3df9d43353f50ef4cc40ed3feb728f2ffb4384730706672602d3df0ed4716d447433061" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__addon-storyshots@3.4.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/puppeteer@5.4.6", + "group": "@types", + "name": "puppeteer", + "version": "5.4.6", + "description": "TypeScript definitions for puppeteer", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7c2a085e86cefefc60fd6f9eaaaf286a76a5425d44db7ad4efdcf96f0e79854531d01f48fd0c8a757fbae4016dc1023e14df2a1e4844272a0756f1b0ead18d1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/puppeteer@5.4.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/puppeteer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__react-native@3.0.5", + "group": "@types", + "name": "storybook__react-native", + "version": "3.0.5", + "description": "TypeScript definitions for @storybook/react-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f40970e41865fd8699346f5878f398028ab1383cd1d448378600bdd31fecde41caa7075f7830d56f176b0eec4f547ff181442388fa6922bade98f8c5f15182c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__react-native@3.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/storybook__vue@3.3.2", + "group": "@types", + "name": "storybook__vue", + "version": "3.3.2", + "description": "TypeScript definitions for @storybook/vue", + "hashes": [ + { + "alg": "SHA-512", + "content": "23cc5055dbda2e7ec71424166c6084918fa7d1709e3e0ae08990a3f821e97361db52b92cef1a427f6aaa51a3c3547e6e749bae6115a6edbcaca221a8e14eb49d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/storybook__vue@3.3.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/vue@2.7.8", + "author": "Evan You", + "name": "vue", + "version": "2.7.8", + "description": "Reactive, component-oriented view layer for modern web interfaces.", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dcc25671e6a39c9fbe786c2bb9fed4bf2163e15c7a297e2b7bf5cc7eb8894b332b77bc23067176a2e72086e72f88e9c0e6123e2e91163265a8a5f454d087b95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-present, Yuxi (Evan) You\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/vue@2.7.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vuejs/vue#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vuejs/vue/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vuejs/vue.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40vue/compiler-sfc@2.7.8", + "group": "@vue", + "name": "compiler-sfc", + "version": "2.7.8", + "description": "compiler-sfc for Vue 2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d832b861629f80b9d6f550d1f609e3bb581c6119377e52a3f1436c9acedfb11985720df9b2555364492ac01b57fb02415da6a615f9fa3714ac661de1d76231fd" + } + ], + "purl": "pkg:npm/%40vue/compiler-sfc@2.7.8" + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40babel/parser@7.18.9", + "author": "The Babel Team", + "group": "@babel", + "name": "parser", + "version": "7.18.9", + "description": "A JavaScript parser", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbad9b55605ee74ba5a89c53885eac8904663b9b170a61190c0bd4662bbcebb535d1453040523b423888fcc81f597917f7ae9aa7dacc8a6b35adf124d39af400" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (C) 2012-2014 by various contributors (see AUTHORS)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40babel/parser@7.18.9", + "externalReferences": [ + { + "type": "website", + "url": "https://babel.dev/docs/en/next/babel-parser" + }, + { + "type": "issue-tracker", + "url": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen" + }, + { + "type": "vcs", + "url": "git+https://github.com/babel/babel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-buffers@3.0.4", + "group": "@types", + "name": "stream-buffers", + "version": "3.0.4", + "description": "TypeScript definitions for stream-buffers", + "hashes": [ + { + "alg": "SHA-512", + "content": "a94fcad6d6f6c947615e42c8013cec20fc1bb57e81a5993497774f5bac6a5b285fcf3335102690ffc7da127bb708dada2e243d2c7c9040f046a7b37d15bb36e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-buffers@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stream-buffers" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-chain@2.0.1", + "group": "@types", + "name": "stream-chain", + "version": "2.0.1", + "description": "TypeScript definitions for stream-chain", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fe21df57a5c0696a6a69b647a01fb58cb0493a7d475ff4b942217ed484bc9d20bb2a0e29f82f4413eebc89474a327300bb3aaa2123375f70c1d5677e1eccd1a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-chain@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stream-chain" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-csv-as-json@1.0.1", + "group": "@types", + "name": "stream-csv-as-json", + "version": "1.0.1", + "description": "TypeScript definitions for stream-csv-as-json", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfb588af9d5f4bd49e13a92050f12c5edcc82d5b93b4f1681b56a91f250701bab70fc0e45f1b1b104f70679504a869dcb961f401350ff3169862ad91681318b4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-csv-as-json@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stream-csv-as-json" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-json@1.7.2", + "group": "@types", + "name": "stream-json", + "version": "1.7.2", + "description": "TypeScript definitions for stream-json", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b82c4d9a5956f5477a7f67a4ba4b0f649a63ace03ae18344b26d95327cce3df48d5cf29ecc50a647b384a0f632f97aee260e67207d0e9e1881b7fab99f51663" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-json@1.7.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stream-json" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-meter@0.0.21", + "group": "@types", + "name": "stream-meter", + "version": "0.0.21", + "description": "TypeScript definitions for stream-meter", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbe7c9e18d24d27edbce54ffa70ce59c33a180413981a0f9e780be834457dbdf7e6accc198a3d4891f3879fe17423aba2e648e633f1331c9ce9a4bd9cc4bd03a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-meter@0.0.21", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-series@0.0.28", + "author": "Keita Kagurazaka", + "group": "@types", + "name": "stream-series", + "version": "0.0.28", + "description": "TypeScript definitions for stream-series", + "hashes": [ + { + "alg": "SHA-512", + "content": "657c1521c814baacc8bafe883392b89b367f1ec47842500c49df11c1f0a297bc30a2e448bc2c9a427d6a9b1a734d1cb5ae648b498ec2a5f66fcb6442f9baca49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/stream-series@0.0.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-shift@1.0.0", + "group": "@types", + "name": "stream-shift", + "version": "1.0.0", + "description": "TypeScript definitions for stream-shift", + "hashes": [ + { + "alg": "SHA-512", + "content": "70db8953ae58005add07da8828812c8080bd132693da07b72517170b034782095d73018c4308687e520dc5045159542a65335604a70b1d14d33b7601902e9c0b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-shift@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-to-array@2.3.0", + "group": "@types", + "name": "stream-to-array", + "version": "2.3.0", + "description": "TypeScript definitions for stream-to-array", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3c63afc45752cf9fd7c3949292943f2bfb5e215975439fec0f006c164734d4abfe0ca9da10344cd0c4fe89abdd6abc56314773a51403d772fe93a2996702015" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-to-array@2.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stream-to-promise@2.2.1", + "group": "@types", + "name": "stream-to-promise", + "version": "2.2.1", + "description": "TypeScript definitions for stream-to-promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "2936b80151051baa38611220a88b826e20b8fa0e5a789e052185181877fb130f50946affe6f73670a6f34fb4dfe73fe218f8e2c16bcc2ed5d91490bc7163e126" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stream-to-promise@2.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/streaming-json-stringify@3.1.1", + "group": "@types", + "name": "streaming-json-stringify", + "version": "3.1.1", + "description": "TypeScript definitions for streaming-json-stringify", + "hashes": [ + { + "alg": "SHA-512", + "content": "efdcaf6dee58f64213544916d53ef06d6dd2bf419922b60d25b16e2f12e10e85d2cfcc21685cc1257cf63d7669a24e9aea82e2422fe328875f388b25ea5c5681" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/streaming-json-stringify@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/streamjs@1.5.29", + "group": "@types", + "name": "streamjs", + "version": "1.5.29", + "description": "TypeScript definitions for streamjs", + "hashes": [ + { + "alg": "SHA-512", + "content": "e03d69ca27a9229e87b9534fad8dfc64e4f11a87725265215557a486babff696fcb5e57ee64e592b61f01f214e8d664223c6696bfaf1fc299fb40511d8923327" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/streamjs@1.5.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/streamtest@1.2.0", + "group": "@types", + "name": "streamtest", + "version": "1.2.0", + "description": "TypeScript definitions for streamtest", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed7c76d6764eac334924e7fd83985ce14035f87c2d551f4eeffeafd69f7971681770f93b76d6720d6ce48183480026139101262098948fd3de39ac1dcaf7e672" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/streamtest@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/strftime@0.9.4", + "group": "@types", + "name": "strftime", + "version": "0.9.4", + "description": "TypeScript definitions for strftime", + "hashes": [ + { + "alg": "SHA-512", + "content": "32589c1aca86abca555dad2e98256b62f9e8d1b3541ff25818fb6502f57fa14d3fd251ad015b3f12d6c38baaf3df6e352b7305efe97a7ee5f16fd01ede72e125" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/strftime@0.9.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/strftime" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/strict-uri-encode@2.0.0", + "group": "@types", + "name": "strict-uri-encode", + "version": "2.0.0", + "description": "TypeScript definitions for strict-uri-encode", + "hashes": [ + { + "alg": "SHA-512", + "content": "47abc377b087c5c58ccefe707d5851deac8245542864ac1577a922b74ae4a334d38516525d92845b62b3dc0c5f56aabdf94c89033d60f10f9b27708be8dcf3b5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/strict-uri-encode@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/string@0.0.29", + "group": "@types", + "name": "string", + "version": "0.0.29", + "description": "TypeScript definitions for string.js", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7c613bdbeaf4d62f7f09c527b5ac276ec0fda5d233516691e50d45aa2ede40dc5e1239cef204f3ddde30624a4ddbebabab8ecdad14cd903a17f8c84cf3f7089" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/string@0.0.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/string-hash@1.1.1", + "group": "@types", + "name": "string-hash", + "version": "1.1.1", + "description": "TypeScript definitions for string-hash", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a3b77cdd1e2d83999c50a504e6a335eccf30e8efc57847711dbd7d2314c7e7307d99cd04a609b69638c3c65c55184b3488752b6fefc1c38e0df69b977173eb4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/string-hash@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/string-similarity@1.2.1", + "group": "@types", + "name": "string-similarity", + "version": "1.2.1", + "description": "TypeScript definitions for string-similarity", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b8b45aaf1339c15520a844fb2bdf14dd66cb60796be0a16abd2b211bb185bf11a127ab8c42317d00e6831e0696049b2ecba06f10a87ec69ed51985f7be23c2d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/string-similarity@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/string-template@1.0.2", + "author": "TonyYang", + "group": "@types", + "name": "string-template", + "version": "1.0.2", + "description": "TypeScript definitions for string-template 1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed516e15e915cdbaf4ba4b6a7c19ac25cfc2aa3c275d658e7399879fbada8f1ce12cef5a33d9cc321b696bef7450ad465ba0b472d405ffd161d2a241c23a8d5e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/string-template@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/string-width@2.0.0", + "group": "@types", + "name": "string-width", + "version": "2.0.0", + "description": "TypeScript definitions for string-width", + "hashes": [ + { + "alg": "SHA-512", + "content": "740e73d9694feeebab022bde2164c34607ebd54e7c41d9a8e9da03780c89958150def9d4396ec1a89fad97e33c15a2dc7e586b56fc087f3c4926f973e9a9f1e0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/string-width@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/string_score@0.1.28", + "group": "@types", + "name": "string_score", + "version": "0.1.28", + "description": "TypeScript definitions for string_score", + "hashes": [ + { + "alg": "SHA-512", + "content": "05d276845e5ed0e756d73936cf09166aedcec4d063b4056d8ba4afdba74e2c23aa2bcf639b8f5fee35f21d4206e679e28320d2c57bde4988965243388537b289" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation. All rights reserved.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/string_score@0.1.28", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stringify-object@3.3.1", + "group": "@types", + "name": "stringify-object", + "version": "3.3.1", + "description": "TypeScript definitions for stringify-object", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e90815b43be42b30b345058ffeae466d1b37184667366930fca981ce30d52679d9ea1137c466d15c184035d65f71a9b21e893d4f8171b47aadf3a9ac95cd949" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stringify-object@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stringify-object" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/strip-ansi@3.0.0", + "author": "Mohamed Hegazy", + "group": "@types", + "name": "strip-ansi", + "version": "3.0.0", + "description": "TypeScript definitions for strip-ansi", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1587373e589fc935d576e4c79a2b4b24c4675b74e15ea98bf5b2a63cc8f5dbb2c859d17c126d65b07cace3f37e9c3d6f9ef8fa6a50dbcaa2269cf59a8277245" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/strip-ansi@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/strip-bom@3.0.0", + "author": "Mohamed Hegazy", + "group": "@types", + "name": "strip-bom", + "version": "3.0.0", + "description": "TypeScript definitions for strip-bom", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5ebc639179260633b83f914059ccfa82ad1fca600a3e174ca23dcf395854c96b43122edc854d54d4e9c26efda5789a277b21f7c3216aa8ebd4c7176a3826211" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40types/strip-bom@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stripe@5.0.27", + "group": "@types", + "name": "stripe", + "version": "5.0.27", + "description": "TypeScript definitions for stripe", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a6c51c4e53541d9a04c8acff191a5fbe52633e55295cbaec80cfd1dc08bf5895beb9967cc303657d8b3f183432966ed0f803c145678bbd37b69acd73b8b56be" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\r\n\r\n Copyright (c) Microsoft Corporation. All rights reserved.\r\n\r\n Permission is hereby granted, free of charge, to any person obtaining a copy\r\n of this software and associated documentation files (the \"Software\"), to deal\r\n in the Software without restriction, including without limitation the rights\r\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\n copies of the Software, and to permit persons to whom the Software is\r\n furnished to do so, subject to the following conditions:\r\n\r\n The above copyright notice and this permission notice shall be included in all\r\n copies or substantial portions of the Software.\r\n\r\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\n SOFTWARE\r\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stripe@5.0.27", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stripe-checkout@1.0.4", + "group": "@types", + "name": "stripe-checkout", + "version": "1.0.4", + "description": "TypeScript definitions for Stripe Checkout", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd33d47a39ce39ba444c62c2afa7cdd5c92d7dbbeb326f91cf94e887837adb74a4f2246b8f855aab4ac6c9955f38cbefef0f58ad4e3072a03f4ec3abbe2d4d6e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stripe-checkout@1.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stripe-checkout" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40types/stripe-v2@2.0.2", + "group": "@types", + "name": "stripe-v2", + "version": "2.0.2", + "description": "TypeScript definitions for stripe-v2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6215e957ec74d70026238e2604028b1a6789eaaf2263df9c9b0017c1f797b8d01348c808c2807c66c0a05f84af810dc6898a2debc7a48869ccaf10e36386de62" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": " MIT License\n\n Copyright (c) Microsoft Corporation.\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE\n" + } + } + } + ], + "purl": "pkg:npm/%40types/stripe-v2@2.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stripe-v2" + }, + { + "type": "issue-tracker", + "url": "https://github.com/DefinitelyTyped/DefinitelyTyped/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/DefinitelyTyped/DefinitelyTyped.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/amazeui@2.7.2", + "author": "Allmobilize, Inc.", + "name": "amazeui", + "version": "2.7.2", + "description": "Sleek, intuitive, and powerful front-end framework for faster and easier web development.", + "hashes": [ + { + "alg": "SHA-512", + "content": "5533af1d4be6312abf70aa772cfe3dca066da905d97c227016a6c8757dee9212c25c4ac6c0eff267dcc1db82df83b1a4b34b87ab0f220b35f3d4c0cebaff9cf7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright (c) 2014-2016 AllMobilize Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n\n* [Zepto.js](https://github.com/madrobby/zepto) ([MIT\nLicense](https://github.com/madrobby/zepto/blob/master/MIT-LICENSE))\n* [Sea.js](https://github.com/seajs/seajs) ([MIT License](https://github.com/seajs/seajs/blob/master/LICENSE.md))\n* [Handlebars.js](https://github.com/wycats/handlebars.js) ([MIT\nLicense](https://github.com/wycats/handlebars.js/blob/master/LICENSE))\n* [normalize.css](https://github.com/necolas/normalize.css) ([MIT\nLicense](https://github.com/necolas/normalize.css/blob/master/LICENSE.md))\n* [FontAwesome](https://github.com/FortAwesome/Font-Awesome/) ([CC BY 3.0 License](http://creativecommons.org/licenses/by/3.0/))\n* [Bootstrap](https://github.com/twbs/bootstrap) ([MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE))\n* [UIkit](https://github.com/uikit/uikit) ([MIT License](https://github.com/uikit/uikit/blob/master/LICENSE.md))\n* [Foundation](https://github.com/zurb/foundation) ([MIT\nLicense](https://github.com/zurb/foundation/blob/master/LICENSE))\n* [Framework7](https://github.com/nolimits4web/Framework7) ([MIT\nLicense](https://github.com/nolimits4web/Framework7/blob/master/LICENSE))\n* [Alice](https://github.com/aliceui/aliceui.org/) ([MIT\nLicense](https://github.com/aliceui/aliceui.org/blob/master/LICENSE))\n* [Arale](https://github.com/aralejs/aralejs.org/) ([MIT\nLicense](https://github.com/aralejs/aralejs.org/blob/master/LICENSE))\n* [Pure](https://github.com/yui/pure) ([BSD License](https://github.com/yui/pure/blob/master/LICENSE.md))\n* [Semantic UI](https://github.com/Semantic-Org/Semantic-UI) ([MIT\nLicense](https://github.com/Semantic-Org/Semantic-UI/blob/master/LICENSE.md))\n* [FastClick](https://github.com/ftlabs/fastclick) ([MIT\nLicense](https://github.com/ftlabs/fastclick/blob/master/LICENSE))\n* [screenfull.js](https://github.com/sindresorhus/screenfull.js) ([MIT\nLicense](https://github.com/sindresorhus/screenfull.js/blob/gh-pages/license))\n* [FlexSlider](https://github.com/woothemes/FlexSlider) ([GPL 2.0](http://www.gnu.org/licenses/gpl-2.0.html))\n* [Hammer.js](https://github.com/hammerjs/hammer.js) ([MIT License](https://github.com/hammerjs/hammer.js/blob/master/LICENSE.md))\n* [Flat UI](https://github.com/designmodo/Flat-UI) ([CC BY 3.0 and MIT License](https://github.com/designmodo/Flat-UI#copyright-and-license))\n* [store.js](https://github.com/marcuswestin/store.js) ([MIT License](https://github.com/marcuswestin/store.js/blob/master/LICENSE))\n* [bootstrap-datepicker.js](http://www.eyecon.ro/bootstrap-datepicker/) ([Apache License 2.0](http://www.eyecon.ro/bootstrap-datepicker/js/bootstrap-datepicker.js))\n* [iScroll](http://iscrolljs.com/) ([MIT License](http://iscrolljs.com/#license))\n" + } + } + } + ], + "purl": "pkg:npm/amazeui@2.7.2", + "externalReferences": [ + { + "type": "website", + "url": "http://amazeui.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/allmobilize/amazeui/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/allmobilize/amazeui.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/angular@1.8.3", + "author": "Angular Core Team", + "name": "angular", + "version": "1.8.3", + "description": "HTML enhanced for web apps", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6a8e458841056c1e3e126f94dc12ce16656a457951475f0c44047521ae7cb8d43f14ac101de93ffa9cf3c0b0b9e024245e20eaa2f795b79b176f7af7aeb6967" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Angular\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/angular@1.8.3", + "externalReferences": [ + { + "type": "website", + "url": "http://angularjs.org" + }, + { + "type": "issue-tracker", + "url": "https://github.com/angular/angular.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/angular/angular.js.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/antd@3.26.20", + "name": "antd", + "version": "3.26.20", + "description": "An enterprise-class UI design language and React components implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "548a2eb38a1f65fc45b5df4ad61f4ca515f6b030e98f741c3858b762021cf41feec83962fc694b6fc49629f41f25a3246b1c1ab48bf9d3775a8364e883e86212" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT LICENSE\n\nCopyright (c) 2015-present Ant UED, https://xtech.antfin.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/antd@3.26.20", + "externalReferences": [ + { + "type": "website", + "url": "http://ant.design/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ant-design/ant-design/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ant-design/ant-design.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ant-design/create-react-context@0.2.6", + "author": "James Kyle", + "group": "@ant-design", + "name": "create-react-context", + "version": "0.2.6", + "description": "A fork of create-react-context in MIT license", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4752e684e74fd611e938c3643e41856278b3c819f5ccfa752c192b20f313baa07070edd7ddd785acffaab7fcbe9e67ad338d48afdd65254b3a56c823972ea6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2017-present James Kyle \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ant-design/create-react-context@0.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ant-design/create-react-context#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ant-design/create-react-context/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ant-design/create-react-context.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/warning@4.0.3", + "author": "Berkeley Martinez", + "name": "warning", + "version": "4.0.3", + "description": "A mirror of Facebook's Warning", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9272376db629622f1c9fc5e775d266fd1997f69c72a1d1f1eb7592968c4c3fdf2c2471b55f225fc73333363bb1566ea53237cdc51383c7b2712da4345f65eb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/warning@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/BerkeleyTrue/warning" + }, + { + "type": "issue-tracker", + "url": "https://github.com/BerkeleyTrue/warning/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/BerkeleyTrue/warning.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ant-design/icons@2.1.1", + "group": "@ant-design", + "name": "icons", + "version": "2.1.1", + "description": "Ant Design Icons", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c21fe936563967a3861697a839df99c7474f4fc021264c12801ba56a17eae192b48f44b7e0a54da669a8306d93cb8da1ee53925dd43150d8a26942e23ab86f3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40ant-design/icons@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ant-design/ant-design-icons#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ant-design/ant-design-icons/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ant-design/ant-design-icons.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ant-design/icons-react@2.0.1", + "group": "@ant-design", + "name": "icons-react", + "version": "2.0.1", + "description": "

Ant Design Icons for React

", + "hashes": [ + { + "alg": "SHA-512", + "content": "af541fa25b4cbabb8966a76229c6cf8a6dddf0b36c54f07bdf75348191144b104bbaa8a5c2c5b6f0adab0935923138e6157ecc7e97febffc1d8857bf5c2a9387" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/%40ant-design/icons-react@2.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/ant-design/ant-design-icons/tree/master/packages/icons-react" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ant-design/colors@3.2.2", + "author": "afc163", + "group": "@ant-design", + "name": "colors", + "version": "3.2.2", + "description": "Color palettes calculator of Ant Design", + "hashes": [ + { + "alg": "SHA-512", + "content": "60a80d6c6d9d973a8c840f4db48dffa5b635ea6dd897f11e58145afa50755f561a6311ebc4d7b18906022d358efee0ef0232c53040d4fb347dd35c1a06d32d8d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT LICENSE\n\nCopyright (c) 2018-present Ant UED, https://xtech.antfin.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ant-design/colors@3.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ant-design/ant-design-colors#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ant-design/ant-design-colors/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ant-design/ant-design-colors.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tinycolor2@1.4.2", + "author": "Brian Grinstead", + "name": "tinycolor2", + "version": "1.4.2", + "description": "Fast Color Parsing and Manipulation", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc985c7193ecf7ae6c57f2f6b14e28450540a2cd29417c2cbd32e459876a27e6bc43990f173253b8e170cbb52788f962e3834a406020964b23bce729a3de5a64" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c), Brian Grinstead, http://briangrinstead.com\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/tinycolor2@1.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/bgrins/TinyColor#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bgrins/TinyColor/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bgrins/TinyColor.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/array-tree-filter@2.1.0", + "author": "afc163", + "name": "array-tree-filter", + "version": "2.1.0", + "description": "filter in array tree", + "hashes": [ + { + "alg": "SHA-512", + "content": "e113b0202365370fc7a9af6ffab939876d8a8e6cc1d4919331528fd8028904e0a06f4c8bd0049fd3e62f09c2cd370aae387357e3c8e4799209ddafa8390a8a73" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/array-tree-filter@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/afc163/array-tree-filter#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/afc163/array-tree-filter/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/afc163/array-tree-filter.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/copy-to-clipboard@3.3.1", + "author": "sudodoki", + "name": "copy-to-clipboard", + "version": "3.3.1", + "description": "Copy stuff into clipboard using JS with fallbacks", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b5deaa3a9081d34e90a6f3f5aea7ed1bd66556113beeda420cccaa0af05a642e417196dd339d400770cce8c7e4fcb0f96ab595eadc2ba5123407b1888614953" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 sudodoki \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/copy-to-clipboard@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sudodoki/copy-to-clipboard#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sudodoki/copy-to-clipboard/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sudodoki/copy-to-clipboard.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/toggle-selection@1.0.6", + "author": "sudodoki", + "name": "toggle-selection", + "version": "1.0.6", + "description": "Toggle current selected content in browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "062652f82d4e4bc83fab64516c99b2e7dc69ca084d06aaebea4e4bfee281191b137f19aeddf7e246777c9a518f5156b283ca6f7e2e6eadf9eef1353b0d53a42d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/toggle-selection@1.0.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sudodoki/toggle-selection#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sudodoki/toggle-selection/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sudodoki/toggle-selection.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/css-animation@1.6.1", + "name": "css-animation", + "version": "1.6.1", + "description": "css-animation", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff8f3efc1684687458ea4350d8e20fcca7fd03a83c5a36588e188d0cdb8855bb26e6d5c218802c1c38c1e17bb50b8bd726d516668dba3baf0e4240e934168fa2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/css-animation@1.6.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/yiminghe/css-animation" + }, + { + "type": "issue-tracker", + "url": "http://github.com/yiminghe/css-animation/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yiminghe/css-animation.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-classes@1.2.6", + "name": "component-classes", + "version": "1.2.6", + "description": "Cross-browser element class list", + "hashes": [ + { + "alg": "SHA-512", + "content": "84f14650bc5dc2e82ed50596dd2bd53825072f33b7e3e6b627a5aacb47390124247e2f7ff2765c041d19a216846d73909427e530010c9845a4eeeec156ce24a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/component-classes@1.2.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/classes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/classes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/classes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/component-indexof@0.0.3", + "name": "component-indexof", + "version": "0.0.3", + "description": "Microsoft sucks", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6e0d02afc7feb81d95dbe2107021cbd02da2e0bb1f28d426d6977f6ce3586b208643975949883e63736da08f74417862b4a2fc402c362921bca3a83514974af" + } + ], + "purl": "pkg:npm/component-indexof@0.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/component/indexof#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/component/indexof/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/component/indexof.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-closest@0.2.0", + "author": "Nicolas Gallagher", + "name": "dom-closest", + "version": "0.2.0", + "description": "For a given DOM element, find the first ancestor that matches a given CSS selector.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea77939f506d2654d2b7e5d22125e99ceb05d6e9e2d421ec3ffb66cd93065b16ac6051ec04eaab1cf9f39a77aa1202a1a5a8277e77d27dbbd1456d3116c04700" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) Nicolas Gallagher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-closest@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/necolas/dom-closest#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/necolas/dom-closest/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/necolas/dom-closest.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-matches@2.0.0", + "author": "Nicolas Gallagher", + "name": "dom-matches", + "version": "2.0.0", + "description": "Check if a DOM element matches a given selector", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9523ce7ac440c22d78b5f56fb805e721479fe8212e9b2822aa71fd7a191f0f83b7462c9fde04e5956c2990c76212bd81fac13371e447fb2533b0d5d446471e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) Nicolas Gallagher\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-matches@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/necolas/dom-matches#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/necolas/dom-matches/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/necolas/dom-matches.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/enquire.js@2.1.6", + "author": "Nick Williams", + "name": "enquire.js", + "version": "2.1.6", + "description": "Awesome Media Queries in JavaScript", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcaba33693be3d3eb717b1e5a6ee21de91374e890a447376e896264293f28e4443fcde7b47b6cf0cda23317762eeebde00a8d807bc909daaed0b1667156af45f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2012 Nick Williams\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/enquire.js@2.1.6", + "externalReferences": [ + { + "type": "website", + "url": "http://wicky.nillia.ms/enquire.js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/WickyNilliams/enquire.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/WickyNilliams/enquire.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-mobile@2.2.2", + "author": "Julian Gruber", + "name": "is-mobile", + "version": "2.2.2", + "description": "Check if mobile browser.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c16fd25e76099138ecfbeb552b96fa9152136690193ed52bb7d485f34befc46885fcecb06a5f823a4d6395192256ad7944534440a418df54e4576e3fd53e5c56" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/is-mobile@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/juliangruber/is-mobile" + }, + { + "type": "issue-tracker", + "url": "https://github.com/juliangruber/is-mobile/issues" + }, + { + "type": "vcs", + "url": "git://github.com/juliangruber/is-mobile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/omit.js@1.0.2", + "author": "Benjy Cui", + "name": "omit.js", + "version": "1.0.2", + "description": "Utility function to create a shallow copy of an object which had dropped some fields.", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd03dce86d8d4bef1de0bfdc4216e4e988add564c1e94b3683ce00ec0ff5fb0f5dfde4461f212a0b992442d1d5a076793455861bbb541a0ae1559c2065a9caad" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2016 Benjy Cui\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/omit.js@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/benjycui/omit.js#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/benjycui/omit.js/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/benjycui/omit.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/raf@3.4.1", + "author": "Chris Dickinson", + "name": "raf", + "version": "3.4.1", + "description": "requestAnimationFrame polyfill for node and the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "4aae025b8421c0e1c4f2e727e89df832ab5909e5853f66904a6ae5ae8620a805753e34ad221257c58b9381421f90493bcd32e39888cb994e6af9f6c3d4d9ce24" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Chris Dickinson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/raf@3.4.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chrisdickinson/raf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chrisdickinson/raf/issues" + }, + { + "type": "vcs", + "url": "git://github.com/chrisdickinson/raf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-animate@2.11.1", + "name": "rc-animate", + "version": "2.11.1", + "description": "css-transition ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4dcae0861491bfd18fbd44a879cbf8bf01a954080e75a29cb24bf8cedac7842e98329999b6bbd415df1c0e0f012ece499e4350433f130b9982dc4c979d3e591" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-animate@2.11.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/animate" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/animate/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/animate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-util@4.21.1", + "name": "rc-util", + "version": "4.21.1", + "description": "Common Utils For React Component", + "hashes": [ + { + "alg": "SHA-512", + "content": "67ebe591241573597c3b6523477590f977569618f9abd04c40d2e4da2381721ef90aa3dfac9c86b5c58c72785194db83bb435db6de242d53bc248f01ac00686e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-util@4.21.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/util" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/util/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/util.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/add-dom-event-listener@1.1.0", + "name": "add-dom-event-listener", + "version": "1.1.0", + "description": "add dom event listener. normalize ie and others", + "hashes": [ + { + "alg": "SHA-512", + "content": "582c71d62c474f419053d85bd0a23f9a18114219d4f94dc6bf063a66f56362af2bb228481a86883946d8d3230f0712c7e4c0edaf4933ddf8ac58635c6d65bb27" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/add-dom-event-listener@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/yiminghe/add-dom-event-listener" + }, + { + "type": "issue-tracker", + "url": "http://github.com/yiminghe/add-dom-event-listener/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yiminghe/add-dom-event-listener.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-calendar@9.15.11", + "author": "yiminghe@gmail.com", + "name": "rc-calendar", + "version": "9.15.11", + "description": "React Calendar", + "hashes": [ + { + "alg": "SHA-512", + "content": "aafd155df0009f2b0c5898a0c5a3fab1ee1b247bebd7b0fdaac2db8bc04ea5d804a1cb12d1192063521488568e5582890f2fc4c8b0b8e3b3b4dac57fcb961806" + } + ], + "purl": "pkg:npm/rc-calendar@9.15.11", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/calendar" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/calendar/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/calendar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-trigger@2.6.5", + "name": "rc-trigger", + "version": "2.6.5", + "description": "base abstract trigger component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ba0adb3d84b7995ac4ef5a7b8c9bba049617fed3718e8ce2df4ee534426741f59ad6ee3476229239ae934cee2f4cbc0025300993c7966bee0deebbf68cbd903" + } + ], + "purl": "pkg:npm/rc-trigger@2.6.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/trigger" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/trigger/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/trigger.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-align@2.4.5", + "name": "rc-align", + "version": "2.4.5", + "description": "align ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "9eff7061461d7f27cafaab244e17f805051221a75e23f742b1f68c65f344a319bd1f03888a843e2f2aa630aea35870194203b330b6aa6b086e057945eb7be08f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-align@2.4.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/align" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/align/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dom-align@1.12.3", + "name": "dom-align", + "version": "1.12.3", + "description": "Align DOM Node Flexibly ", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a3f6164dddad3b71b47acef88c50138c3dd5b16216cc23ec7e592d0d008bb6cc56666caf32b3d47bf60fa21bda8b9e50b0a45a1a07e7cacbc3ddbf8ef41ac3c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dom-align@1.12.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/yiminghe/dom-align" + }, + { + "type": "issue-tracker", + "url": "http://github.com/yiminghe/dom-align/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yiminghe/dom-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-cascader@0.17.5", + "author": "afc163@gmail.com", + "name": "rc-cascader", + "version": "0.17.5", + "description": "cascade select ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "598315731534f8b8fec4baf86181f4fb25ce0ee9af3570dc544b398bb2f59ada56c1892e6cf57fcdb4299fe8c62850885bf84e863914e09d5d6fcfcffd4284ec" + } + ], + "purl": "pkg:npm/rc-cascader@0.17.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/cascader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/cascader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/cascader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-checkbox@2.1.8", + "name": "rc-checkbox", + "version": "2.1.8", + "description": "checkbox ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "eaa3a0874fdbcb49d53404b1e8b6678514f2d7b12d7206aff88ac8ee42fd57d91c0d9fe0ecad7824596aaed2773630eafcaca7f813c8d6cb755ef6e485f6897a" + } + ], + "purl": "pkg:npm/rc-checkbox@2.1.8", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/checkbox" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/checkbox/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/checkbox.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-collapse@1.11.8", + "author": "eward.song@gmail.com", + "name": "rc-collapse", + "version": "1.11.8", + "description": "rc-collapse ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0485f3f249c4d896391b46e2281e7892c196a00f950fa59dc24e8620a0d6160bce4bdaa09b3d817bf8e682ef5dc53ab224a7a35b7cda97b084cdc660c09b1a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-collapse@1.11.8", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/collapse" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/collapse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/collapse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-dialog@7.6.1", + "author": "yiminghe@gmail.com", + "name": "rc-dialog", + "version": "7.6.1", + "description": "dialog ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "29429ffb6799e182fe9675cc1b7851e19b48842f6095f1f6ecdb53573de07280c83c07f7b94bda5d544da030a24a2f8e18a2f221bfdbe84a2274587a9d00b95a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-dialog@7.6.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/dialog" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/dialog/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/dialog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-drawer@3.1.3", + "author": "155259966@qq.com", + "name": "rc-drawer", + "version": "3.1.3", + "description": "drawer component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "db3f917719b35f265d7bfd4e85531f0d1d5efc606cc05796499ec54b715d774aa1815769575c12cc82f3cf145a4f8f3522d07984e57e7bca594f4eef74913c92" + } + ], + "purl": "pkg:npm/rc-drawer@3.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ant-motion/drawer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ant-motion/drawer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ant-motion/drawer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-dropdown@2.4.1", + "name": "rc-dropdown", + "version": "2.4.1", + "description": "dropdown ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "a745d89f4c2b3a9019d9f50613a609e94f0904d7390128a3ce767a764a2375a11f40901e66d57d28c11ec21c64565c4649b6dd5ded74a6d8c1953116f6f13012" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-dropdown@2.4.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/dropdown" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/dropdown/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/dropdown.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-editor-mention@1.1.13", + "author": "surgesoft@gmail.com", + "name": "rc-editor-mention", + "version": "1.1.13", + "description": "mention ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc03a61a2afdd458b6a207d145a5cbb6a94db88c10a6f95aee85271874b5fb77a8edbf9f529e4894a71a82ab70501079a033687e8c925e42c1c735af498369fd" + } + ], + "purl": "pkg:npm/rc-editor-mention@1.1.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/mention" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/mention/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/mention.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-editor-core@0.8.10", + "author": "surgesoft@gmail.com", + "name": "rc-editor-core", + "version": "0.8.10", + "description": "editor-core ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f7687a5e302218035b1d008ef29c71e35f2e5faa9f37b8f943ebca2f674a0295349cded6c79b20b15e503e4e2e18826729098bfb6af17a6be4c86c091ae7793" + } + ], + "purl": "pkg:npm/rc-editor-core@0.8.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/editor-core" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/editor-core/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/editor-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-form@2.4.12", + "author": "yiminghe@gmail.com", + "name": "rc-form", + "version": "2.4.12", + "description": "React High Order Form Component", + "hashes": [ + { + "alg": "SHA-512", + "content": "b077f2591ae78c21e478261f6001a8a761900540ba08a30f70917d87f80bfef4e6641fd137a7cd3862a35eb5e315bc05c0a5d4581a0fb480c30e65d05bdc4d77" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-form@2.4.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/form" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/form/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/form.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/async-validator@1.11.5", + "author": "yiminghe@gmail.com", + "name": "async-validator", + "version": "1.11.5", + "description": "validate form asynchronous", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cdb42b0c01e007d6974b304835cfcfc16f76bc71d09bba2f506c90134451c71d6e644faf8d3c8df34954145e08a44c5213cec83e9186393535a13363abc2df7" + } + ], + "purl": "pkg:npm/async-validator@1.11.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/yiminghe/async-validator" + }, + { + "type": "issue-tracker", + "url": "http://github.com/yiminghe/async-validator/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/yiminghe/async-validator.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-react-class@15.7.0", + "name": "create-react-class", + "version": "15.7.0", + "description": "Legacy API for creating React components.", + "hashes": [ + { + "alg": "SHA-512", + "content": "419bf8b05586f52e5152f9136166df9717995fe246ec2cf44e7df7ad0049f961504ea4df5138cc8e2bfdb677d76b38ec3b9af42a13ecf80a828f2ad05fa8769e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "MIT License\n\nCopyright (c) 2013-present, Facebook, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-react-class@15.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://facebook.github.io/react/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/facebook/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/facebook/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-input-number@4.5.9", + "author": "tsjxyz@gmail.com", + "name": "rc-input-number", + "version": "4.5.9", + "description": "React input-number component", + "hashes": [ + { + "alg": "SHA-512", + "content": "c004f8101a4b0d6e3edbb73ddf993817524b93e827872181929cc19ad90dbc81cb1bcc939dd6522766c57d261f900e82f36231980ced5ecddf7c279477fae46e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-input-number@4.5.9", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/input-number" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/input-number/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/input-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-feedback@2.0.0", + "author": "rjmuqiang@gmail.com", + "name": "rmc-feedback", + "version": "2.0.0", + "description": ":active pseudo-class with react for mobile", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4f58e18e5bb55792cfe5dc9ce5394f4d231469b9a492f1df730375142d40ae4ca9e9c011cdbefd63489cf181b6c241e63344e594a60288e336b75f80bf98a99" + } + ], + "purl": "pkg:npm/rmc-feedback@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-feedback" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-feedback/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-feedback.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-mentions@0.4.2", + "name": "rc-mentions", + "version": "0.4.2", + "description": "React Mentions", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d366ead0cda70b5ce7d5ba21f2746cea92aedc14c1d7175f25da367d3e15949f672abce498dd6e28b0dd0fab6f4038c381a5cc5d642ce073b2dbd2bfdb8240f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2019-present alipay.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-mentions@0.4.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/mentions" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/mentions/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/mentions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-menu@7.5.5", + "name": "rc-menu", + "version": "7.5.5", + "description": "menu ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "e18257260ae9506100d6b31fb5737b6c386b579acf07ca012681ea4fe1955ed21609a9df4311273377e68474216ad2f9f49a0014c66125a373849224e0551609" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-menu@7.5.5", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/menu" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/menu/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/menu.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/mini-store@2.0.0", + "name": "mini-store", + "version": "2.0.0", + "description": "[![Travis](https://img.shields.io/travis/yesmeck/mini-store.svg?style=flat-square)](https://travis-ci.org/yesmeck/mini-store)", + "hashes": [ + { + "alg": "SHA-512", + "content": "106d02bb0a50997f972f84154b49313701d6e5fb526e1ca0bb5ab1407d298a9ba08e73e46ef91a9427506c48a1330b5063a77731337e312d2af9ababb3e45f2d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/mini-store@2.0.0" + }, + { + "type": "library", + "bom-ref": "pkg:npm/mutationobserver-shim@0.3.7", + "name": "mutationobserver-shim", + "version": "0.3.7", + "description": "MutationObserver shim for ES3 environments", + "hashes": [ + { + "alg": "SHA-512", + "content": "a112034f265053dea7022cf6010ca7830c757bcf6202997684de40398c32c4b501e3b518b14dd6bfd9495aa1f9cbf41d89891ce4740b8b6dd9341ddf10b74771" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright © 2014 Graeme Yeates \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/mutationobserver-shim@0.3.7", + "externalReferences": [ + { + "type": "vcs", + "url": "github.com/megawac/MutationObserver.js" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/resize-observer-polyfill@1.5.1", + "author": "Denis Rul", + "name": "resize-observer-polyfill", + "version": "1.5.1", + "description": "A polyfill for the Resize Observer API", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f066ba2d7473a8d769d0b99947126b6e5dda86a0e0f43a16b1a2968d1715b3227a4481a2d6a15b8031b4f38b1ba8b02c769c41b9f278335b7bf1756a3122076" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2016 Denis Rul\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/resize-observer-polyfill@1.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/que-etc/resize-observer-polyfill" + }, + { + "type": "issue-tracker", + "url": "https://github.com/que-etc/resize-observer-polyfill/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/que-etc/resize-observer-polyfill.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-notification@3.3.1", + "name": "rc-notification", + "version": "3.3.1", + "description": "notification ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "539f9fe0198155f3127f738748bc916a0b09ef8c8ac25ad002d6db2f98a3a00d05d82eb406e7f09ce7071b5f2d569addee26888f366dd5328c9904984af82b8a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-notification@3.3.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/notification" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/notification/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/notification.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-pagination@1.20.15", + "author": "i@xiaoba.me", + "name": "rc-pagination", + "version": "1.20.15", + "description": "pagination ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd7af8ff718e6b50ed2fc882625eea454ae810cad10e16628ae1f071515f4a2c1af4b625a0c95459c389b27afc2cde80eeb2cf766dff0874ad50d79877eda92b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-pagination@1.20.15", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/pagination" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/pagination/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/pagination.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-progress@2.5.3", + "author": "tsjxyz@gmail.com", + "name": "rc-progress", + "version": "2.5.3", + "description": "progress ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b67dae029ea19e84b66832b76605e67ce8e3524d571d939165a9eb5bc09dd1ffee365dfaa1c1054e8d6a76307e0fed749038c00670d3b2d5215f08fdf8d79b2" + } + ], + "purl": "pkg:npm/rc-progress@2.5.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/progress" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/progress/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/progress.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-rate@2.5.1", + "name": "rc-rate", + "version": "2.5.1", + "description": "React Star Rate Component", + "hashes": [ + { + "alg": "SHA-512", + "content": "de22643494fcc651e494f09d799b5466626645551bafa0074657d2b33b5f6135d5947aefd9370f9f75e41ec1fed768fcd7659507b82f8a54b68f7f9f7e35075e" + } + ], + "purl": "pkg:npm/rc-rate@2.5.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/rate" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/rate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/rate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-resize-observer@0.1.3", + "name": "rc-resize-observer", + "version": "0.1.3", + "description": "Resize observer for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "bb3390130c7cdf17504853a438033bc7b1872102989eb0d5e1d5b1b42c721b5052d6991f27812f0de31fb2f0091d2624417541bbeb2044719b46d2c6dea8ae52" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2019-present afc163\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-resize-observer@0.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://react-component.github.io/resize-observer" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/resize-observer/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/resize-observer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-select@9.2.3", + "name": "rc-select", + "version": "9.2.3", + "description": "React Select", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a1b30c4e31688d9e45d16f1cab8f492222fc827e8fc16913da61bb037ad488014db2103c0a1c5efdf1b9423f9bbce8a2ce04a06fb7158b142912b10c35b28e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present alipay.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-select@9.2.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/select" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/select/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/select.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-slider@8.7.1", + "name": "rc-slider", + "version": "8.7.1", + "description": "Slider UI component for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "58c4f999115411cacb5b04f1b324bc8d89a568cb1354264818434b8a41ec36ffad13c4e1536942a0f7e2ff114d51f24534548114fdccc0f7b3f59b0998da75de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-slider@8.7.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/slider/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/slider/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/slider.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-tooltip@3.7.3", + "name": "rc-tooltip", + "version": "3.7.3", + "description": "React Tooltip", + "hashes": [ + { + "alg": "SHA-512", + "content": "744da26ee931c64add7bbc07f56f28cc72943b86909cf67aa811edad31fd2e83bcdfa3e30dd89a58eef77e03c1d3955f26cf456d976618f5446d709e38ff7d5b" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-tooltip@3.7.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/tooltip" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/tooltip/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/tooltip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-steps@3.5.0", + "name": "rc-steps", + "version": "3.5.0", + "description": "steps ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "d95924ae96bb3d96e0eea3eca93373543a2fe2eefc726c687e38e720788607dfbdaea292f284cb3f36d6dae8960ebdcb93ec86c21f2b6e918ed44e950200423a" + } + ], + "purl": "pkg:npm/rc-steps@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/steps" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/steps/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/steps.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-switch@1.9.2", + "name": "rc-switch", + "version": "1.9.2", + "description": "switch ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9a2bb998e052c32b2f7d1eadc0d6d7fc09ca9fccab47a7d2cf5fc5939d9d0ccdd1c24e77920116f55c3ec4a9ebbc05a72d6ac606b22d9b17da75f10fbfe4913" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-switch@1.9.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/switch" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/switch/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/switch.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-table@6.10.15", + "name": "rc-table", + "version": "6.10.15", + "description": "table ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c0af433f82ab7e8ab3a3bcf3412c0a664340941cd39f2ac10186ed6e22e0773a5375ca703dcfeb1da1343235df7ef0d4a5d0c62740e39f86d2c284063b9d4d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT LICENSE\n\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-table@6.10.15", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/table" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/table/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/table.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-tabs@9.7.0", + "author": "yiminghe@gmail.com", + "name": "rc-tabs", + "version": "9.7.0", + "description": "tabs ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "92f9a0a7cfcc7cbcc5674ea15878a09eaa26150e6717b06a2abe4ed457e113854ab06adea79d98485ff532f4b9a1ed0d3dc23d5c6352da9ef9d42e6fe9c603a5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-tabs@9.7.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/tabs" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/tabs/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/tabs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-hammerjs@0.6.10", + "author": "Jed Watson", + "name": "rc-hammerjs", + "version": "0.6.10", + "description": "ReactJS / HammerJS integration. Support touch events in your React app.", + "hashes": [ + { + "alg": "SHA-512", + "content": "56087da88b9dc8de421d1a29e0cfaffb15278900455972abb09c50455b493a2db1811ac2788e76fdb92968be475b0521a932bd032ab49fb9584c8b53ea5779ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Jed Watson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-hammerjs@0.6.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/react-hammerjs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/react-hammerjs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/react-hammerjs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hammerjs@2.0.8", + "author": "Jorik Tangelder", + "name": "hammerjs", + "version": "2.0.8", + "description": "A javascript library for multi-touch gestures", + "hashes": [ + { + "alg": "SHA-512", + "content": "b524170574bf31640e9ff44a7246b027ad6fbec0e90a89bcec9831898746c0774e6b486dd2fcd458395f8a8a1f142454d0bfba3460ede97cdb82826f66431e45" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (C) 2011-2014 by Jorik Tangelder (Eight Media)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hammerjs@2.0.8", + "externalReferences": [ + { + "type": "website", + "url": "http://hammerjs.github.io/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/hammerjs/hammer.js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/hammerjs/hammer.js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-time-picker@3.7.3", + "author": "wuzhao.mail@gmail.com", + "name": "rc-time-picker", + "version": "3.7.3", + "description": "React TimePicker", + "hashes": [ + { + "alg": "SHA-512", + "content": "2efd4cbf3a7d7d15e15c49d12cee275ba18b3715247c067746c88806c5a31a35d7bcc36376be015ff6b21251c014ad03a09a8e866edce6d8e6218a443b07145e" + } + ], + "purl": "pkg:npm/rc-time-picker@3.7.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/time-picker" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/time-picker/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/time-picker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-tree@2.1.4", + "author": "smith3816@gmail.com", + "name": "rc-tree", + "version": "2.1.4", + "description": "tree ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "5decbbf7821abe0b3c6257459577192ce85f7088655f93b3ff27cab9f9270577f60256423a473b687a9233db9317b7c13ed4c63e13f13447cea877d8edbef19e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT LICENSE\n\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-tree@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/tree" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/tree/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/tree.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-tree-select@2.9.4", + "author": "hualei5280@gmail.com", + "name": "rc-tree-select", + "version": "2.9.4", + "description": "tree-select ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "d074245c03785db7c15b6d026588771be57e54cae35f8d9746d0c2a72bfa3c3526e6f8a40b439bebcd99042552f7b5b0d9ae477fa0239aed1a85611d204a7086" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "MIT LICENSE\n\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-tree-select@2.9.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/tree-select" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/tree-select/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/tree-select.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-trigger@3.0.0", + "name": "rc-trigger", + "version": "3.0.0", + "description": "base abstract trigger component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ba0adb3d84b7995ac4ef5a7b8c9bba049617fed3718e8ce2df4ee534426741f59ad6ee3476229239ae934cee2f4cbc0025300993c7966bee0deebbf68cbd903" + } + ], + "purl": "pkg:npm/rc-trigger@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/trigger" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/trigger/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/trigger.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-animate@3.1.1", + "name": "rc-animate", + "version": "3.1.1", + "description": "css-transition ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4dcae0861491bfd18fbd44a879cbf8bf01a954080e75a29cb24bf8cedac7842e98329999b6bbd415df1c0e0f012ece499e4350433f130b9982dc4c979d3e591" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-animate@3.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/animate" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/animate/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/animate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ant-design/css-animation@1.7.3", + "group": "@ant-design", + "name": "css-animation", + "version": "1.7.3", + "description": "css-animation", + "hashes": [ + { + "alg": "SHA-512", + "content": "2eb5f438666d5be5ba88b9d302a9d36a822c45e9587ae2d95acae60491545c300b42984fb0df1c1390c2b26a1294bd1061bf78050c48362b92ef402bffc04d80" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ant-design/css-animation@1.7.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/ant-design/css-animation" + }, + { + "type": "issue-tracker", + "url": "http://github.com/ant-design/css-animation/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/ant-design/css-animation.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-upload@2.9.4", + "name": "rc-upload", + "version": "2.9.4", + "description": "upload ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "597b741c6c57cb32eb3d5ea279cffde916e5ffa772ac05bca4ab98eb0c03ef2158c1f5396e380a8efeef0bc28d309eb0ce2b45ad98e7a22a2034bddd17d763dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rc-upload@2.9.4", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/upload" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/upload/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/upload.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-lazy-load@3.1.14", + "author": "Jason Brown", + "name": "react-lazy-load", + "version": "3.1.14", + "description": "Simple lazy loading component built with react", + "hashes": [ + { + "alg": "SHA-512", + "content": "eedb0e22d7f61e613084458c680fdad9795286ec9aeeb071a96011d133cc3b55d27fac9bc520c8d9b315f0ceafb5692f797f53952a5bd2a2c1ecd30ca431d50d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2015 Jason\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\n" + } + } + } + ], + "purl": "pkg:npm/react-lazy-load@3.1.14", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/loktar00/react-lazy-load#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/loktar00/react-lazy-load/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/loktar00/react-lazy-load.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/eventlistener@0.0.1", + "author": "Gregers Rygg", + "name": "eventlistener", + "version": "0.0.1", + "description": "Super-simple wrapper around addEventListener and attachEvent (old IE). Does not handle different Event-objects.", + "hashes": [ + { + "alg": "SHA-512", + "content": "85767937d866a779fba2f995806fb6bc83ba29c8d2535d3f77403523171fd22dbd7710b00064cd1ab48909f2e696f9a0403f05633ca9fff4bcf87a6ae0d77bb8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013 FINN.no AS\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/eventlistener@0.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/finn-no/eventlistener#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/finn-no/eventlistener/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/finn-no/eventlistener.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.throttle@4.1.1", + "author": "John-David Dalton", + "name": "lodash.throttle", + "version": "4.1.1", + "description": "The lodash method `_.throttle` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0891409f54aa55b16a3725266573ef0c0798adfb600de56f09ed854c493df452bbdc40d6753a46e3fab6d59e28a34d613a146632e1726afeb1e46acf2a24c2d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.throttle@4.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-slick@0.25.2", + "author": "Kiran Abburi", + "name": "react-slick", + "version": "0.25.2", + "description": " React port of slick carousel", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0c347fcd157fd1ef317a5bfc3e152e555cdc83bac17e5c35b5394d12cce0c453bc2a601f994c6022349fbecd534056a0801ddc82c9b49c69407e14264e98107" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Kiran Abburi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/react-slick@0.25.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/akiran/react-slick" + }, + { + "type": "issue-tracker", + "url": "https://github.com/akiran/react-slick/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/akiran/react-slick.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/json2mq@0.2.0", + "author": "Kiran Abburi", + "name": "json2mq", + "version": "0.2.0", + "description": "Generate media query string from JSON or javascript object", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b3a1183bbb1e43593208f49daa92b66ba95d60b7ead36a8b9f3311335db4b6e9489dd0dc1a25dd76dc772807cd1382e6c4a69c7120674dc42c79d1f12811640" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Kiran Abburi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/json2mq@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/akiran/json2mq" + }, + { + "type": "issue-tracker", + "url": "https://github.com/akiran/json2mq/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/akiran/json2mq.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/string-convert@0.2.1", + "name": "string-convert", + "version": "0.2.1", + "description": "String convertions", + "hashes": [ + { + "alg": "SHA-512", + "content": "bbfd6d74f978c909cf0639d5ae674ba3d82db8bbc42cab00a116a97a45a081d89036fbefba6fa3605df6f5df383406baeb4290c3ba41da7dfa2ab20a5685dadc" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Kiran Abburi\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/string-convert@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/akiran/string-convert#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/akiran/string-convert/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/akiran/string-convert.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/antd-mobile@2.3.4", + "name": "antd-mobile", + "version": "2.3.4", + "description": "基于 React 的移动设计规范实现", + "hashes": [ + { + "alg": "SHA-512", + "content": "530d361a173e0cfcda41c78943ee69d599d015a7ef20b0347214d37a7ee6edcf3d5336f0e8dcb7cec5590c4d607ed78d108b0be09a4f7b423ff9a23743f9cf00" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT LICENSE\n\nCopyright (c) 2016-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/antd-mobile@2.3.4", + "externalReferences": [ + { + "type": "website", + "url": "http://mobile.ant.design" + }, + { + "type": "issue-tracker", + "url": "http://github.com/ant-design/ant-design-mobile/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/ant-design/ant-design-mobile.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/normalize.css@7.0.0", + "name": "normalize.css", + "version": "7.0.0", + "description": "A modern alternative to CSS resets", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d86856718f643543d7b5549d1fea5686e3a46de6cf544612b272435a036bd99cbff48304075a133b00b424a7758140a339b1744b439121adf929f84fd988246" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "# The MIT License (MIT)\n\nCopyright © Nicolas Gallagher and Jonathan Neal\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/normalize.css@7.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://necolas.github.io/normalize.css" + }, + { + "type": "issue-tracker", + "url": "https://github.com/necolas/normalize.css/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/necolas/normalize.css.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-checkbox@2.0.3", + "name": "rc-checkbox", + "version": "2.0.3", + "description": "checkbox ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "eaa3a0874fdbcb49d53404b1e8b6678514f2d7b12d7206aff88ac8ee42fd57d91c0d9fe0ecad7824596aaed2773630eafcaca7f813c8d6cb755ef6e485f6897a" + } + ], + "purl": "pkg:npm/rc-checkbox@2.0.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/checkbox" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/checkbox/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/checkbox.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-collapse@1.9.3", + "author": "eward.song@gmail.com", + "name": "rc-collapse", + "version": "1.9.3", + "description": "rc-collapse ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0485f3f249c4d896391b46e2281e7892c196a00f950fa59dc24e8620a0d6160bce4bdaa09b3d817bf8e682ef5dc53ab224a7a35b7cda97b084cdc660c09b1a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-collapse@1.9.3", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/collapse" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/collapse/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/collapse.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-slider@8.2.0", + "name": "rc-slider", + "version": "8.2.0", + "description": "Slider UI component for React", + "hashes": [ + { + "alg": "SHA-512", + "content": "58c4f999115411cacb5b04f1b324bc8d89a568cb1354264818434b8a41ec36ffad13c4e1536942a0f7e2ff114d51f24534548114fdccc0f7b3f59b0998da75de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-slider@8.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://react-component.github.io/slider/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/slider/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/slider.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-swipeout@2.0.11", + "author": "rjmuqiang@gmail.com", + "name": "rc-swipeout", + "version": "2.0.11", + "description": "swipe out ui component for react(web and react-native)", + "hashes": [ + { + "alg": "SHA-512", + "content": "777ecb827e115f838e432b80d81168d2b1a5530ae6664e6af37b2b1f78b12756358e276bd862a38090db35e1945593cd7d804bf75125bbafb17d519fb567f82e" + } + ], + "purl": "pkg:npm/rc-swipeout@2.0.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/swipeout" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/swipeout/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/swipeout.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rc-gesture@0.0.22", + "name": "rc-gesture", + "version": "0.0.22", + "description": "Support gesture for react component", + "hashes": [ + { + "alg": "SHA-512", + "content": "e86eaaac21343144d7ca387fa68c23f755e48d18e814be078892cf5399402d71ef197fbf79f7148c6614ac7aebc349b041d9ab9a0e0f3aa9d8fdb89b9ecf86de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rc-gesture@0.0.22", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/gesture/" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/gesture/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/gesture.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-native-swipeout@2.3.6", + "author": "Dan Cormier", + "name": "react-native-swipeout", + "version": "2.3.6", + "description": "iOS-style swipeout buttons behind component", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7db2e502b29cdc938be9da95a08167b47eb4bf40eb57eb26026b01e711eb3be40edd642104ef86f15f60356d0cc61fd714323abac6c75f0bde116e20ca22426" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Dan Cormier\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE." + } + } + } + ], + "purl": "pkg:npm/react-native-swipeout@2.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/dancormier/react-native-swipeout" + }, + { + "type": "issue-tracker", + "url": "https://github.com/dancormier/react-native-swipeout/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/dancormier/react-native-swipeout.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/react-tween-state@0.1.5", + "author": "Cheng Lou", + "name": "react-tween-state", + "version": "0.1.5", + "description": "React animation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b094298ec767d308e50c85297e96fb8d01a7386f210045b67bc93428f03ec667f92856ba5dab7626575b9b10616aa3f44bfb885e1544e7298ac87fdbf57f2760" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "contentType": "text/txt", + "content": "BSD License\n\nFor react-tween-state software\n\nCopyright (c) 2014, Cheng Lou. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice, this\n list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright notice,\n this list of conditions and the following disclaimer in the documentation\n and/or other materials provided with the distribution.\n\n * Neither the name Cheng Lou nor the names of its contributors may be used to\n endorse or promote products derived from this software without specific\n prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/react-tween-state@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chenglou/react-tween-state" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chenglou/react-tween-state/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chenglou/react-tween-state.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/tween-functions@1.2.0", + "author": "chenglou", + "name": "tween-functions", + "version": "1.2.0", + "description": "Robert Penner's easing functions, slightly modified", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d906d2d87022ed11c8cbd781736f5812c4f05e2fb9d6bc684ee5914f1aace209cafcbaf1e9d0d0e676305c869e8a1cbfad131720d26dcd21298ac61537f7874" + } + ], + "licenses": [ + { + "license": { + "name": "BSD", + "text": { + "contentType": "text/txt", + "content": "TERMS OF USE - EASING EQUATIONS\n\nOpen source under the BSD License.\n\nCopyright © 2001 Robert Penner\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this list of\nconditions and the following disclaimer.\nRedistributions in binary form must reproduce the above copyright notice, this list\nof conditions and the following disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\nNeither the name of the author nor the names of contributors may be used to endorse\nor promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED\nAND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\nOF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/tween-functions@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/chenglou/tween-functions" + }, + { + "type": "issue-tracker", + "url": "https://github.com/chenglou/tween-functions/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/chenglou/tween-functions.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-calendar@1.1.4", + "name": "rmc-calendar", + "version": "1.1.4", + "description": "React Mobile Calendar Component(web and react-native)", + "hashes": [ + { + "alg": "SHA-512", + "content": "c7141968f1439e91ede0814ef26ba462b5d2802d56f0b70d569f84a17e22c9e3891629ae9e038a07f88fe7f732facb7cc97abc954824f535ec1cdb4ce97a3a64" + } + ], + "purl": "pkg:npm/rmc-calendar@1.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-calendar" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-calendar/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-calendar.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-date-picker@6.0.10", + "name": "rmc-date-picker", + "version": "6.0.10", + "description": "React Mobile DatePicker Component for web and react-native", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffdf88ea59b7103125e8cefceb657afbecc5bb1c2c334504abcc121dba2d6083cf9b207feb9831d5cbe26e58213afd907c1d0ef7e536c37a8426544ffd6b0cac" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-date-picker@6.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-date-picker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-date-picker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-date-picker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-picker@5.0.10", + "name": "rmc-picker", + "version": "5.0.10", + "description": "React Mobile Picker Component(web and react-native)", + "hashes": [ + { + "alg": "SHA-512", + "content": "299ef4f968dc6991e71b91b20b15823c5580675dace8dab2adb5bbdcb7aa1f4584a9a4cc32cd2c3ab9367f8990019fc2193d1770537a5592f0ecece8c5f9fb2c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-picker@5.0.10", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-picker" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-picker/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-picker.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-dialog@1.1.1", + "name": "rmc-dialog", + "version": "1.1.1", + "description": "mobile dialog ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbc689aad3d35fabf5dd9fda535581cb5005217904ef83f165775eec9bed108cbd8500d38c7f1fa8e8bcdb6069cc06d70b2344ee317d885a26cb71f60a5b0324" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present yiminghe\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rmc-dialog@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/m-dialog" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/m-dialog/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/m-dialog.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-cascader@5.0.3", + "name": "rmc-cascader", + "version": "5.0.3", + "description": "m-cascader ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f10e1323595883746e12319aa85ed02d846c200f2627cb1c59104d7b2030d8b22087a56b4e86820bf27b08fbf859db5d944ff5c5d8ba6a0ac3a5328262624fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-cascader@5.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-cascader" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-cascader/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-cascader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-drawer@0.4.11", + "name": "rmc-drawer", + "version": "0.4.11", + "description": "drawer ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "61f07d5c427c88cd0c32e2d600ae37d77b8ec5233c3409630bc0aaba7d4a6a65eeb609584ee46f894b932cd48ecd5f071cfa7990da6c55dbaf3c218b597bd387" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-drawer@0.4.11", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-drawer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-drawer/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-drawer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-input-number@1.0.5", + "author": "tsjxyz@gmail.com", + "name": "rmc-input-number", + "version": "1.0.5", + "description": "input-number ui component for react(web & react-native)", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6b3e412da0e55d7bbec69c49c46817968c1a1b30e3e01aa5396ddd20c5fa7592dd6950def8d26329540707eeec6926355f9b0fa4b865ad8b3e12ec2b9e6a04a" + } + ], + "purl": "pkg:npm/rmc-input-number@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-input-number" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/m-input-number/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/m-input-number.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-list-view@0.11.5", + "author": "hualei5280@gmail.com", + "name": "rmc-list-view", + "version": "0.11.5", + "description": "m-list-view ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "78c382e77f78b4b35ac1c74412117b6e8329420a632460dd2f9952f8b6e501674179ced0e0462451d9eb28d6edf8ef64e5118cea748b00664ae6807814df392e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-list-view@0.11.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-list-view" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-list-view/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-list-view.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/zscroller@0.4.8", + "name": "zscroller", + "version": "0.4.8", + "description": "dom scroller based on zynga scroller", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b936234b2b1dbe42186f662db25758e3557639d28b64b7192c797da11b637f7a2c6884e524d0063c6696c0c4da92f68252fcdc48b42b28c2ea72dadb17c4033" + } + ], + "purl": "pkg:npm/zscroller@0.4.8", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yiminghe/zscroller" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yiminghe/zscroller/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yiminghe/zscroller.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-notification@1.0.0", + "name": "rmc-notification", + "version": "1.0.0", + "description": "notification ui component for react", + "hashes": [ + { + "alg": "SHA-512", + "content": "f6c3f18e5b45bed44bb76bf7d761eeece5f0939de91e40588083510e69c9dc0e4d175aad25e08271d3745ebd1fcc9eac6d0bed1a3bbcdb6b561ddcd803dbbb57" + } + ], + "purl": "pkg:npm/rmc-notification@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/notification" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/m-notification/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/m-notification.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-nuka-carousel@3.0.1", + "author": "Ken Wheeler", + "name": "rmc-nuka-carousel", + "version": "3.0.1", + "description": "Pure React Carousel", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3610f4c444c51466a71448a16e7a38e29fbc6c32586b2ebb52d00fe28135e91491aade47a60ca7118bbab7a52603b99047601979895e14aac2cb923745b6b60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/rmc-nuka-carousel@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/kenwheeler/nuka-carousel" + }, + { + "type": "issue-tracker", + "url": "https://github.com/kenwheeler/nuka-carousel/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/kenwheeler/nuka-carousel.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-pull-to-refresh@1.0.13", + "name": "rmc-pull-to-refresh", + "version": "1.0.13", + "description": "React Mobile Pull To Refresh Component", + "hashes": [ + { + "alg": "SHA-512", + "content": "8982ec511891ec6fec2a6440ea9da4aba65789c9fb1f27a8e95405963b2c57578c5be7f30e08a185acf492fe66cdad1ff3cbe984626f8ce8a14fd13afb119be9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-pull-to-refresh@1.0.13", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-pull-to-refresh" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-tabs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-tabs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-steps@1.0.1", + "name": "rmc-steps", + "version": "1.0.1", + "description": "steps ui component for react mobile", + "hashes": [ + { + "alg": "SHA-512", + "content": "f228edc29e03d42613b48db27ab5c962a0aff8641b88173d4f5da7ac59e077fbccd32fb9f029f39c6a614c0b9e17a2167fba9bc41c1c8d3adc16083b6cfd9818" + } + ], + "purl": "pkg:npm/rmc-steps@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/m-steps" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/m-steps/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/m-steps.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-tabs@1.2.29", + "name": "rmc-tabs", + "version": "1.2.29", + "description": "React Mobile Tabs Component(web & react-native)", + "hashes": [ + { + "alg": "SHA-512", + "content": "c22252f564898bd247f4640ef85aa7717fb36873f7d6a1dafd2f270d6f545d4c74a9b097dbde10709127bdf07e5a6b1f530b3bad78eceac390a7910388e6e71e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/rmc-tabs@1.2.29", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-tabs" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-tabs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-tabs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-tooltip@1.0.1", + "name": "rmc-tooltip", + "version": "1.0.1", + "description": "React Tooltip", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d20c0adfd8194c56b1c4c66062a9bd939024491ec86f5c5250ffbb4cada2de965c1a24b362c2bc6d5a95b7dbd9374becd3b68546f14c454b54e304612c33346" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rmc-tooltip@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/tooltip/tree/m-tooltip" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/tooltip/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/tooltip.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-trigger@1.0.12", + "name": "rmc-trigger", + "version": "1.0.12", + "description": "base abstract trigger component for react mobile", + "hashes": [ + { + "alg": "SHA-512", + "content": "01c7109e25fb3d7ecf9bc84184712c9dfdc953a080eb55dcedf02dd966cefa85eb19a23f8ea37c0b708e8613971b9e12e624ce8cb4b6ea3f39f33b21c00c51f4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\nCopyright (c) 2015-present Alipay.com, https://www.alipay.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS \nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY \nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, \nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE \nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/rmc-trigger@1.0.12", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/react-component/m-trigger" + }, + { + "type": "issue-tracker", + "url": "https://github.com/react-component/m-trigger/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/react-component/m-trigger.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/rmc-align@1.0.0", + "name": "rmc-align", + "version": "1.0.0", + "description": "react align ui component for mobile", + "hashes": [ + { + "alg": "SHA-512", + "content": "de011ae7ffa1aaaa04568790db92a845cf033ac5c8752695a5a06ad73405695f78d4b477c6f6484539714c34ff21a818c2818cd4a65e6bf8ddedc34c60fdf846" + } + ], + "purl": "pkg:npm/rmc-align@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/react-component/m-align" + }, + { + "type": "issue-tracker", + "url": "http://github.com/react-component/m-align/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/react-component/m-align.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/aurelia-framework@1.4.1", + "author": "Rob Eisenberg", + "name": "aurelia-framework", + "version": "1.4.1", + "description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a059c9caaa880e4d8a93b892cb660d9b630d40c6d354488fa5af6ad2819f0cb725a9482ff8bd39ae79045bdbc4a554d4315f2098e4f122b0e274d202ac34fb1c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2010 - 2018 Blue Spire Inc.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-framework@1.4.1", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/framework/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/framework.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-binding@2.5.4", + "author": "Rob Eisenberg", + "name": "aurelia-binding", + "version": "2.5.4", + "description": "A modern databinding library for JavaScript and HTML.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b58858085bd09def9c84ede9f0a9ed0968f4afca025e208e190d3215bb611c30698e34c0e10941c29190f27946a060ca8fb9f83e8a1b7888cdde51032a0294cb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-binding@2.5.4", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/binding/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/binding.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-logging@1.5.2", + "author": "Rob Eisenberg", + "name": "aurelia-logging", + "version": "1.5.2", + "description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.", + "hashes": [ + { + "alg": "SHA-512", + "content": "47451da46601352a2c059f5679f9a822982bdfab3317042b464da96db96123e571f75d5d504116f394176fa05129500fd72933e7616eabc94267147a52ea505c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-logging@1.5.2", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/logging/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/logging.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-metadata@1.0.7", + "author": "Rob Eisenberg", + "name": "aurelia-metadata", + "version": "1.0.7", + "description": "Utilities for reading and writing the metadata of JavaScript functions.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e90dd557956f0918ef272202112c0235258b91a62697d3c0c47a394a3cd5bfe1cd9af16d4112916b3733c0409b4c3e885a213e3bdd3e3e66a63f2e007366274c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-metadata@1.0.7", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/metadata/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aurelia/metadata.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-pal@1.8.2", + "author": "Rob Eisenberg", + "name": "aurelia-pal", + "version": "1.8.2", + "description": "Aurelia's platform abstraction layer (PAL).", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9eae8cd42b969a0fcf0fbd386cfcbf3b90bb2ac6a3da054e7d3c6102af7eaff727b386f7b4047aa92a06ed27c85a1c94a21fcd0af65b09b577de7de752ff7b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-pal@1.8.2", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/pal/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/pal.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-task-queue@1.3.3", + "author": "Rob Eisenberg", + "name": "aurelia-task-queue", + "version": "1.3.3", + "description": "A simple task queue for the browser that enables the queuing of both standard tasks and micro tasks.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9adc9d983be7198299f532ac4f95a9d20d71b8481d015e8b716035b588be5fe80b2812f277072719258c3f37d84c40a9969e239e681afbc0643e283899172c1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-task-queue@1.3.3", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/task-queue/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/task-queue.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-dependency-injection@1.5.2", + "author": "Rob Eisenberg", + "name": "aurelia-dependency-injection", + "version": "1.5.2", + "description": "A lightweight, extensible dependency injection container for JavaScript.", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e72a0a57ccab86d80fd83c67a0e4e3b0f33be46ef0c1311240f500c28d9971ca6b0f23df1dc2080d4901c8f142be853201a8e9a38d1c6a74ca1e44ea361a96f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-dependency-injection@1.5.2", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/dependency-injection/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/aurelia/dependency-injection.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-loader@1.0.2", + "author": "Rob Eisenberg", + "name": "aurelia-loader", + "version": "1.0.2", + "description": "An abstract module which specifies an interface for loading modules and view templates.", + "hashes": [ + { + "alg": "SHA-512", + "content": "de8c047b966c93c708246fb373137a833a94af6cf673e14a86dacbe3d7b58fcbc4e1c7104235e0fadbca1677c155fde9c266ba038ef85ac74af29a18868559c8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2010 - 2018 Blue Spire Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-loader@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/loader/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/loader.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-path@1.1.7", + "author": "Rob Eisenberg", + "name": "aurelia-path", + "version": "1.1.7", + "description": "Utilities for path manipulation.", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fafd3cfc8c4f1bdbe63c3ede8ffdfc45eb17c919e7fe4c0e981258f3a35904cf2cdbc48bf07ea73ba4aea2fd7198dcba3096e98faab87191f3233f12e914870" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2010 - 2018 Blue Spire Inc.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-path@1.1.7", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/path/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/path.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/aurelia-templating@1.11.1", + "author": "Rob Eisenberg", + "name": "aurelia-templating", + "version": "1.11.1", + "description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed9adbff2be721804896a19a2d722206c996328170a37492a31ca8b9ca967bf33cd18a51e0b25a4c42a8671859648eb1f6953eb6514e064c1dfec03526a3d1f3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\r\n\r\nCopyright (c) 2010 - 2018 Blue Spire Inc.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n" + } + } + } + ], + "purl": "pkg:npm/aurelia-templating@1.11.1", + "externalReferences": [ + { + "type": "website", + "url": "http://aurelia.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/aurelia/templating/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/aurelia/templating.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ava@0.25.0", + "name": "ava", + "version": "0.25.0", + "description": "Futuristic test runner 🚀", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2518d2427fac4bf12bec29510ac44138eac7bb240508019a0a1f0f62b5342ec1cb32761a4032406ce6038e8968b0b7424a348b9759cdbfaf8afc65d70dac113" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ava@0.25.0", + "externalReferences": [ + { + "type": "website", + "url": "https://ava.li" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/ava/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/ava.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ava/babel-preset-stage-4@1.1.0", + "author": "Mark Wubben", + "group": "@ava", + "name": "babel-preset-stage-4", + "version": "1.1.0", + "description": "Efficiently applies the minimum of transforms to run stage 4 code on Node.js 4, 6 and 8", + "hashes": [ + { + "alg": "SHA-512", + "content": "a16a939c81975b793bd94162757cd6d0e3653bb8673bdc74d92fd045e27b34119e8811fd7141d8f7e11f57a0bc3d70ba6091fef96ae5884ab4df031224635916" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Mark Wubben (novemberborn.net)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ava/babel-preset-stage-4@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/babel-preset-stage-4#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/babel-preset-stage-4/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/babel-preset-stage-4.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-syntax-trailing-function-commas@6.22.0", + "name": "babel-plugin-syntax-trailing-function-commas", + "version": "6.22.0", + "description": "Compile trailing function commas to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b1f421f743fdc629b86cd3b06ccf0e5f3d3954fb282b3867c0844b7b5b62480b0b9fa42e12b8ed261b4fb837290f05260f30986abd5943054d7ba81d43fa131" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-syntax-trailing-function-commas@6.22.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-trailing-function-commas" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-async-to-generator@6.24.1", + "name": "babel-plugin-transform-async-to-generator", + "version": "6.24.1", + "description": "Turn async functions into ES2015 generators", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec181826e8cd0a0d138b7c7473f0cbded4adbe7292ea4b4860e9a8f708229effdd7d93ab6d267ea86e084511cc04ecd9e40c1bd6c913880b105e0ffe21691963" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-async-to-generator@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-remap-async-to-generator@6.24.1", + "name": "babel-helper-remap-async-to-generator", + "version": "6.24.1", + "description": "Helper function to remap async functions to generators", + "hashes": [ + { + "alg": "SHA-512", + "content": "458a9a3c3d26432408151bbb1e8e70136caf03fe63c6a0888ff2efe015cdab6de61d8bbfbf18a43b2d89b9e2e20714249f06a9c2b25e3427acbd8d1971f9e51e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-remap-async-to-generator@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-syntax-async-functions@6.13.0", + "name": "babel-plugin-syntax-async-functions", + "version": "6.13.0", + "description": "Allow parsing of async functions", + "hashes": [ + { + "alg": "SHA-512", + "content": "e19a78ba7987830df40357962391290028e2daa328722b1d5e101fb5f857a1257d8f44ef8fa9d1144ded3a6458f75d84d053119bf2f9c5613b306553d85a0b9f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-syntax-async-functions@6.13.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-functions" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-transform-exponentiation-operator@6.24.1", + "name": "babel-plugin-transform-exponentiation-operator", + "version": "6.24.1", + "description": "Compile exponentiation operator to ES5", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f35c399b324925bcd869aebdb4fff452b4a55c4fc0aef9242d5f5f1e3072e18c77f6c85cf0b50d12d9fd2343ef3dae892835d9b0a12a98cc086af3a17194b49" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-transform-exponentiation-operator@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-builder-binary-assignment-operator-visitor@6.24.1", + "name": "babel-helper-builder-binary-assignment-operator-visitor", + "version": "6.24.1", + "description": "Helper function to build binary assignment operator visitors", + "hashes": [ + { + "alg": "SHA-512", + "content": "802b5f60e4521b57d4317e242ab6b29aaeb4ec55a031683e8f8d8814f735f2415012c9ad6a26cfe14aeab17b7c16510995edb91d4778b6ca0347b1f6c0385ef5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-builder-binary-assignment-operator-visitor@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-helper-explode-assignable-expression@6.24.1", + "name": "babel-helper-explode-assignable-expression", + "version": "6.24.1", + "description": "Helper function to explode an assignable expression", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9ee5cb1b85bbeae9c72bcbd1bbb645dbccdb5c0e21f8af9d6bacf51bc30a13cd9d7c02ac56611653e803a6c6ba712a74015b4a5894123ff2f87bdd9fffefc9d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-helper-explode-assignable-expression@6.24.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-syntax-exponentiation-operator@6.13.0", + "name": "babel-plugin-syntax-exponentiation-operator", + "version": "6.13.0", + "description": "Allow parsing of the exponentiation operator", + "hashes": [ + { + "alg": "SHA-512", + "content": "67f7e553e4fdb5ad1a2042a5d6d18498dfe9662235b979828861517a029a7107c4273a7b88db0a968666c89950afeef914226d8857c620ad374a20af0adf5c3d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-syntax-exponentiation-operator@6.13.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-exponentation-operator" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/package-hash@1.2.0", + "author": "Mark Wubben", + "name": "package-hash", + "version": "1.2.0", + "description": "Generates a hash for an installed npm package, useful for salting caches", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c7e3fd5cc4b580db0aefdae0f077c1b8d52d065ce9c51bdbd1ab1e01ee2016793d7d98403d4771145d9b59fc8f3b6e8187f43365f1f31457cd9dbec47772478" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2016, Mark Wubben\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/package-hash@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/package-hash#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/package-hash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/package-hash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ava/babel-preset-transform-test-files@3.0.0", + "author": "Mark Wubben", + "group": "@ava", + "name": "babel-preset-transform-test-files", + "version": "3.0.0", + "description": "Babel preset for use with AVA test files", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a33be1d4201cc7b958cd01bb16b45cc33db96f3006986bb258532f6a65e0fa542265c1f1f701d240adbde601ebd9fa151c80d4cd8a6b706358c60720179796a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Mark Wubben (novemberborn.net)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ava/babel-preset-transform-test-files@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/babel-preset-transform-test-files#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/babel-preset-transform-test-files/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/babel-preset-transform-test-files.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ava/babel-plugin-throws-helper@2.0.0", + "author": "James Talmage", + "group": "@ava", + "name": "babel-plugin-throws-helper", + "version": "2.0.0", + "description": "Babel plugin for protecting against improper use of `t.throws()` in AVA", + "hashes": [ + { + "alg": "SHA-512", + "content": "a57f008c224f96d84d50672f0f883fb208c869980e50dd022017f920ea0b0396113b1ba81ce5c6bc388978d6691147a1eb65967a7e977cd4c787c1e6a7f3ae97" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ava/babel-plugin-throws-helper@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/babel-plugin-throws-helper#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/babel-plugin-throws-helper/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/babel-plugin-throws-helper.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-espower@2.4.0", + "author": "Takuto Wada", + "name": "babel-plugin-espower", + "version": "2.4.0", + "description": "Babel plugin for power-assert", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffe491a72ee92a04c8dbca041df9f5c24b8ce50140751abc58db0e3a2875755add57a03f59b35b459ca5d1e5f97b20e0b5bd25384dbb3de0c5b825f68fc3b156" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2017 Takuto Wada, https://github.com/power-assert-js/babel-plugin-espower\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/babel-plugin-espower@2.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/power-assert-js/babel-plugin-espower" + }, + { + "type": "issue-tracker", + "url": "https://github.com/power-assert-js/babel-plugin-espower/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/power-assert-js/babel-plugin-espower.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/call-matcher@1.1.0", + "author": "Takuto Wada", + "name": "call-matcher", + "version": "1.1.0", + "description": "ECMAScript CallExpression matcher made from function/method signature", + "hashes": [ + { + "alg": "SHA-512", + "content": "22840b78dc307fd29335bb5203b68405bd727c36dd9f3c2309eb63902f22a39a0678e98ad8204d760d31afeb5a75160a3b4a7bb90c99cefa27d245e565bbc6af" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/call-matcher@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/twada/call-matcher" + }, + { + "type": "issue-tracker", + "url": "https://github.com/twada/call-matcher/issues" + }, + { + "type": "vcs", + "url": "git://github.com/twada/call-matcher.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/espurify@1.8.1", + "author": "Takuto Wada", + "name": "espurify", + "version": "1.8.1", + "description": "Clone new AST without extra properties", + "hashes": [ + { + "alg": "SHA-512", + "content": "643928e9e63fa3e0ff807096c874d4f3998a0e061c4b81498fb4be603e962089e6ec643a0273a399c2f8f9bb8557f24eced54b10b8bfecc9ae194e4d1ed6b432" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/espurify@1.8.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/estools/espurify" + }, + { + "type": "issue-tracker", + "url": "https://github.com/estools/espurify/issues" + }, + { + "type": "vcs", + "url": "git://github.com/estools/espurify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/espower-location-detector@1.0.0", + "author": "Takuto Wada", + "name": "espower-location-detector", + "version": "1.0.0", + "description": "AST source location detection helper for power-assert", + "hashes": [ + { + "alg": "SHA-512", + "content": "63fdc7eb2b58c2a0b761c39cd20394db62e9dde2391801463b29937731727da8a094a82db30d9d78f3a05d8df2ad5f9070b3cc3e2558c0153d44a683a21d9b6d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015-2016 Takuto Wada, https://github.com/twada/espower-location-detector\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/espower-location-detector@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/twada/espower-location-detector" + }, + { + "type": "issue-tracker", + "url": "https://github.com/twada/espower-location-detector/issues" + }, + { + "type": "vcs", + "url": "git://github.com/twada/espower-location-detector.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-url@1.2.4", + "name": "is-url", + "version": "1.2.4", + "description": "Check whether a string is a URL.", + "hashes": [ + { + "alg": "SHA-512", + "content": "213bc68a6f058518987b8210e6e1d2923ee955a3c3ac24e435ddf2ab7715ee26407097474d430f3041dca923b2f7167da857a7402be2fb6c231fd6b59d7a87c3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/is-url@1.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/segmentio/is-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/segmentio/is-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/segmentio/is-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ava/write-file-atomic@2.2.0", + "author": "Rebecca Turner", + "group": "@ava", + "name": "write-file-atomic", + "version": "2.2.0", + "description": "Write files in an atomic fashion w/configurable ownership", + "hashes": [ + { + "alg": "SHA-512", + "content": "053341de719b11f253fbaf70baa5c5aff6d01fb56bee2871db118e30da8f8031a1c2ca68661896ba60c364d8c1cbb012726a92e4210b20e1ad3d55c44b2ae70c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/%40ava/write-file-atomic@2.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/write-file-atomic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/write-file-atomic/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/write-file-atomic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40concordance/react@1.0.0", + "author": "Mark Wubben", + "group": "@concordance", + "name": "react", + "version": "1.0.0", + "description": "Compare, format, diff and serialize React trees with Concordance", + "hashes": [ + { + "alg": "SHA-512", + "content": "86daec45a417f088b196c7a4f33414eed13cc1cb13409e548599123c403cb25083022b0aa42ff656053fb9c3e7df6339fcb8c619745a5042af130d568aebb8cd" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2017, Mark Wubben (novemberborn.net)\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40concordance/react@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/concordancejs/react#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/concordancejs/react/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/concordancejs/react.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/%40ladjs/time-require@0.1.4", + "author": "Jaguard OSS", + "group": "@ladjs", + "name": "time-require", + "version": "0.1.4", + "description": "Displays the execution time for Node.js modules loading; inspired by @sindresorhus 'time-grunt'", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1e21b26a4cc7d0e2bd585fce6ee780ca7e32d9b368f09f55d9ead20e3ffa4580cc2120de4102d682a7fd709fd0f3c8bb0347db56d11d8d21e3dc549e398af41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2014 Jaguard\nMIT License - http://opensource.org/licenses/mit-license.php\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/%40ladjs/time-require@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ladjs/time-require" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ladjs/time-require/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ladjs/time-require.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/date-time@0.1.1", + "author": "Sindre Sorhus", + "name": "date-time", + "version": "0.1.1", + "description": "Pretty UTC datetime: 2014-01-09 06:46:01 UTC", + "hashes": [ + { + "alg": "SHA-512", + "content": "a78a6c76481d340eb1d3ad3448a6df5a23a898d6f7dc00c13111dfe3d18c85856026c3de7d994c48b5d7556594a5ba92c41dc32f9fdcc4a6ba6bc8b75cf2b95e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/date-time@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/date-time#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/date-time/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/date-time.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pretty-ms@0.2.2", + "author": "Sindre Sorhus", + "name": "pretty-ms", + "version": "0.2.2", + "description": "Convert milliseconds to a human readable string: 1337000000 ➔ 15d 11h 23m 20s", + "hashes": [ + { + "alg": "SHA-512", + "content": "672a5ec5b7d55064c5c5bd2ffa6d5b532cbdd831dee52c98967c98d26b329ace73777470caf360cb1659b175e0a32ce5c63c79322aad5d476151fbd06ded00d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/pretty-ms@0.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pretty-ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pretty-ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pretty-ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-ms@0.1.2", + "author": "Sindre Sorhus", + "name": "parse-ms", + "version": "0.1.2", + "description": "Parse milliseconds into an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "570320944f78d7689f30771114454978f129ade421f74c2322239d3f4510406295e25f90a6b74a23ea799e85d39261a3ce704c6f8d2cf95ca671c9404c056f60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/parse-ms@0.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/parse-ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/parse-ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/parse-ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/auto-bind@1.2.1", + "author": "Sindre Sorhus", + "name": "auto-bind", + "version": "1.2.1", + "description": "Automatically bind methods to their class instance", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd6f728f5c8a9812f0a5ec7002e8de0fd607c18991b9614657c1d613bb2641a6fbf7b55e1dae3f727136345783840f84fb97bf386048f3beb71212e37d9fcc5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/auto-bind@1.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/auto-bind#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/auto-bind/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/auto-bind.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ava-init@0.2.1", + "author": "Sindre Sorhus", + "name": "ava-init", + "version": "0.2.1", + "description": "Add AVA to your project", + "hashes": [ + { + "alg": "SHA-512", + "content": "957c0ae4b33eda0d5eb8346a5b599c497fedab3635414ec48caa6a6b214f3ed35199b49867c4733cee6daa5b934e88a39ad8e9d8cfa936955d6dc1ecb02e2096" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ava-init@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/ava-init#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/ava-init/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/ava-init.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/arr-exclude@1.0.0", + "author": "Sindre Sorhus", + "name": "arr-exclude", + "version": "1.0.0", + "description": "Exclude certain items from an array", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e25db30c90f40d7e81dc562ea3794e887a3180165727d216205557bbb428aa2ff66dc5b36484348c6ab5108e0fcf01ef4d40dbd177a60254dbadce8dc5c5dba" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/arr-exclude@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/arr-exclude#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/arr-exclude/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/arr-exclude.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/has-yarn@1.0.0", + "author": "Sindre Sorhus", + "name": "has-yarn", + "version": "1.0.0", + "description": "Check if a project is using Yarn", + "hashes": [ + { + "alg": "SHA-512", + "content": "5002386f8f1aaab75ecfcf02c0c7c2f6cfa0709db93b5aa0d3f852e5e28eb08179b4ec361187201acaf2605e93108e46f12782633141b79674e03fc10c005849" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/has-yarn@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/has-yarn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/has-yarn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/has-yarn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-syntax-object-rest-spread@6.13.0", + "name": "babel-plugin-syntax-object-rest-spread", + "version": "6.13.0", + "description": "Allow parsing of object rest/spread", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b802af866808fcde9450d041604efc3960ee93dd0cf6286acd470223f664a834756f75963828edae03a1cdb4d5c2c3df7789266772463568b5bc9ce8bc8b8fb" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel-plugin-syntax-object-rest-spread@6.13.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/caching-transform@1.0.1", + "author": "James Talmage", + "name": "caching-transform", + "version": "1.0.1", + "description": "Wraps a transform and provides caching", + "hashes": [ + { + "alg": "SHA-512", + "content": "b537de98698559eeca67728de95b1281065b77d060a3b038d30969e0f4ec249bc5bb86009c40b96277dd88aaba561da2f5724b9c0f67f0e5c3e3aa2b5699cf33" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/caching-transform@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/caching-transform#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/caching-transform/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/caching-transform.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@1.3.4", + "author": "Rebecca Turner", + "name": "write-file-atomic", + "version": "1.3.4", + "description": "Write files in an atomic fashion w/configurable ownership", + "hashes": [ + { + "alg": "SHA-512", + "content": "19a1131f9c30b17f86727ce13e029c2a327a3360aadff899a755b263f5f5092aab5be8d534cf58ec3f040b6b0ce191bf57cc199529e226708a58f981600b9c45" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2015, Rebecca Turner\n\nPermission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n" + } + } + } + ], + "purl": "pkg:npm/write-file-atomic@1.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/iarna/write-file-atomic" + }, + { + "type": "issue-tracker", + "url": "https://github.com/iarna/write-file-atomic/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/iarna/write-file-atomic.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-stack@1.3.0", + "author": "Sindre Sorhus", + "name": "clean-stack", + "version": "1.3.0", + "description": "Clean up error stack traces", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d8bfa5cfc68c8e0e2dfa0e9f7beab881b52636ed5985a3e30aa8453d402096c93add10f0e883e45603bc505878ba55ba7ad63e5ce1c773cd7d4d89d9f0b545a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clean-stack@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/clean-stack#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/clean-stack/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/clean-stack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/clean-yaml-object@0.1.0", + "author": "James Talmage", + "name": "clean-yaml-object", + "version": "0.1.0", + "description": "Clean up an object prior to serialization", + "hashes": [ + { + "alg": "SHA-512", + "content": "df238d9a537d092024ccdc2744288943b436c4ae665ae11f2f73ee4d970053384e6db5ec7ec9cca6d2735f0cfdde7739ce7f55f53c0254c995ef0e31b26e3777" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Isaac Z. Schlueter , James Talmage (github.com/jamestalmage), and Contributors\n\nExtracted from code in node-tap http://www.node-tap.org/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/clean-yaml-object@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tapjs/clean-yaml-object#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tapjs/clean-yaml-object/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tapjs/clean-yaml-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-spinners@1.3.1", + "author": "Sindre Sorhus", + "name": "cli-spinners", + "version": "1.3.1", + "description": "Spinners for use in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "d502f8e78e26a04b03547f53fe5e827a6a2fff7ee2bf546da0a7fb349d3803ad3ee0c4445cd7f1fd0bdabdb1fa42819db03e0de0cc32e3d726688351fe8da676" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-spinners@1.3.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/cli-spinners#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/cli-spinners/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/cli-spinners.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-truncate@1.1.0", + "author": "Sindre Sorhus", + "name": "cli-truncate", + "version": "1.1.0", + "description": "Truncate a string to a specific width in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c0b59a34bbcda009f68019f48dc5475323d98dcb36bb0fcc3809509c68eb32eec8300f3bf1e9e92be9cb9626a637506ce09d0d7ee3080436ea79788860c4460" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-truncate@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/cli-truncate#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/cli-truncate/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/cli-truncate.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/co-with-promise@4.6.0", + "name": "co-with-promise", + "version": "4.6.0", + "description": "generator async control flow goodness", + "hashes": [ + { + "alg": "SHA-512", + "content": "59504d98d243a9f88b702b76e67e2bb99c4449975c08e4faf3a699f83de9f8f9c9a9d472b22faa55f1f4e7574d3a623f85025453014c0e3dda0803062e8f2d40" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/co-with-promise@4.6.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tj/co#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tj/co/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tj/co.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pinkie-promise@1.0.0", + "author": "Vsevolod Strukchinsky", + "name": "pinkie-promise", + "version": "1.0.0", + "description": "ES6 Promise ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "d069e2e83e1470b4dbbfd739ec37f10c676be355df8148ea599bb8f767f47081abd7acc3534e8158ffd1004bceba8ec243408d8c768b94ce7d6092459b735697" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pinkie-promise@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/pinkie-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/pinkie-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/pinkie-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pinkie@1.0.0", + "author": "Vsevolod Strukchinsky", + "name": "pinkie", + "version": "1.0.0", + "description": "Itty bitty little wittle twinkie pinkie ES6 Promise implementation", + "hashes": [ + { + "alg": "SHA-512", + "content": "32752e1327007a6b5269e1528d7296fdaae857b6a405b63e4aff91932a858e001eef717e311d130562814439267d6abf1e216675abdf6751bb87848f6576824a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pinkie@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/pinkie#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/pinkie/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/pinkie.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/code-excerpt@2.1.1", + "author": "vdemedes", + "name": "code-excerpt", + "version": "2.1.1", + "description": "Extract code excerpts", + "hashes": [ + { + "alg": "SHA-512", + "content": "b492e11f7129166ff5c7b85e216d217a65c94d45391169765741085f9e7c8e9d3932dd54e8356bc82824a77977edcc6ab3e0cd6cd8311b8dd2930257a50d7827" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) vdemedes (github.com/vdemedes)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/code-excerpt@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vadimdemedes/code-excerpt#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vadimdemedes/code-excerpt/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vadimdemedes/code-excerpt.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/convert-to-spaces@1.0.2", + "author": "Vadim Demedes", + "name": "convert-to-spaces", + "version": "1.0.2", + "description": "Convert tabs to spaces in a string", + "hashes": [ + { + "alg": "SHA-512", + "content": "723d3d101b8e6e9f6064d402cdcee1072432aecea354613ea3d912266794a23f8688f889be2e4b62a107fc79a67b8f8c4cb1ccf848edabe1428698e3127b0f75" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vadim Demedes (https://vadimdemedes.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/convert-to-spaces@1.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vadimdemedes/convert-to-spaces#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vadimdemedes/convert-to-spaces/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vadimdemedes/convert-to-spaces.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/common-path-prefix@1.0.0", + "author": "Mark Wubben", + "name": "common-path-prefix", + "version": "1.0.0", + "description": "Computes the longest prefix string that is common to each path, excluding the base component", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ad58c099c3d9d33be467c4c09c6a99d042a799a5a0ef083f7ed11ae5f19a6114a59c24fc941a2125eb85a802403e589231c0a633c6576160753e116d5f43699" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2016, Mark Wubben\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/common-path-prefix@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/common-path-prefix#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/common-path-prefix/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/common-path-prefix.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/concordance@3.0.0", + "author": "Mark Wubben", + "name": "concordance", + "version": "3.0.0", + "description": "Compare, format, diff and serialize any JavaScript value", + "hashes": [ + { + "alg": "SHA-512", + "content": "099073277fe5e50263959336d1663bfb918fe69313c3ed5411b4e1729330f3fae88ec8b9b010a20fc65b04bb43fa3629446024c2e2aeaa4d74f1cd79e15f5ec9" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2017, Mark Wubben (novemberborn.net)\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/concordance@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/concordancejs/concordance#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/concordancejs/concordance/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/concordancejs/concordance.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/date-time@2.1.0", + "author": "Sindre Sorhus", + "name": "date-time", + "version": "2.1.0", + "description": "Pretty datetime: `2014-01-09 06:46:01`", + "hashes": [ + { + "alg": "SHA-512", + "content": "a78a6c76481d340eb1d3ad3448a6df5a23a898d6f7dc00c13111dfe3d18c85856026c3de7d994c48b5d7556594a5ba92c41dc32f9fdcc4a6ba6bc8b75cf2b95e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/date-time@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/date-time#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/date-time/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/date-time.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/time-zone@1.0.0", + "author": "Sindre Sorhus", + "name": "time-zone", + "version": "1.0.0", + "description": "Pretty time zone: `+2` or `-9:30`", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c8b0376d2a8ebe5eb3ed8939b5b2c98c9e0375b008722a74ceda4ba7416a8d3d6215bc29b5e569b0e125889f04d5809e6efd3af4e3ef048bd4cd730e31e0e34" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/time-zone@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/time-zone#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/time-zone/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/time-zone.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-diff@1.2.0", + "author": "Jason Chen", + "name": "fast-diff", + "version": "1.2.0", + "description": "Fast Javascript text diff", + "hashes": [ + { + "alg": "SHA-512", + "content": "c49ba84f9f8bf7d5e567cb7079d6917fa031d93810571be064e6283caa99b9f98989bd2d2f6b5e80f04e65bd6954d808865a83940d1e3b4737c01bd0726cf1e3" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0" + } + } + ], + "purl": "pkg:npm/fast-diff@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jhchen/fast-diff#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jhchen/fast-diff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jhchen/fast-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/function-name-support@0.2.0", + "author": "Mark Wubben", + "name": "function-name-support", + "version": "0.2.0", + "description": "Determine the level of support for function name inference.", + "hashes": [ + { + "alg": "SHA-512", + "content": "8849d47112df807980239f1e4520d697dc71a2be7fa554887b3c4fc15e8987a9314e7dae44332087605f36c7332dd604982641e0ddd4667abbed3a96d237154f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Mark Wubben (novemberborn.net)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n---\n\nTests from .\n\nCopyright (c) 2010-2013 Juriy Zaytsev\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/function-name-support@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/function-name-inference#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/function-name-inference/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/function-name-inference.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.merge@4.6.2", + "author": "John-David Dalton", + "name": "lodash.merge", + "version": "4.6.2", + "description": "The Lodash method `_.merge` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright OpenJS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.merge@4.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/well-known-symbols@1.0.0", + "author": "Mark Wubben", + "name": "well-known-symbols", + "version": "1.0.0", + "description": "Check whether a symbol is well-known", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f858959e5aa17c187ef5613a67755967ba4a34379995cbed40f9577046419b188695e08ff7a7e1c3787b8816e3f2c85fc162f075452a471a2ff24ffff5b1ec2" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2017 Mark Wubben (novemberborn.net)\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/well-known-symbols@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/well-known-symbols#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/well-known-symbols/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/well-known-symbols.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/core-assert@0.2.1", + "author": "Sindre Sorhus", + "name": "core-assert", + "version": "0.2.1", + "description": "Node.js `assert` as a standalone module", + "hashes": [ + { + "alg": "SHA-512", + "content": "206f7ba928483fe9eb2425cc0a090d6601fb8d94389fc4693f23de5d7fbe4fa6af47f2a12e180b8872a8127e517352a37f27127c0f4331aea6fb80b87a0b8787" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/core-assert@0.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/core-assert#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/core-assert/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/core-assert.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buf-compare@1.0.1", + "author": "Sindre Sorhus", + "name": "buf-compare", + "version": "1.0.1", + "description": "Node.js `Buffer.compare()` ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "06fc78c47d34ab079ea46738df116f32ce412804974db1da1e6ebe9036082bda7fe221708c04d09263ca1d04a0259cca6c0ca6873b516d751fd4daa1ce5ef7fd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buf-compare@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/buf-compare#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/buf-compare/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/buf-compare.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-error@2.2.2", + "author": "Raynos", + "name": "is-error", + "version": "2.2.2", + "description": "Detect whether a value is an error", + "hashes": [ + { + "alg": "SHA-512", + "content": "20e42ab6cfda1d66e28ac6390ee3c943481c6ef68b1426bb7c16bdc682dfc4166f43e648fd987dc6823b1a4f86eb837415d2b801b89bcad1e1b76b568292562e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2015 is-error.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-error@2.2.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/mk-pmb/is-error-js" + }, + { + "type": "issue-tracker", + "url": "https://github.com/mk-pmb/is-error-js/issues" + }, + { + "type": "vcs", + "url": "git://github.com/mk-pmb/is-error-js.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/dot-prop@4.2.1", + "author": "Sindre Sorhus", + "name": "dot-prop", + "version": "4.2.1", + "description": "Get, set, or delete a property from a nested object using a dot path", + "hashes": [ + { + "alg": "SHA-512", + "content": "93810b59e114dee09cc2e6fbf9d5b276a401463023915f4bdf71e35511b95e8d90c9b23a8dafeffb85bbdd2462f2e6c2a89cf497d5ec4cfd4d6dec1fcaa69297" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/dot-prop@4.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/dot-prop#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/dot-prop/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/dot-prop.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/empower-core@0.6.2", + "author": "Takuto Wada", + "name": "empower-core", + "version": "0.6.2", + "description": "Power Assert feature enhancer for assert function/object", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3d409e113aa72324758dc3e4efa4a55e2d0575190b6814ee9aa8aa23e489478b4ab11b5636d79eca83afb9ba3b39071ce6f0080e88ebc10916cd92de913def5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/empower-core@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "http://github.com/twada/empower-core" + }, + { + "type": "issue-tracker", + "url": "http://github.com/twada/empower-core/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/twada/empower-core.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/call-signature@0.0.2", + "author": "James Talmage", + "name": "call-signature", + "version": "0.0.2", + "description": "Parse / Generate Method Signatures", + "hashes": [ + { + "alg": "SHA-512", + "content": "aaf62f90055ca1a7b4a1bb7c3ac667d151011de129bd82190f2d60198b590c91b47c76b07b0f8c8b47418e2785cfc17c7734362abd7dfa7b039be4f95c556cf9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/call-signature@0.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/call-signature#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/call-signature/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/call-signature.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/equal-length@1.0.1", + "author": "vdemedes", + "name": "equal-length", + "version": "1.0.1", + "description": "Extend lines to equal length", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cada6eccbd63edfefddd6a7d0108da7df69cad204e541ab523ec5d0a662acd5fcc73f1f0c550065f826f2e07916e42af6ed2c31e0e871805f121b1dd67c06a0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vadim Demedes (github.com/vadimdemedes)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/equal-length@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vadimdemedes/equal-length#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vadimdemedes/equal-length/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vadimdemedes/equal-length.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fn-name@2.0.1", + "author": "Sindre Sorhus", + "name": "fn-name", + "version": "2.0.1", + "description": "Get the name of a named function", + "hashes": [ + { + "alg": "SHA-512", + "content": "a080c1d6b5dfdc15279f4d1b8768d53346f2baaafde2b061ea0ed97dd29c6e6a75c1ed8642d3f329d968caf0571ecfaaddfbf107c12a5f979c15b6b74700928c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fn-name@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/fn-name#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/fn-name/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/fn-name.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/hullabaloo-config-manager@1.1.1", + "author": "Mark Wubben", + "name": "hullabaloo-config-manager", + "version": "1.1.1", + "description": "Manages complex Babel config chains, avoiding duplicated work and enabling effective caching", + "hashes": [ + { + "alg": "SHA-512", + "content": "ced2a79195744e6c67ba60831c780b18d8839e8b6ee041c2a7d60c9339d6ba8e2e4ed0b227e72ef9135cc5479760a4e5969bcb1569db7d6af2d3dcb3b33820f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2017 Mark Wubben (novemberborn.net)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/hullabaloo-config-manager@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/hullabaloo-config-manager#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/hullabaloo-config-manager/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/hullabaloo-config-manager.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.clonedeepwith@4.5.0", + "author": "John-David Dalton", + "name": "lodash.clonedeepwith", + "version": "4.5.0", + "description": "The lodash method `_.cloneDeepWith` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "4110514b185bb6c5f59dcd1b6b14a490ae569554d39bfb38f034ae91c19c599c08c88f19cfe941fa416210b257b737c7e008fa90c590d55596e14e6e50381930" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.clonedeepwith@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.isequal@4.5.0", + "author": "John-David Dalton", + "name": "lodash.isequal", + "version": "4.5.0", + "description": "The Lodash method `_.isEqual` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "a43a3796ef0985f8ea96ce8690c8296a1b05f640b26b2860ca48f22cc3454ca5aba5574042d6320789ae00c5a8cc10788a0fddb56026b0cc4b108f30bb3f8361" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright JS Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.isequal@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ignore-by-default@1.0.1", + "author": "Mark Wubben", + "name": "ignore-by-default", + "version": "1.0.1", + "description": "A list of directories you should ignore by default", + "hashes": [ + { + "alg": "SHA-512", + "content": "22eb36558706364ed3f740a9a49a9c2244b9a281d46722102be0a565f31f30d14417d55213bdc5abef74eaefc25aef76c7883364c58ec1f1587243ce6f37446c" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "ISC License (ISC)\nCopyright (c) 2016, Mark Wubben\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ignore-by-default@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/novemberborn/ignore-by-default#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/novemberborn/ignore-by-default/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/novemberborn/ignore-by-default.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-local@0.1.1", + "author": "Sindre Sorhus", + "name": "import-local", + "version": "0.1.1", + "description": "Let a globally installed package use a locally installed version of itself if available", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc06991e278af6a8c6a39f1a811060f9b8475f78684d953f39adc611258bcfbb7553ad9f93adda1ee0c9244b5e5e80de4c270f9944fecf7f209073d99249a999" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-local@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-local#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-local/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-local.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-generator-fn@1.0.0", + "author": "Sindre Sorhus", + "name": "is-generator-fn", + "version": "1.0.0", + "description": "Check if something is a generator function", + "hashes": [ + { + "alg": "SHA-512", + "content": "f798c9657e8efe075e922747daeb1106bf56751c382d4e7a0adb4fb2d5c5c6f1b4af741413d79a21dcf6a7663bceb9ba8f1cfb4a3072028d40b73c06951bdf3a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-generator-fn@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-generator-fn#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-generator-fn/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-generator-fn.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-observable@1.1.0", + "author": "Sindre Sorhus", + "name": "is-observable", + "version": "1.1.0", + "description": "Check if a value is an Observable", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a09ae126b677ebbb05673a0ae91a39b1b7161f8253d6ef8b16e9717621cb656f612eef54621d0209c84b92acdc0fdcaa4e2b79b2c9f6cf3306cb53d9a2a720" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-observable@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-observable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/last-line-stream@1.0.0", + "author": "James Talmage", + "name": "last-line-stream", + "version": "1.0.0", + "description": "A PassThrough stream that keeps track of last line written", + "hashes": [ + { + "alg": "SHA-512", + "content": "03db2eff0ad938b1b0a36ee99573b884206db49c7d26f00bb679aae1415ef4a080147ba4d6b645b95bfee005e50409dbfdec7b20a7fcd537e8df68570e142ec6" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/last-line-stream@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/last-line-stream#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/last-line-stream/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/last-line-stream.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.difference@4.5.0", + "author": "John-David Dalton", + "name": "lodash.difference", + "version": "4.5.0", + "description": "The lodash method `_.difference` exported as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "752da3f96dba4d0eed69004637c2db6ead38b2c5777a6470e0d639f1612b9533b6f6922a4b41e6a13e5a27df93510d4ddc6f893994a38b87ae82c5b01a9f723c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright jQuery Foundation and other contributors \n\nBased on Underscore.js, copyright Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nThis software consists of voluntary contributions made by many\nindividuals. For exact contribution history, see the revision history\navailable at https://github.com/lodash/lodash\n\nThe following license applies to all parts of this software except as\ndocumented below:\n\n====\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n====\n\nCopyright and related rights for sample code are waived via CC0. Sample\ncode is defined as all source code displayed within the prose of the\ndocumentation.\n\nCC0: http://creativecommons.org/publicdomain/zero/1.0/\n\n====\n\nFiles located in the node_modules and vendor directories are externally\nmaintained libraries used by this software which have their own\nlicenses; we recommend you read them, as their terms may differ from the\nterms above.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.difference@4.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/matcher@1.1.1", + "author": "Sindre Sorhus", + "name": "matcher", + "version": "1.1.1", + "description": "Simple wildcard matching", + "hashes": [ + { + "alg": "SHA-512", + "content": "f819aac5622e6ca4d128d5b1fda8670a4937986f26eceb6ead596aaba1e2a231894dde615586e0666e96cdc60f0a807e2814f855de91ed64911b63800cd6828e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/matcher@1.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/matcher#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/matcher/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/matcher.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/observable-to-promise@0.5.0", + "author": "Sindre Sorhus", + "name": "observable-to-promise", + "version": "0.5.0", + "description": "Convert an Observable to a Promise", + "hashes": [ + { + "alg": "SHA-512", + "content": "07766151404296928a85f53b63a81b9a51b9a351e18a7c5cbc7f8ac854d274a3f0e31cef4a1630aabcded1bd61a865c89c9aedab3f0ad75cbdbfc08c11627359" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/observable-to-promise@0.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/observable-to-promise#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/observable-to-promise/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/observable-to-promise.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-observable@0.2.0", + "author": "Sindre Sorhus", + "name": "is-observable", + "version": "0.2.0", + "description": "Check if a value is an Observable", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a09ae126b677ebbb05673a0ae91a39b1b7161f8253d6ef8b16e9717621cb656f612eef54621d0209c84b92acdc0fdcaa4e2b79b2c9f6cf3306cb53d9a2a720" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-observable@0.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-observable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/symbol-observable@0.2.4", + "author": "Ben Lesh", + "name": "symbol-observable", + "version": "0.2.4", + "description": "Symbol.observable ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bdd349ccf1146d1a1955dfa286114f64eb92b798f6f5595ef439d8dfc651b6100b8cd67a22fc4fc1696fee3212fb6cf12cb0af10579eef3777ac8b18d4bdc5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\nCopyright (c) Ben Lesh \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/symbol-observable@0.2.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/blesh/symbol-observable#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/blesh/symbol-observable/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/blesh/symbol-observable.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/option-chain@1.0.0", + "author": "James Talmage", + "name": "option-chain", + "version": "1.0.0", + "description": "Use fluent property chains in lieu of options objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "214846ecf94efdb29385fac91393218543df5694656ca571e3654cd681b751679a56f8dc7f4ff9d952a9eae40482faf9fd384b30f5a41b03c4d0f2750d20dcd0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/option-chain@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/avajs/option-chain#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/avajs/option-chain/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/avajs/option-chain.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pkg-conf@2.1.0", + "author": "Sindre Sorhus", + "name": "pkg-conf", + "version": "2.1.0", + "description": "Get namespaced config from the closest package.json", + "hashes": [ + { + "alg": "SHA-512", + "content": "0be5543fef238acec4b106488436264b9aa536d8efdb23f848db635caf403f565c4d196749fbae99a4e745f6199d88145185482aa2f47d1be65060d5d9f9a9ea" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pkg-conf@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pkg-conf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pkg-conf/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pkg-conf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/plur@2.1.2", + "author": "Sindre Sorhus", + "name": "plur", + "version": "2.1.2", + "description": "Pluralize a word", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a1707939efac60f72fe2bfa4563aeae8660b2abc26c937e5c6bc0ca9089c0b018b368960e9e4b526bda09d57a251d8ed123017fc97aa7b03de00c8b08554c95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/plur@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/plur#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/plur/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/plur.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/irregular-plurals@1.4.0", + "author": "Sindre Sorhus", + "name": "irregular-plurals", + "version": "1.4.0", + "description": "Map of nouns to their irregular plural form", + "hashes": [ + { + "alg": "SHA-512", + "content": "92789320999a6588b06b5ede4ed5887e6d0adf8dac7b2ba097abee0bc0e28b28910095805652e4a86088d089b49dea344e45f0fa945c29a04f45d70a1e7409e9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/irregular-plurals@1.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/irregular-plurals#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/irregular-plurals/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/irregular-plurals.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/pretty-ms@3.2.0", + "author": "Sindre Sorhus", + "name": "pretty-ms", + "version": "3.2.0", + "description": "Convert milliseconds to a human readable string: `1337000000` → `15d 11h 23m 20s`", + "hashes": [ + { + "alg": "SHA-512", + "content": "672a5ec5b7d55064c5c5bd2ffa6d5b532cbdd831dee52c98967c98d26b329ace73777470caf360cb1659b175e0a32ce5c63c79322aad5d476151fbd06ded00d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/pretty-ms@3.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/pretty-ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/pretty-ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/pretty-ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/parse-ms@1.0.1", + "author": "Sindre Sorhus", + "name": "parse-ms", + "version": "1.0.1", + "description": "Parse milliseconds into an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "570320944f78d7689f30771114454978f129ade421f74c2322239d3f4510406295e25f90a6b74a23ea799e85d39261a3ce704c6f8d2cf95ca671c9404c056f60" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/parse-ms@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/parse-ms#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/parse-ms/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/parse-ms.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/require-precompiled@0.1.0", + "author": "James Talmage", + "name": "require-precompiled", + "version": "0.1.0", + "description": "Require extension that allows for caching/precompiling", + "hashes": [ + { + "alg": "SHA-512", + "content": "51642becc75ab4af1c174257aeba953da976b14761a428fc7f8b02ed530338d03ff96495bf9125464bb7a83119f8522aa0df75ce185f07eb753f7faa40d69819" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/require-precompiled@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/require-precompiled#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/require-precompiled/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/require-precompiled.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/stack-utils@1.0.5", + "author": "James Talmage", + "name": "stack-utils", + "version": "1.0.5", + "description": "Captures and cleans stack traces", + "hashes": [ + { + "alg": "SHA-512", + "content": "299893cee5770a74a74af80c46b0115428fe1edeeb31b6ae1832b42dd545446c9e9f07729696a3029e10d22e925fcac499b4e930c7faaf2ab681bf293ead9681" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Isaac Z. Schlueter , James Talmage (github.com/jamestalmage), and Contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/stack-utils@1.0.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/tapjs/stack-utils#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/tapjs/stack-utils/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/tapjs/stack-utils.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@2.0.0", + "author": "Sindre Sorhus", + "name": "escape-string-regexp", + "version": "2.0.0", + "description": "Escape RegExp special characters", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdb468ac1e455105af95ad7a53c47faa06852326b6a86cf00eb366099b982ab6dd494306e88d5908641179f911561b8e9081959deec1437e4349fa35aaf26a16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/escape-string-regexp@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/escape-string-regexp#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/escape-string-regexp/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/escape-string-regexp.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/strip-bom-buf@1.0.0", + "author": "Sindre Sorhus", + "name": "strip-bom-buf", + "version": "1.0.0", + "description": "Strip UTF-8 byte order mark (BOM) from a buffer", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6c5082f58dc9344f59a138b3f673af7a048ce7cd3e76e4b92e6fe9f88e33078e18e1a00400e987bae7d0f1765641af468b0cc4284f1288a6796ac60b708ecb9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/strip-bom-buf@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/strip-bom-buf#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/strip-bom-buf/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/strip-bom-buf.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/supertap@1.0.0", + "author": "Vadim Demedes", + "name": "supertap", + "version": "1.0.0", + "description": "Generate TAP output", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d927781e20c3e05702a4d95b263b9607aa79c9625e9b57903d256daecea578dd69a982588d1186eebee91fa2bed44696aaa71bb0dc27d9dce35d55b6630a020" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Vadim Demedes (github.com/vadimdemedes)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/supertap@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/vadimdemedes/supertap#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/vadimdemedes/supertap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/vadimdemedes/supertap.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/serialize-error@2.1.0", + "author": "Sindre Sorhus", + "name": "serialize-error", + "version": "2.1.0", + "description": "Serialize an error into a plain object", + "hashes": [ + { + "alg": "SHA-512", + "content": "8218262ade68e13972e72106fd4269f2a4ddd0037b5da970e1706d0c428feb9e41ebdf6a304b6b6b55a55de13a588bdd106e3cd49bd1c542cab089eafe2372b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/serialize-error@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/serialize-error#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/serialize-error/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/serialize-error.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unique-temp-dir@1.0.0", + "author": "James Talmage", + "name": "unique-temp-dir", + "version": "1.0.0", + "description": "Provides a uniquely named temp directory.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b44ebc922d859dda1574f8a8ca2cfc998689797df153ff6593876697b2a52ca12458bb4318061e8392c68c4d9d324cc1f1de91dc76dc2939ff235e27ba43f677" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Talmage (github.com/jamestalmage)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unique-temp-dir@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/jamestalmage/unique-temp-dir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/jamestalmage/unique-temp-dir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/jamestalmage/unique-temp-dir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/uid2@0.0.3", + "name": "uid2", + "version": "0.0.3", + "description": "strong uid", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6048fd658afd741a3a7c70c12715deac87390bfc3e96d6e857485342c430be608f3e2fcc2409809b27b9fbec4cdbe3013fc7332881e704f83b5a9847bd3d98e" + } + ], + "purl": "pkg:npm/uid2@0.0.3" + }, + { + "type": "library", + "bom-ref": "pkg:npm/update-notifier@2.5.0", + "author": "Sindre Sorhus", + "name": "update-notifier", + "version": "2.5.0", + "description": "Update notifications for your CLI app", + "hashes": [ + { + "alg": "SHA-512", + "content": "83031d8602471ae8fffb01c926cf5ee8f702b33a714756f6dfa8a0ace914a1f1a1a89b86f9a9a520ac00a47d485b559697ba2f671b17e3d94c0562f149d9b90f" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright Google\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/update-notifier@2.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yeoman/update-notifier#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yeoman/update-notifier/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yeoman/update-notifier.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/boxen@1.3.0", + "author": "Sindre Sorhus", + "name": "boxen", + "version": "1.3.0", + "description": "Create boxes in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cd3e37d3af8df6ab1ef23a34326979b7752474307f6f5e9ede4f50454a5fc2e7583e1059ce47d85383522b79a8460660cd09e86c72c85ee397fe0b54c165b2f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/boxen@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/boxen#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/boxen/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/boxen.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/ansi-align@2.0.0", + "author": "nexdrew", + "name": "ansi-align", + "version": "2.0.0", + "description": "align-text with ANSI support for CLIs", + "hashes": [ + { + "alg": "SHA-512", + "content": "4dd94e820740ff35117cc61aec0042eba8fea2a7cc7b0e7c2a924c6d4947ddb7193f56fe7011c81c30e7e6e1fd20db31ac704f8eca8cd2d0c1e233d317fbe024" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "text": { + "content": "Copyright (c) 2016, Contributors\n\nPermission to use, copy, modify, and/or distribute this software for any purpose\nwith or without fee is hereby granted, provided that the above copyright notice\nand this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS\nOF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF\nTHIS SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/ansi-align@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/nexdrew/ansi-align#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/nexdrew/ansi-align/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/nexdrew/ansi-align.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cli-boxes@1.0.0", + "author": "Sindre Sorhus", + "name": "cli-boxes", + "version": "1.0.0", + "description": "Boxes for use in the terminal", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc5a39c2ef18b657bcabd882cd2e03d8c5952f65fb255591892d419d76d3143852f5cfd112433dbddd4099a6eca19a18e7f7468b94d3f6228bf0a6fa0de05142" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/cli-boxes@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/cli-boxes#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/cli-boxes/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/cli-boxes.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/term-size@1.2.0", + "author": "Sindre Sorhus", + "name": "term-size", + "version": "1.2.0", + "description": "Reliably get the terminal window size (columns & rows)", + "hashes": [ + { + "alg": "SHA-512", + "content": "edd3d46501b2ffe9b7ff08d5cf7656e5da1b4a80ffd36371269a17517d162328df552de5d1cf9bffef698480c503b147ce462dc2d30581e199fd8f235537aa41" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/term-size@1.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/term-size#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/term-size/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/term-size.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/widest-line@2.0.1", + "author": "Sindre Sorhus", + "name": "widest-line", + "version": "2.0.1", + "description": "Get the visual width of the widest line in a string - the number of columns required to display it", + "hashes": [ + { + "alg": "SHA-512", + "content": "05ae66f7f15ae17b7d79bd842d7b7bec9c550d5f30eea42b1f4cd2fd359225d2f20304235a83b3a738f997055fb43cfa9ff10ebb7b4d0024bce2fe74f6ac2724" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/widest-line@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/widest-line#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/widest-line/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/widest-line.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/configstore@3.1.5", + "author": "Sindre Sorhus", + "name": "configstore", + "version": "3.1.5", + "description": "Easily load and save config without having to think about where and how", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e53a1238f9f773a0ae71989f8d63ed6064ae7a6f011a599afc7d8b97a2167d564735a376b84ff47733ec84ff0ef1fd9549d7317c73ea1a3af174773b5d52098" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-2-Clause", + "text": { + "content": "Copyright Sindre Sorhus (sindresorhus.com)\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/configstore@3.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/yeoman/configstore#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/yeoman/configstore/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/yeoman/configstore.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unique-string@1.0.0", + "author": "Sindre Sorhus", + "name": "unique-string", + "version": "1.0.0", + "description": "Generate a unique random string", + "hashes": [ + { + "alg": "SHA-512", + "content": "38382262ed37cb983be80d48f46b74fdc84b0b3423bf30f2ec3b191ac2ce13fd4cac5eb0ae212c9129dc8f5fbf0b9f1793f90f643a6949cb43c9b0b039268602" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unique-string@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/unique-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/unique-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/unique-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/crypto-random-string@1.0.0", + "author": "Sindre Sorhus", + "name": "crypto-random-string", + "version": "1.0.0", + "description": "Generate a cryptographically strong random string", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ac5699053e5c9c1fbfdf451ec385c9a7a228b9e205759f3ef2e025b27854b5e0df8954106163eafc6a64471380704986a5ec13d30e9f22b2f0250b1c85b771e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/crypto-random-string@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/crypto-random-string#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/crypto-random-string/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/crypto-random-string.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/xdg-basedir@3.0.0", + "author": "Sindre Sorhus", + "name": "xdg-basedir", + "version": "3.0.0", + "description": "Get XDG Base Directory paths", + "hashes": [ + { + "alg": "SHA-512", + "content": "d43972e31aa5ba5bcf0f77d951024b63e15421ea8ddcdd8c337baa7b8ac225fb40bce8c56b78c519f72d3a096e1b1e1a84f6d40ac66498920b88fd158b84fa95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/xdg-basedir@3.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/xdg-basedir#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/xdg-basedir/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/xdg-basedir.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/import-lazy@2.1.0", + "author": "Sindre Sorhus", + "name": "import-lazy", + "version": "2.1.0", + "description": "Import modules lazily", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb6441e0b70ebda8e1b0fa3c315e41e5ae520f7531a4ca1ebacd76756a365bc640c1363498fcb19b9a373b874b3610bb140d302116be794eb3d24aa2463c6d0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/import-lazy@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/import-lazy#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/import-lazy/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/import-lazy.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-installed-globally@0.1.0", + "author": "Sindre Sorhus", + "name": "is-installed-globally", + "version": "0.1.0", + "description": "Check if your package was installed globally", + "hashes": [ + { + "alg": "SHA-512", + "content": "111361320fa2fd7803c0f20f177bb6e2aa5a8d5ade6a24aebe96f552ed23ba0c3b28a7311b2097f1c829f0fe5fc13980b9792ee9b7831c710274a02b8e583bb7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-installed-globally@0.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-installed-globally#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-installed-globally/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-installed-globally.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/global-dirs@0.1.1", + "author": "Sindre Sorhus", + "name": "global-dirs", + "version": "0.1.1", + "description": "Get the directory of globally installed packages and binaries", + "hashes": [ + { + "alg": "SHA-512", + "content": "3649cc2e7ec5d89eda7e5c053a519d348b820e9377546a12a01f9a6a9dca0011566c7567d530a0142fa7a76dc9f16d818996e37c4c3704507271232fd4015b96" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/global-dirs@0.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/global-dirs#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/global-dirs/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/global-dirs.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-npm@1.0.0", + "author": "Sindre Sorhus", + "name": "is-npm", + "version": "1.0.0", + "description": "Check if your code is running as an npm script", + "hashes": [ + { + "alg": "SHA-512", + "content": "f6bdfd148af777e283f526d7d2c7ccb07cdbe4f3f7ba298e8b0af762ea54694146e16d25d54e7b471deeb69b6d57bab3e54de39ab3b96ae51ad382d4f69c87b2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/is-npm@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-npm#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-npm/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-npm.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/latest-version@3.1.0", + "author": "Sindre Sorhus", + "name": "latest-version", + "version": "3.1.0", + "description": "Get the latest version of an npm package", + "hashes": [ + { + "alg": "SHA-512", + "content": "05ed58447596959692b2bcf653e5489e4fad3b41302c8c95fb6dd18562c834963083f5088a4c63963dcc847dfbffafc40c202eb236a3bcc90c3145d168c5a5ff" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/latest-version@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/latest-version#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/latest-version/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/latest-version.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/package-json@4.0.1", + "author": "Sindre Sorhus", + "name": "package-json", + "version": "4.0.1", + "description": "Get metadata of a package from the npm registry", + "hashes": [ + { + "alg": "SHA-512", + "content": "abf4791ab31e934bf3828a26abaae6f4e5fedcf42f7bcb0bc138ab98adf4601dc2bb405bb7d397f4cfd22149eba0de41189933c06b05c03691183f44c013a508" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/package-json@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/package-json#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/package-json/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/package-json.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/got@6.7.1", + "name": "got", + "version": "6.7.1", + "description": "Simplified HTTP requests", + "hashes": [ + { + "alg": "SHA-512", + "content": "63f2b7103ba240df6b4d9841bcf45630b5c829d783d518f49f3ba77e88b46329f958111bcf15ca53d51bd97e35a1905a81558e054dccb83a2714c80f590167c2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/got@6.7.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/got#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/got/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/got.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/create-error-class@3.0.2", + "author": "Vsevolod Strukchinsky", + "name": "create-error-class", + "version": "3.0.2", + "description": "Create Error classes", + "hashes": [ + { + "alg": "SHA-512", + "content": "8184ca29ec453b7921db4d07d4d8adefab11c11b4e637daf41dde3a4040aa4bb59ab236c49035f23837ba3778fdb0523577e694d629162a1540c1bd485afcf93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/create-error-class@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/create-error-class#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/create-error-class/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/create-error-class.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/capture-stack-trace@1.0.1", + "author": "Vsevolod Strukchinsky", + "name": "capture-stack-trace", + "version": "1.0.1", + "description": "Error.captureStackTrace ponyfill", + "hashes": [ + { + "alg": "SHA-512", + "content": "99840b667c7942dd49801d561223027f6eb8ee996919e43634c47fe4bd07359cc6428e1fb923e72bec237cf9ca655d1a8890e0ce65aaaa457f83b243f835b4ab" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky (github.com/floatdrop)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/capture-stack-trace@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/capture-stack-trace#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/capture-stack-trace/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/capture-stack-trace.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexer3@0.1.5", + "name": "duplexer3", + "version": "0.1.5", + "description": "Like duplexer but using streams3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d40f336bac2ce352d082ff47ac4ffaea3c82e72b928d0dcbfca3a916da018a5b002b6880db0b92e6b4edd4e0b322fb52d95ee756679db1453e0c645c8c198e60" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "content": "Copyright (c) 2022, Sindre Sorhus.\nCopyright (c) 2020, Vsevolod Strukchinsky.\nCopyright (c) 2013, Deoxxa Development.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/duplexer3@0.1.5", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/duplexer3#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/duplexer3/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/duplexer3.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/is-redirect@1.0.0", + "author": "Sindre Sorhus", + "name": "is-redirect", + "version": "1.0.0", + "description": "Check if a number is a redirect HTTP status code", + "hashes": [ + { + "alg": "SHA-512", + "content": "72bfd295411ee733869b3be3f5b5320b82d5be4355017bb81b2b572cd32bd699f2f9aeb932943d209cc51c3e6f8bb1722606f8aaddbbf9e4b74ee427a81f9143" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/is-redirect@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/is-redirect#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/is-redirect/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/is-redirect.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lowercase-keys@1.0.1", + "author": "Sindre Sorhus", + "name": "lowercase-keys", + "version": "1.0.1", + "description": "Lowercase the keys of an object", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b62e3eb5b570e754514e8bc55976cf92a108ed402ddd82890a7431b69939b5b71e26e743541c1399481c10407cb2d15d760342531b889c7d9407fb13f287c54" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lowercase-keys@1.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/lowercase-keys#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/lowercase-keys/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/lowercase-keys.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/timed-out@4.0.1", + "author": "Vsevolod Strukchinsky", + "name": "timed-out", + "version": "4.0.1", + "description": "Emit `ETIMEDOUT` or `ESOCKETTIMEDOUT` when ClientRequest is hanged", + "hashes": [ + { + "alg": "SHA-512", + "content": "1bbaf7021a2f62daf960a396424b5af112803dbf89f48b0ee2e566ce397c019c1f86cf14714c13883ea070961280eb73ca3bd02ab2989f8d6cc876d458c91a7c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Vsevolod Strukchinsky \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/timed-out@4.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/floatdrop/timed-out#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/floatdrop/timed-out/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/floatdrop/timed-out.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/unzip-response@2.0.1", + "name": "unzip-response", + "version": "2.0.1", + "description": "Unzip a HTTP response if needed", + "hashes": [ + { + "alg": "SHA-512", + "content": "3745c7ea5a83b451fce09c69b50a196269681789f3ad0aaaac0ca6363fbf816eb400ed8066039c7f83bf9d45c97187f2424aaf328f654aea416669a0bee55797" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "`The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/unzip-response@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/unzip-response#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/unzip-response/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/unzip-response.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/url-parse-lax@1.0.0", + "author": "Sindre Sorhus", + "name": "url-parse-lax", + "version": "1.0.0", + "description": "url.parse() with support for protocol-less URLs & IPs", + "hashes": [ + { + "alg": "SHA-512", + "content": "055038951e4f22f8b2d8f32c78d7768db150fa3c12c1019d25e8dfe5cb5dd6b117b7462977bc9a9d42bdfa561e72156537955a4c91acbb653fdcc0c3bba2a004" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/url-parse-lax@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/url-parse-lax#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/url-parse-lax/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/url-parse-lax.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/registry-auth-token@3.4.0", + "author": "Espen Hovlandsdal", + "name": "registry-auth-token", + "version": "3.4.0", + "description": "Get the auth token set for an npm registry (if any)", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0b33a170f1e0507703187044b8c939e7d93a886ac6d7bb00f1dee9be411b3b4b9e5a30a081281c6f3d79764625231f0b892d3c987f14a999f4808d0a5cb8ff8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Espen Hovlandsdal\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/registry-auth-token@3.4.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/rexxars/registry-auth-token#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/rexxars/registry-auth-token/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/registry-url@3.1.0", + "author": "Sindre Sorhus", + "name": "registry-url", + "version": "3.1.0", + "description": "Get the set npm registry URL", + "hashes": [ + { + "alg": "SHA-512", + "content": "65b811e5a64475fe142995413d82206a09419921761e2f78b363dc2078511858ca62ef9c86325d61f1e7e2bb77841e9e08a2c9f208952087e031ad5e8437d928" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/registry-url@3.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/registry-url#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/registry-url/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/registry-url.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/semver-diff@2.1.0", + "author": "Sindre Sorhus", + "name": "semver-diff", + "version": "2.1.0", + "description": "Get the diff type of two semver versions: 0.0.1 0.0.2 → patch", + "hashes": [ + { + "alg": "SHA-512", + "content": "80bf05f0be0e470b12d3e890df8c8262fffffe3b0eab464bed63f9e5dd479c9df6a3bb72158105419400db69ab2c869c65d53ac5e71a04167eb8489f7c63725f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Sindre Sorhus (sindresorhus.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/semver-diff@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/sindresorhus/semver-diff#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/sindresorhus/semver-diff/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/sindresorhus/semver-diff.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/babel@6.23.0", + "author": "Sebastian McKenzie", + "name": "babel", + "version": "6.23.0", + "description": "Turn ES6 code into readable vanilla ES5 with source maps", + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/babel@6.23.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babeljs.io/" + }, + { + "type": "vcs", + "url": "https://github.com/babel/babel/tree/master/packages/babel" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/bootstrap@4.6.2", + "author": "The Bootstrap Authors", + "name": "bootstrap", + "version": "4.6.2", + "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", + "hashes": [ + { + "alg": "SHA-512", + "content": "e7505ba7f531afd693bb2e9c6bff056c59680542592c7c278537278c87919f6b2e416b16cdcb898468ca0c1e5ea6956d7bff2809d38bdd5bb0c6f64352083019" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2011-2022 Twitter, Inc.\nCopyright (c) 2011-2022 The Bootstrap Authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bootstrap@4.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://getbootstrap.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/twbs/bootstrap/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/twbs/bootstrap.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/bootstrap-material-design@4.1.3", + "author": "Federico Zivolo", + "name": "bootstrap-material-design", + "version": "4.1.3", + "description": "Material Design for Bootstrap 4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ce07d8a8efa04a2f1c05f8802039b147f5ff3c8adcaa3a262c41ef406bc9bcf21eec48fdde14bd4af3281bd05b18c888959b5f788a8760f62e0630e4a52de44" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Federico Zivolo and contributors - https://github.com/FezVrasta/bootstrap-material-design\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n## Acknowledgements:\n\n- Some original Bootstrap code and documentation http://getbootstrap.com\n`Copyright (c) 2011-2015 Twitter, Inc`\n\n- Some original MDL code http://www.getmdl.io/\n`Copyright 2015 Google Inc. All Rights Reserved.`\n" + } + } + } + ], + "purl": "pkg:npm/bootstrap-material-design@4.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FezVrasta/bootstrap-material-design" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FezVrasta/bootstrap-material-design/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/FezVrasta/bootstrap-material-design.git" + } + ] + }, + { + "type": "framework", + "bom-ref": "pkg:npm/bootstrap-material-design-community@4.0.3", + "author": "Federico Zivolo", + "name": "bootstrap-material-design-community", + "version": "4.0.3", + "description": "Bootstrap Material Design 4. NOT the official publish", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0e88b620a92131c4c61cff79e8cad55dd2bbfa8710c7e34facea6ef7e0b19a1a7153d5fc1d594b39e874fc89ee77137e59db774202ee17bd3ce1c15bf83b8a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/markdown", + "content": "The MIT License (MIT)\n\nCopyright (c) 2015-2016, Federico Zivolo and contributors - https://github.com/FezVrasta/bootstrap-material-design\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n## Acknowledgements:\n\n- Some original Bootstrap code and documentation http://getbootstrap.com\n`Copyright (c) 2011-2015 Twitter, Inc`\n\n- Some original MDL code http://www.getmdl.io/\n`Copyright 2015 Google Inc. All Rights Reserved.`\n" + } + } + } + ], + "purl": "pkg:npm/bootstrap-material-design-community@4.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/FezVrasta/bootstrap-material-design" + }, + { + "type": "issue-tracker", + "url": "https://github.com/FezVrasta/bootstrap-material-design/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/FezVrasta/bootstrap-material-design.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/bower@1.8.14", + "author": "Twitter", + "name": "bower", + "version": "1.8.14", + "description": "The browser package manager", + "hashes": [ + { + "alg": "SHA-512", + "content": "f11ab4e7c143f75abd370b61ca1c3495af5fce9073d22c194ebb79d4b5a5fb0f8f9c981993d27ee70a779e26ec25c2143e094c617af835105a47e4d48f43a405" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013-present Twitter and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/bower@1.8.14", + "externalReferences": [ + { + "type": "website", + "url": "http://bower.io" + }, + { + "type": "issue-tracker", + "url": "https://github.com/bower/bower/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/bower/bower.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browserify@16.5.2", + "author": "James Halliday", + "name": "browserify", + "version": "16.5.2", + "description": "browser-side require() the node way", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e4391d5c4067665d4f735b862e916cd6552270af198d7400c56ea6c4dc71604167b9c2a66639ac2a67b27ff0c3c2c24fd6f3263b63487eee63ad719c4b3f6de" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT License\n\nCopyright (c) 2010 James Halliday\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browserify@16.5.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/browserify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/browserify/issues" + }, + { + "type": "vcs", + "url": "git+ssh://git@github.com/browserify/browserify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browser-pack@6.1.0", + "author": "James Halliday", + "name": "browser-pack", + "version": "6.1.0", + "description": "pack node-style source files from a json stream into a browser bundle", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ab62e83c5e8ab353721f714f1f520c87ab2397a88138b544d343eee6a948d096f9d790e3ba3a54fd73f6682551d8a006aa1b1af4f42379dc6ed722c3b82ad58" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "This software is released under the MIT license:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browser-pack@6.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/browser-pack" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/browser-pack/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/browser-pack.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/combine-source-map@0.8.0", + "author": "Thorsten Lorenz", + "name": "combine-source-map", + "version": "0.8.0", + "description": "Add source maps of multiple files, offset them and then combine them into one source map", + "hashes": [ + { + "alg": "SHA-512", + "content": "525c50f55c346ff06dfca630085a9d130b10d5e2fc7758226e215bee5c5024576f4e0736848662eae82c83e93287384f57e404a5488423022720022b828124ae" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/combine-source-map@0.8.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/combine-source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/combine-source-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/combine-source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.1.3", + "author": "Thorsten Lorenz", + "name": "convert-source-map", + "version": "1.1.3", + "description": "Converts a source-map from/to different formats and allows adding/changing properties.", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e41d8cfe3dcd5888ffa8bb9c826903cac0978b15fc974f7d4f6766cdd5a8ec062208b3202bee376aeee9f31dfb89652f4b5aaf5f146095df67f4d6b668548c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/convert-source-map@1.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/convert-source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/convert-source-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/convert-source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/inline-source-map@0.6.2", + "author": "Thorsten Lorenz", + "name": "inline-source-map", + "version": "0.6.2", + "description": "Adds source mappings and base64 encodes them, so they can be inlined in your generated file.", + "hashes": [ + { + "alg": "SHA-512", + "content": "d265564926cd0ef79d0d620de30c4bb1d3cce1aedc20f729c8cc63dd0678d3a411c10e9e3c60756081f154f8eaa5c5066d64390be9c74f018d5801afb7b82054" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright 2013 Thorsten Lorenz. \nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/inline-source-map@0.6.2", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/thlorenz/inline-source-map" + }, + { + "type": "issue-tracker", + "url": "https://github.com/thlorenz/inline-source-map/issues" + }, + { + "type": "vcs", + "url": "git://github.com/thlorenz/inline-source-map.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/lodash.memoize@3.0.4", + "author": "John-David Dalton", + "name": "lodash.memoize", + "version": "3.0.4", + "description": "The modern build of lodash’s `_.memoize` as a module.", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7b8fe3739a09d0cd30185dcb0760b8229a5b4e5753171ed94e59fe868cbf4a8fc18ae45227c39268b71bdb3acf88bd5d7f0f3a34e3f7c219f2d5b3b6976f802" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "contentType": "text/txt", + "content": "Copyright 2012-2015 The Dojo Foundation \nBased on Underscore.js, copyright 2009-2015 Jeremy Ashkenas,\nDocumentCloud and Investigative Reporters & Editors \n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/lodash.memoize@3.0.4", + "externalReferences": [ + { + "type": "website", + "url": "https://lodash.com/" + }, + { + "type": "issue-tracker", + "url": "https://github.com/lodash/lodash/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/lodash/lodash.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/umd@3.0.3", + "author": "ForbesLindesay", + "name": "umd", + "version": "3.0.3", + "description": "Universal Module Definition for use in automated build systems", + "hashes": [ + { + "alg": "SHA-512", + "content": "e087064ae7e116c86f2cd70c095f34527415959e6930e0bc9af34f168aeac00e3e973610b9eb531122c342478b9a286af1b45c9e96d06b8f166fc2e1d7aff1a3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "Copyright (c) 2013 Forbes Lindesay\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE." + } + } + } + ], + "purl": "pkg:npm/umd@3.0.3", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ForbesLindesay/umd#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ForbesLindesay/umd/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/ForbesLindesay/umd.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/browser-resolve@2.0.0", + "author": "Roman Shtylman", + "name": "browser-resolve", + "version": "2.0.0", + "description": "resolve which handles browser field support in package.json", + "hashes": [ + { + "alg": "SHA-512", + "content": "eec5ac42560bdab18bcb62169bc58bf0309326f60b73faa53a7b1a90369cf3b48ea02775e962ec68031d0a202ab1334721ef925df6aacb1ca8e931e85aab3c59" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2013-2015 Roman Shtylman \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/browser-resolve@2.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/browserify/browser-resolve#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/browserify/browser-resolve/issues" + }, + { + "type": "vcs", + "url": "git://github.com/browserify/browser-resolve.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/buffer@5.2.1", + "author": "Feross Aboukhadijeh", + "name": "buffer", + "version": "5.2.1", + "description": "Node.js Buffer API, for the browser", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6afaadd244c3b11a2bcb84135a51d0bae210d34307a327e1f44ff341d5732d4d5130353adf145de00318b25b406eff15841a18d52a051c3210ab532dbeb825a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) Feross Aboukhadijeh, and other contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/buffer@5.2.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/feross/buffer" + }, + { + "type": "issue-tracker", + "url": "https://github.com/feross/buffer/issues" + }, + { + "type": "vcs", + "url": "git://github.com/feross/buffer.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/cached-path-relative@1.1.0", + "name": "cached-path-relative", + "version": "1.1.0", + "description": "Memoize the results of the path.relative function", + "hashes": [ + { + "alg": "SHA-512", + "content": "585d0b8a17de9ad7ac15c2603bbc5f3a839c9d6cd8fd01d1e2a783a95e388cf5371d3239e3e2e77d72b7480dbb01554609d6458238c515aa9403d271edd30964" + } + ], + "licenses": [ + { + "license": { + "id": "MIT" + } + } + ], + "purl": "pkg:npm/cached-path-relative@1.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/ashaffer/cached-path-relative#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/ashaffer/cached-path-relative/issues" + }, + { + "type": "vcs", + "url": "git://github.com/ashaffer/cached-path-relative.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/deps-sort@2.0.1", + "author": "James Halliday", + "name": "deps-sort", + "version": "2.0.1", + "description": "sort module-deps output for deterministic browserify bundles", + "hashes": [ + { + "alg": "SHA-512", + "content": "d68aea5d0af9a68fb7288ea441bf40e239d74f53c1c2080697677b4aadb1b2739e23d18f704fed19c17d522499b5904ceccba463870087b31e992ead6588a97f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) James Halliday and browserify contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/deps-sort@2.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/substack/deps-sort" + }, + { + "type": "issue-tracker", + "url": "https://github.com/substack/deps-sort/issues" + }, + { + "type": "vcs", + "url": "git://github.com/substack/deps-sort.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/shasum-object@1.0.0", + "author": "Renée Kooi", + "name": "shasum-object", + "version": "1.0.0", + "description": "get the shasum of a buffer or object", + "hashes": [ + { + "alg": "SHA-512", + "content": "22aa39ae9ff7c558ba33862179aa736618463d5b34c99c078fbc2fc10d41f73f07eb393e1449c8ef2dd37aaeeac277a47c486ef16986db3d33e225996b12d656" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "text": { + "contentType": "text/markdown", + "content": "# [Apache License 2.0](https://spdx.org/licenses/Apache-2.0)\n\nCopyright 2019 Renée Kooi \n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n> http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n" + } + } + } + ], + "purl": "pkg:npm/shasum-object@1.0.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/goto-bus-stop/shasum-object" + }, + { + "type": "issue-tracker", + "url": "https://github.com/goto-bus-stop/shasum-object/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/goto-bus-stop/shasum-object.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/fast-safe-stringify@2.1.1", + "author": "David Mark Clements", + "name": "fast-safe-stringify", + "version": "2.1.1", + "description": "Safely and quickly serialize JavaScript objects", + "hashes": [ + { + "alg": "SHA-512", + "content": "5be28973676620b94fa650ff1f82bd97d2dc00701f3ed3fa058f38b952d743a12f733f4b720df7636cf52156e54fac5d639e0f5d854712ffb45a9abc228eb390" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "The MIT License (MIT)\n\nCopyright (c) 2016 David Mark Clements\nCopyright (c) 2017 David Mark Clements & Matteo Collina\nCopyright (c) 2018 David Mark Clements, Matteo Collina & Ruben Bridgewater \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/fast-safe-stringify@2.1.1", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/davidmarkclements/fast-safe-stringify#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/davidmarkclements/fast-safe-stringify/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/davidmarkclements/fast-safe-stringify.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/duplexer2@0.1.4", + "author": "Conrad Pankoff", + "name": "duplexer2", + "version": "0.1.4", + "description": "Like duplexer but using streams3", + "hashes": [ + { + "alg": "SHA-512", + "content": "f80581c2319a76d92cc633904850e13cd41b79dee270d5c0a53e3ed81369b17cdc0818889ead87f575b43bcb1f1c568f9a7411b3b720fcfd1f02bd88590496d2" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "text": { + "contentType": "text/markdown", + "content": "Copyright (c) 2013, Deoxxa Development\n======================================\nAll rights reserved.\n--------------------\n \nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met: \n1. Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer. \n2. Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution. \n3. Neither the name of Deoxxa Development nor the names of its contributors\n may be used to endorse or promote products derived from this software\n without specific prior written permission. \n \nTHIS SOFTWARE IS PROVIDED BY DEOXXA DEVELOPMENT ''AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL DEOXXA DEVELOPMENT BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" + } + } + } + ], + "purl": "pkg:npm/duplexer2@0.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/deoxxa/duplexer2#readme" + }, + { + "type": "issue-tracker", + "url": "https://github.com/deoxxa/duplexer2/issues" + }, + { + "type": "vcs", + "url": "git+https://github.com/deoxxa/duplexer2.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/events@2.1.0", + "author": "Irakli Gozalishvili", + "name": "events", + "version": "2.1.0", + "description": "Node's event emitter for all engines.", + "hashes": [ + { + "alg": "SHA-512", + "content": "90472fbc2041c965c69d9cba254960029da00485237c2015e8fe93813d7f69a40a726b80102e0e65357523811640bcf6831670efa6adb95caf1e14f1be2d0597" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "text": { + "content": "MIT\n\nCopyright Joyent, Inc. and other Node contributors.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE.\n" + } + } + } + ], + "purl": "pkg:npm/events@2.1.0", + "externalReferences": [ + { + "type": "website", + "url": "https://github.com/Gozala/events#readme" + }, + { + "type": "issue-tracker", + "url": "http://github.com/Gozala/events/issues/" + }, + { + "type": "vcs", + "url": "git://github.com/Gozala/events.git" + } + ] + }, + { + "type": "library", + "bom-ref": "pkg:npm/htmlescape@1.1.1", + "author": "Andres Suarez", + "name": "htmlescape", + "version": "1.1.1", + "description": "Properly escape JSON for usage as an object literal inside of a `